From 71df07f448fe7385cbb06ab97f1ed3de6c3471a7 Mon Sep 17 00:00:00 2001 From: Colin Rundel Date: Mon, 4 May 2026 21:55:17 -0400 Subject: [PATCH] feat: detect grid tables and emit Q-2-36 diagnostic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Quarto Markdown intentionally doesn't support Pandoc-style grid tables. Today they fall through as paragraphs (silently mis-parsed) or generic ERROR nodes — no diagnostic that names the construct or captures its text. tree-sitter-qmd - Add a GRID_TABLE external token to scanner.c. parse_plus is refactored to disambiguate after the leading `+`: `+-`, `+=`, or `++` enters parse_grid_table_after_first_plus(); space/tab/EOL keeps the existing list-marker path. - parse_grid_table_after_first_plus greedily consumes a `+...+` border followed by one or more `|...|` body / border lines, walking nested block-quote prefixes via the open_blocks stack so grids inside `>` / `> >` are captured correctly. - grammar.js wires `grid_table` into _block_not_section. - 5 new corpus tests in test/corpus/grid_table.txt cover plain, single-quoted, double-nested-with-intermediate-paragraph, lone-border (negative), and `+====+` separator forms. pampa - native_visitor in pandoc/treesitter.rs handles `grid_table`: builds a Q-2-36 DiagnosticMessage and falls back to a `Block::RawBlock { format: "qmd-grid-table" }` so the AST stays well-formed. - The diagnostic uses a layered Ariadne rendering: 1. multi-line main label spans the whole table (provides `╭─▶ … ╰─` corners and the red highlight on table content); 2. empty-content `add_detail_at` labels on interior body lines force Ariadne to display them instead of eliding to `┆`; 3. `add_faded_at` labels on `>` block-quote prefixes after the opening border render those columns in Ariadne's grey (matching the prefix on line 1, which falls outside every label). - 5 new integration tests in tests/test_grid_table_error.rs. quarto-error-reporting - New `DetailKind::Faded` variant + `add_faded_at` builder method. Maps to Ariadne's `unimportant_color` via a named constant ARIADNE_UNIMPORTANT_COLOR (mirror of ariadne 0.6.0's private `Config::unimportant_color`, currently `Color::Fixed(249)`). - Two generic improvements that this feature needed: - Skip `Label::with_message` when detail content is empty so empty labels don't draw a \`╰── \` arrow row in the snippet. - Set `Label::with_order(end_offset)` on every label so labels sort by line and stay in one Ariadne group instead of producing duplicated snippet blocks. - error_catalog.json registers Q-2-36 ("Grid tables are not supported"). quarto-lsp-core::DetailKind folds Faded into Note. Side effect — regenerating parser.c shifts LR state numbers, so crates/pampa/resources/error-corpus/_autogen-table.json was regenerated via crates/pampa/scripts/build_error_table.ts (the documented Merr workflow in crates/pampa/CLAUDE.md). Skipping this step silently breaks every autogen-table-driven diagnostic including Q-2-10. Verification - tree-sitter test: 475/475 corpus - cargo nextest run --workspace: 8390/8390 - cargo xtask verify --skip-hub-build --skip-hub-tests: clean - cargo xtask lint: 677 files clean Co-Authored-By: Claude Opus 4.7 (1M context) --- .../error-corpus/_autogen-table.json | 1532 +- crates/pampa/src/pandoc/treesitter.rs | 113 + crates/pampa/tests/test_grid_table_error.rs | 146 + .../quarto-error-reporting/error_catalog.json | 7 + crates/quarto-error-reporting/src/builder.rs | 20 + .../quarto-error-reporting/src/diagnostic.rs | 54 +- crates/quarto-lsp-core/src/types.rs | 3 +- .../tree-sitter-markdown/grammar.js | 9 + .../tree-sitter-markdown/src/grammar.json | 8 + .../tree-sitter-markdown/src/node-types.json | 24 + .../tree-sitter-markdown/src/parser.c | 114669 ++++++++------- .../tree-sitter-markdown/src/scanner.c | 138 +- .../test/corpus/grid_table.txt | 88 + 13 files changed, 58929 insertions(+), 57882 deletions(-) create mode 100644 crates/pampa/tests/test_grid_table_error.rs create mode 100644 crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/grid_table.txt diff --git a/crates/pampa/resources/error-corpus/_autogen-table.json b/crates/pampa/resources/error-corpus/_autogen-table.json index fce71fc8c..1a31d5cae 100644 --- a/crates/pampa/resources/error-corpus/_autogen-table.json +++ b/crates/pampa/resources/error-corpus/_autogen-table.json @@ -13,7 +13,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 229, + "lrState": 345, "sym": "[", "label": "span-start" } @@ -30,7 +30,7 @@ "name": "Q-2-1/simple" }, { - "state": 746, + "state": 769, "sym": "_whitespace", "row": 0, "column": 2, @@ -43,7 +43,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -60,7 +60,7 @@ "name": "Q-2-10/simple" }, { - "state": 693, + "state": 692, "sym": "_whitespace", "row": 0, "column": 4, @@ -73,7 +73,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 693, + "lrState": 692, "sym": "single_quote", "label": "quote-start" } @@ -90,7 +90,7 @@ "name": "Q-2-10/simple-1" }, { - "state": 713, + "state": 714, "sym": "_whitespace", "row": 0, "column": 3, @@ -103,7 +103,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 713, + "lrState": 714, "sym": "single_quote", "label": "quote-start" } @@ -120,7 +120,7 @@ "name": "Q-2-10/simple-2" }, { - "state": 739, + "state": 736, "sym": "_whitespace", "row": 0, "column": 3, @@ -133,7 +133,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 739, + "lrState": 736, "sym": "single_quote", "label": "quote-start" } @@ -150,7 +150,7 @@ "name": "Q-2-10/simple-3" }, { - "state": 757, + "state": 767, "sym": "_whitespace", "row": 0, "column": 3, @@ -163,7 +163,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 757, + "lrState": 767, "sym": "single_quote", "label": "quote-start" } @@ -180,7 +180,7 @@ "name": "Q-2-10/simple-4" }, { - "state": 715, + "state": 746, "sym": "_whitespace", "row": 0, "column": 3, @@ -193,7 +193,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 715, + "lrState": 746, "sym": "single_quote", "label": "quote-start" } @@ -210,7 +210,7 @@ "name": "Q-2-10/simple-5" }, { - "state": 778, + "state": 725, "sym": "_whitespace", "row": 0, "column": 4, @@ -223,7 +223,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 778, + "lrState": 725, "sym": "single_quote", "label": "quote-start" } @@ -240,7 +240,7 @@ "name": "Q-2-10/simple-6" }, { - "state": 739, + "state": 736, "sym": "_whitespace", "row": 0, "column": 4, @@ -253,7 +253,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 739, + "lrState": 736, "sym": "single_quote", "label": "quote-start" } @@ -270,7 +270,7 @@ "name": "Q-2-10/simple-7" }, { - "state": 712, + "state": 701, "sym": "_whitespace", "row": 0, "column": 3, @@ -283,7 +283,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 712, + "lrState": 701, "sym": "single_quote", "label": "quote-start" } @@ -300,7 +300,7 @@ "name": "Q-2-10/simple-8" }, { - "state": 761, + "state": 765, "sym": "_whitespace", "row": 0, "column": 5, @@ -313,7 +313,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 761, + "lrState": 765, "sym": "single_quote", "label": "quote-start" } @@ -330,7 +330,7 @@ "name": "Q-2-10/simple-9" }, { - "state": 761, + "state": 765, "sym": "_whitespace", "row": 0, "column": 5, @@ -343,7 +343,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 761, + "lrState": 765, "sym": "single_quote", "label": "quote-start" } @@ -360,7 +360,7 @@ "name": "Q-2-10/simple-10" }, { - "state": 761, + "state": 765, "sym": "_whitespace", "row": 0, "column": 5, @@ -373,7 +373,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 761, + "lrState": 765, "sym": "single_quote", "label": "quote-start" } @@ -390,7 +390,7 @@ "name": "Q-2-10/simple-11" }, { - "state": 739, + "state": 736, "sym": "_whitespace", "row": 0, "column": 5, @@ -403,7 +403,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 739, + "lrState": 736, "sym": "single_quote", "label": "quote-start" } @@ -420,7 +420,7 @@ "name": "Q-2-10/simple-12" }, { - "state": 776, + "state": 779, "sym": "_whitespace", "row": 0, "column": 7, @@ -433,7 +433,7 @@ "row": 0, "column": 6, "size": 1, - "lrState": 776, + "lrState": 779, "sym": "single_quote", "label": "quote-start" } @@ -450,7 +450,7 @@ "name": "Q-2-10/simple-13" }, { - "state": 726, + "state": 689, "sym": "_whitespace", "row": 0, "column": 3, @@ -463,7 +463,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 726, + "lrState": 689, "sym": "single_quote", "label": "quote-start" } @@ -510,7 +510,7 @@ "name": "Q-2-10/simple-15" }, { - "state": 746, + "state": 769, "sym": "_whitespace", "row": 0, "column": 5, @@ -523,7 +523,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -540,7 +540,7 @@ "name": "Q-2-10/simple-16" }, { - "state": 771, + "state": 743, "sym": "_whitespace", "row": 0, "column": 2, @@ -553,7 +553,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -572,7 +572,7 @@ "name": "Q-2-11/simple-wrapped" }, { - "state": 694, + "state": 693, "sym": "_whitespace", "row": 0, "column": 4, @@ -585,7 +585,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 694, + "lrState": 693, "sym": "double_quote", "label": "quote-start" } @@ -604,7 +604,7 @@ "name": "Q-2-11/simple-wrapped-1" }, { - "state": 714, + "state": 715, "sym": "_whitespace", "row": 0, "column": 3, @@ -617,7 +617,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 714, + "lrState": 715, "sym": "double_quote", "label": "quote-start" } @@ -636,7 +636,7 @@ "name": "Q-2-11/simple-wrapped-2" }, { - "state": 740, + "state": 737, "sym": "_whitespace", "row": 0, "column": 3, @@ -649,7 +649,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 740, + "lrState": 737, "sym": "double_quote", "label": "quote-start" } @@ -668,7 +668,7 @@ "name": "Q-2-11/simple-wrapped-3" }, { - "state": 758, + "state": 768, "sym": "_whitespace", "row": 0, "column": 3, @@ -681,7 +681,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 758, + "lrState": 768, "sym": "double_quote", "label": "quote-start" } @@ -700,7 +700,7 @@ "name": "Q-2-11/simple-wrapped-4" }, { - "state": 721, + "state": 752, "sym": "_whitespace", "row": 0, "column": 3, @@ -713,7 +713,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 721, + "lrState": 752, "sym": "double_quote", "label": "quote-start" } @@ -732,7 +732,7 @@ "name": "Q-2-11/simple-wrapped-5" }, { - "state": 779, + "state": 726, "sym": "_whitespace", "row": 0, "column": 4, @@ -745,7 +745,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 779, + "lrState": 726, "sym": "double_quote", "label": "quote-start" } @@ -764,7 +764,7 @@ "name": "Q-2-11/simple-wrapped-6" }, { - "state": 740, + "state": 737, "sym": "_whitespace", "row": 0, "column": 4, @@ -777,7 +777,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 740, + "lrState": 737, "sym": "double_quote", "label": "quote-start" } @@ -796,7 +796,7 @@ "name": "Q-2-11/simple-wrapped-7" }, { - "state": 771, + "state": 743, "sym": "_close_block", "row": 0, "column": 7, @@ -828,7 +828,7 @@ "name": "Q-2-11/simple-wrapped-8" }, { - "state": 762, + "state": 766, "sym": "_whitespace", "row": 0, "column": 5, @@ -841,7 +841,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 762, + "lrState": 766, "sym": "double_quote", "label": "quote-start" } @@ -860,7 +860,7 @@ "name": "Q-2-11/simple-wrapped-9" }, { - "state": 762, + "state": 766, "sym": "_whitespace", "row": 0, "column": 5, @@ -873,7 +873,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 762, + "lrState": 766, "sym": "double_quote", "label": "quote-start" } @@ -892,7 +892,7 @@ "name": "Q-2-11/simple-wrapped-10" }, { - "state": 762, + "state": 766, "sym": "_whitespace", "row": 0, "column": 5, @@ -905,7 +905,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 762, + "lrState": 766, "sym": "double_quote", "label": "quote-start" } @@ -924,7 +924,7 @@ "name": "Q-2-11/simple-wrapped-11" }, { - "state": 740, + "state": 737, "sym": "_whitespace", "row": 0, "column": 5, @@ -937,7 +937,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 740, + "lrState": 737, "sym": "double_quote", "label": "quote-start" } @@ -956,7 +956,7 @@ "name": "Q-2-11/simple-wrapped-12" }, { - "state": 777, + "state": 780, "sym": "_whitespace", "row": 0, "column": 7, @@ -969,7 +969,7 @@ "row": 0, "column": 6, "size": 1, - "lrState": 777, + "lrState": 780, "sym": "double_quote", "label": "quote-start" } @@ -1052,7 +1052,7 @@ "name": "Q-2-11/simple-wrapped-15" }, { - "state": 711, + "state": 776, "sym": "_whitespace", "row": 0, "column": 3, @@ -1065,7 +1065,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 711, + "lrState": 776, "sym": "double_quote", "label": "quote-start" } @@ -1084,7 +1084,7 @@ "name": "Q-2-11/simple-wrapped-16" }, { - "state": 771, + "state": 743, "sym": "_whitespace", "row": 0, "column": 5, @@ -1097,7 +1097,7 @@ "row": 0, "column": 4, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1116,7 +1116,7 @@ "name": "Q-2-11/simple-wrapped-17" }, { - "state": 771, + "state": 743, "sym": "_whitespace", "row": 0, "column": 4, @@ -1129,7 +1129,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1148,7 +1148,7 @@ "name": "Q-2-11/stray-ending-quote" }, { - "state": 771, + "state": 743, "sym": "_close_block", "row": 0, "column": 1, @@ -1161,7 +1161,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1180,7 +1180,7 @@ "name": "Q-2-11/simple" }, { - "state": 771, + "state": 743, "sym": "_close_block", "row": 0, "column": 1, @@ -1193,7 +1193,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1212,7 +1212,7 @@ "name": "Q-2-11/simple-1" }, { - "state": 740, + "state": 737, "sym": "_close_block", "row": 0, "column": 2, @@ -1225,7 +1225,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 740, + "lrState": 737, "sym": "double_quote", "label": "quote-start" } @@ -1308,7 +1308,7 @@ "name": "Q-2-11/simple-4" }, { - "state": 740, + "state": 737, "sym": "_close_block", "row": 0, "column": 3, @@ -1321,7 +1321,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 740, + "lrState": 737, "sym": "double_quote", "label": "quote-start" } @@ -1340,7 +1340,7 @@ "name": "Q-2-11/simple-5" }, { - "state": 762, + "state": 766, "sym": "_close_block", "row": 0, "column": 4, @@ -1353,7 +1353,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 762, + "lrState": 766, "sym": "double_quote", "label": "quote-start" } @@ -1372,7 +1372,7 @@ "name": "Q-2-11/simple-6" }, { - "state": 758, + "state": 768, "sym": "_close_block", "row": 0, "column": 2, @@ -1385,7 +1385,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 758, + "lrState": 768, "sym": "double_quote", "label": "quote-start" } @@ -1404,7 +1404,7 @@ "name": "Q-2-11/simple-7" }, { - "state": 721, + "state": 752, "sym": "_close_block", "row": 0, "column": 2, @@ -1417,7 +1417,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 721, + "lrState": 752, "sym": "double_quote", "label": "quote-start" } @@ -1436,7 +1436,7 @@ "name": "Q-2-11/simple-8" }, { - "state": 779, + "state": 726, "sym": "_close_block", "row": 0, "column": 3, @@ -1449,7 +1449,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 779, + "lrState": 726, "sym": "double_quote", "label": "quote-start" } @@ -1468,7 +1468,7 @@ "name": "Q-2-11/simple-9" }, { - "state": 711, + "state": 776, "sym": "_close_block", "row": 0, "column": 2, @@ -1481,7 +1481,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 711, + "lrState": 776, "sym": "double_quote", "label": "quote-start" } @@ -1500,7 +1500,7 @@ "name": "Q-2-11/simple-10" }, { - "state": 714, + "state": 715, "sym": "_close_block", "row": 0, "column": 2, @@ -1513,7 +1513,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 714, + "lrState": 715, "sym": "double_quote", "label": "quote-start" } @@ -1532,7 +1532,7 @@ "name": "Q-2-11/simple-11" }, { - "state": 694, + "state": 693, "sym": "_close_block", "row": 0, "column": 3, @@ -1545,7 +1545,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 694, + "lrState": 693, "sym": "double_quote", "label": "quote-start" } @@ -1564,7 +1564,7 @@ "name": "Q-2-11/simple-12" }, { - "state": 777, + "state": 780, "sym": "_close_block", "row": 0, "column": 3, @@ -1577,7 +1577,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 777, + "lrState": 780, "sym": "double_quote", "label": "quote-start" } @@ -1596,7 +1596,7 @@ "name": "Q-2-11/simple-13" }, { - "state": 771, + "state": 743, "sym": "_close_block", "row": 0, "column": 3, @@ -1609,7 +1609,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1641,7 +1641,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1673,7 +1673,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1705,7 +1705,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1737,7 +1737,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1769,7 +1769,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1801,7 +1801,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1833,7 +1833,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1865,7 +1865,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1897,7 +1897,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1929,7 +1929,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1961,7 +1961,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -1993,7 +1993,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2025,7 +2025,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2057,7 +2057,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2089,7 +2089,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2121,7 +2121,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2153,7 +2153,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2185,7 +2185,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2217,7 +2217,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 771, + "lrState": 743, "sym": "double_quote", "label": "quote-start" } @@ -2236,7 +2236,7 @@ "name": "Q-2-11/simple-33" }, { - "state": 940, + "state": 944, "sym": "_close_block", "row": 0, "column": 7, @@ -2249,7 +2249,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 917, + "lrState": 882, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -2268,7 +2268,7 @@ "name": "Q-2-12/stray-ending-star" }, { - "state": 917, + "state": 882, "sym": "_close_block", "row": 0, "column": 3, @@ -2300,7 +2300,7 @@ "name": "Q-2-12/simple" }, { - "state": 903, + "state": 902, "sym": "_close_block", "row": 0, "column": 4, @@ -2332,7 +2332,7 @@ "name": "Q-2-12/simple-1" }, { - "state": 895, + "state": 894, "sym": "_close_block", "row": 0, "column": 4, @@ -2364,7 +2364,7 @@ "name": "Q-2-12/simple-2" }, { - "state": 879, + "state": 876, "sym": "_close_block", "row": 0, "column": 5, @@ -2396,7 +2396,7 @@ "name": "Q-2-12/simple-3" }, { - "state": 903, + "state": 902, "sym": "_close_block", "row": 0, "column": 5, @@ -2428,7 +2428,7 @@ "name": "Q-2-12/simple-4" }, { - "state": 809, + "state": 806, "sym": "_close_block", "row": 0, "column": 6, @@ -2460,7 +2460,7 @@ "name": "Q-2-12/simple-5" }, { - "state": 855, + "state": 851, "sym": "_close_block", "row": 0, "column": 4, @@ -2492,7 +2492,7 @@ "name": "Q-2-12/simple-6" }, { - "state": 846, + "state": 843, "sym": "_close_block", "row": 0, "column": 4, @@ -2524,7 +2524,7 @@ "name": "Q-2-12/simple-7" }, { - "state": 838, + "state": 835, "sym": "_close_block", "row": 0, "column": 5, @@ -2556,7 +2556,7 @@ "name": "Q-2-12/simple-8" }, { - "state": 821, + "state": 819, "sym": "_close_block", "row": 0, "column": 4, @@ -2588,7 +2588,7 @@ "name": "Q-2-12/simple-9" }, { - "state": 829, + "state": 827, "sym": "_close_block", "row": 0, "column": 4, @@ -2620,7 +2620,7 @@ "name": "Q-2-12/simple-10" }, { - "state": 863, + "state": 859, "sym": "_close_block", "row": 0, "column": 5, @@ -2652,7 +2652,7 @@ "name": "Q-2-12/simple-11" }, { - "state": 917, + "state": 882, "sym": "_close_block", "row": 0, "column": 5, @@ -3260,7 +3260,7 @@ "name": "Q-2-12/simple-30" }, { - "state": 860, + "state": 865, "sym": "_close_block", "row": 0, "column": 2, @@ -3273,7 +3273,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3290,7 +3290,7 @@ "name": "Q-2-13/simple" }, { - "state": 860, + "state": 865, "sym": "_close_block", "row": 0, "column": 2, @@ -3303,7 +3303,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3320,7 +3320,7 @@ "name": "Q-2-13/simple-1" }, { - "state": 901, + "state": 900, "sym": "_close_block", "row": 0, "column": 3, @@ -3333,7 +3333,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 901, + "lrState": 900, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3350,7 +3350,7 @@ "name": "Q-2-13/simple-2" }, { - "state": 893, + "state": 892, "sym": "_close_block", "row": 0, "column": 3, @@ -3363,7 +3363,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 893, + "lrState": 892, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3380,7 +3380,7 @@ "name": "Q-2-13/simple-3" }, { - "state": 877, + "state": 874, "sym": "_close_block", "row": 0, "column": 4, @@ -3393,7 +3393,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 877, + "lrState": 874, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3410,7 +3410,7 @@ "name": "Q-2-13/simple-4" }, { - "state": 901, + "state": 900, "sym": "_close_block", "row": 0, "column": 4, @@ -3423,7 +3423,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 901, + "lrState": 900, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3440,7 +3440,7 @@ "name": "Q-2-13/simple-5" }, { - "state": 807, + "state": 804, "sym": "_close_block", "row": 0, "column": 5, @@ -3453,7 +3453,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 807, + "lrState": 804, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3470,7 +3470,7 @@ "name": "Q-2-13/simple-6" }, { - "state": 853, + "state": 849, "sym": "_close_block", "row": 0, "column": 3, @@ -3483,7 +3483,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 853, + "lrState": 849, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3500,7 +3500,7 @@ "name": "Q-2-13/simple-7" }, { - "state": 844, + "state": 841, "sym": "_close_block", "row": 0, "column": 3, @@ -3513,7 +3513,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 844, + "lrState": 841, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3530,7 +3530,7 @@ "name": "Q-2-13/simple-8" }, { - "state": 836, + "state": 833, "sym": "_close_block", "row": 0, "column": 4, @@ -3543,7 +3543,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 836, + "lrState": 833, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3560,7 +3560,7 @@ "name": "Q-2-13/simple-9" }, { - "state": 819, + "state": 817, "sym": "_close_block", "row": 0, "column": 3, @@ -3573,7 +3573,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 819, + "lrState": 817, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3590,7 +3590,7 @@ "name": "Q-2-13/simple-10" }, { - "state": 827, + "state": 825, "sym": "_close_block", "row": 0, "column": 3, @@ -3603,7 +3603,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 827, + "lrState": 825, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3620,7 +3620,7 @@ "name": "Q-2-13/simple-11" }, { - "state": 861, + "state": 857, "sym": "_close_block", "row": 0, "column": 4, @@ -3633,7 +3633,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 861, + "lrState": 857, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3650,7 +3650,7 @@ "name": "Q-2-13/simple-12" }, { - "state": 860, + "state": 865, "sym": "_close_block", "row": 0, "column": 4, @@ -3663,7 +3663,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3693,7 +3693,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3723,7 +3723,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3753,7 +3753,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3783,7 +3783,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3813,7 +3813,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3843,7 +3843,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3873,7 +3873,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3903,7 +3903,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3933,7 +3933,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3963,7 +3963,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -3993,7 +3993,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4023,7 +4023,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4053,7 +4053,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4083,7 +4083,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4113,7 +4113,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4143,7 +4143,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4173,7 +4173,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4203,7 +4203,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 860, + "lrState": 865, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4220,7 +4220,7 @@ "name": "Q-2-13/simple-31" }, { - "state": 800, + "state": 789, "sym": "_close_block", "row": 0, "column": 2, @@ -4233,7 +4233,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4250,7 +4250,7 @@ "name": "Q-2-15/simple" }, { - "state": 800, + "state": 789, "sym": "_close_block", "row": 0, "column": 2, @@ -4263,7 +4263,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4280,7 +4280,7 @@ "name": "Q-2-15/simple-1" }, { - "state": 902, + "state": 901, "sym": "_close_block", "row": 0, "column": 3, @@ -4293,7 +4293,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 902, + "lrState": 901, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4310,7 +4310,7 @@ "name": "Q-2-15/simple-2" }, { - "state": 902, + "state": 901, "sym": "_close_block", "row": 0, "column": 4, @@ -4323,7 +4323,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 902, + "lrState": 901, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4340,7 +4340,7 @@ "name": "Q-2-15/simple-3" }, { - "state": 808, + "state": 805, "sym": "_close_block", "row": 0, "column": 5, @@ -4353,7 +4353,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 808, + "lrState": 805, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4370,7 +4370,7 @@ "name": "Q-2-15/simple-4" }, { - "state": 854, + "state": 850, "sym": "_close_block", "row": 0, "column": 3, @@ -4383,7 +4383,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 854, + "lrState": 850, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4400,7 +4400,7 @@ "name": "Q-2-15/simple-5" }, { - "state": 845, + "state": 842, "sym": "_close_block", "row": 0, "column": 3, @@ -4413,7 +4413,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 845, + "lrState": 842, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4430,7 +4430,7 @@ "name": "Q-2-15/simple-6" }, { - "state": 837, + "state": 834, "sym": "_close_block", "row": 0, "column": 4, @@ -4443,7 +4443,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 837, + "lrState": 834, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4460,7 +4460,7 @@ "name": "Q-2-15/simple-7" }, { - "state": 820, + "state": 818, "sym": "_close_block", "row": 0, "column": 3, @@ -4473,7 +4473,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 820, + "lrState": 818, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4490,7 +4490,7 @@ "name": "Q-2-15/simple-8" }, { - "state": 828, + "state": 826, "sym": "_close_block", "row": 0, "column": 3, @@ -4503,7 +4503,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 828, + "lrState": 826, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4520,7 +4520,7 @@ "name": "Q-2-15/simple-9" }, { - "state": 886, + "state": 884, "sym": "_close_block", "row": 0, "column": 3, @@ -4533,7 +4533,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 886, + "lrState": 884, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4550,7 +4550,7 @@ "name": "Q-2-15/simple-10" }, { - "state": 870, + "state": 867, "sym": "_close_block", "row": 0, "column": 4, @@ -4563,7 +4563,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 870, + "lrState": 867, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4580,7 +4580,7 @@ "name": "Q-2-15/simple-11" }, { - "state": 862, + "state": 858, "sym": "_close_block", "row": 0, "column": 4, @@ -4593,7 +4593,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 862, + "lrState": 858, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4610,7 +4610,7 @@ "name": "Q-2-15/simple-12" }, { - "state": 800, + "state": 789, "sym": "_close_block", "row": 0, "column": 4, @@ -4623,7 +4623,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4653,7 +4653,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4683,7 +4683,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4713,7 +4713,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4743,7 +4743,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4773,7 +4773,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4803,7 +4803,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4833,7 +4833,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4863,7 +4863,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4893,7 +4893,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4923,7 +4923,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4953,7 +4953,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -4983,7 +4983,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5013,7 +5013,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5043,7 +5043,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5073,7 +5073,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5103,7 +5103,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5133,7 +5133,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5163,7 +5163,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 800, + "lrState": 789, "sym": "strong_emphasis_delimiter", "label": "strong-start" } @@ -5180,7 +5180,7 @@ "name": "Q-2-15/simple-31" }, { - "state": 813, + "state": 921, "sym": "_close_block", "row": 0, "column": 1, @@ -5193,7 +5193,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5210,7 +5210,7 @@ "name": "Q-2-16/simple" }, { - "state": 813, + "state": 921, "sym": "_close_block", "row": 0, "column": 1, @@ -5223,7 +5223,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5240,7 +5240,7 @@ "name": "Q-2-16/simple-1" }, { - "state": 892, + "state": 890, "sym": "_close_block", "row": 0, "column": 2, @@ -5253,7 +5253,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 892, + "lrState": 890, "sym": "superscript_delimiter", "label": "super-start" } @@ -5270,7 +5270,7 @@ "name": "Q-2-16/simple-2" }, { - "state": 876, + "state": 873, "sym": "_close_block", "row": 0, "column": 3, @@ -5283,7 +5283,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 876, + "lrState": 873, "sym": "superscript_delimiter", "label": "super-start" } @@ -5300,7 +5300,7 @@ "name": "Q-2-16/simple-3" }, { - "state": 900, + "state": 899, "sym": "_close_block", "row": 0, "column": 3, @@ -5313,7 +5313,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 900, + "lrState": 899, "sym": "superscript_delimiter", "label": "super-start" } @@ -5330,7 +5330,7 @@ "name": "Q-2-16/simple-4" }, { - "state": 806, + "state": 802, "sym": "_close_block", "row": 0, "column": 4, @@ -5343,7 +5343,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 806, + "lrState": 802, "sym": "superscript_delimiter", "label": "super-start" } @@ -5360,7 +5360,7 @@ "name": "Q-2-16/simple-5" }, { - "state": 843, + "state": 840, "sym": "_close_block", "row": 0, "column": 2, @@ -5373,7 +5373,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 843, + "lrState": 840, "sym": "superscript_delimiter", "label": "super-start" } @@ -5390,7 +5390,7 @@ "name": "Q-2-16/simple-6" }, { - "state": 834, + "state": 832, "sym": "_close_block", "row": 0, "column": 3, @@ -5403,7 +5403,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 834, + "lrState": 832, "sym": "superscript_delimiter", "label": "super-start" } @@ -5420,7 +5420,7 @@ "name": "Q-2-16/simple-7" }, { - "state": 818, + "state": 815, "sym": "_close_block", "row": 0, "column": 2, @@ -5433,7 +5433,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 818, + "lrState": 815, "sym": "superscript_delimiter", "label": "super-start" } @@ -5450,7 +5450,7 @@ "name": "Q-2-16/simple-8" }, { - "state": 826, + "state": 824, "sym": "_close_block", "row": 0, "column": 2, @@ -5463,7 +5463,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 826, + "lrState": 824, "sym": "superscript_delimiter", "label": "super-start" } @@ -5480,7 +5480,7 @@ "name": "Q-2-16/simple-9" }, { - "state": 884, + "state": 881, "sym": "_close_block", "row": 0, "column": 2, @@ -5493,7 +5493,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 884, + "lrState": 881, "sym": "superscript_delimiter", "label": "super-start" } @@ -5510,7 +5510,7 @@ "name": "Q-2-16/simple-10" }, { - "state": 868, + "state": 864, "sym": "_close_block", "row": 0, "column": 3, @@ -5523,7 +5523,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 868, + "lrState": 864, "sym": "superscript_delimiter", "label": "super-start" } @@ -5540,7 +5540,7 @@ "name": "Q-2-16/simple-11" }, { - "state": 859, + "state": 856, "sym": "_close_block", "row": 0, "column": 3, @@ -5553,7 +5553,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 859, + "lrState": 856, "sym": "superscript_delimiter", "label": "super-start" } @@ -5570,7 +5570,7 @@ "name": "Q-2-16/simple-12" }, { - "state": 813, + "state": 921, "sym": "_close_block", "row": 0, "column": 3, @@ -5583,7 +5583,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5613,7 +5613,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5643,7 +5643,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5673,7 +5673,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5703,7 +5703,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5733,7 +5733,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5763,7 +5763,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5793,7 +5793,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5823,7 +5823,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5853,7 +5853,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5883,7 +5883,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5913,7 +5913,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5943,7 +5943,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5973,7 +5973,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 813, + "lrState": 921, "sym": "superscript_delimiter", "label": "super-start" } @@ -5990,7 +5990,7 @@ "name": "Q-2-16/simple-26" }, { - "state": 812, + "state": 916, "sym": "_close_block", "row": 0, "column": 1, @@ -6003,7 +6003,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6020,7 +6020,7 @@ "name": "Q-2-17/simple" }, { - "state": 812, + "state": 916, "sym": "_close_block", "row": 0, "column": 1, @@ -6033,7 +6033,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6050,7 +6050,7 @@ "name": "Q-2-17/simple-1" }, { - "state": 899, + "state": 898, "sym": "_close_block", "row": 0, "column": 2, @@ -6063,7 +6063,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 899, + "lrState": 898, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6080,7 +6080,7 @@ "name": "Q-2-17/simple-2" }, { - "state": 891, + "state": 889, "sym": "_close_block", "row": 0, "column": 2, @@ -6093,7 +6093,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 891, + "lrState": 889, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6110,7 +6110,7 @@ "name": "Q-2-17/simple-3" }, { - "state": 875, + "state": 872, "sym": "_close_block", "row": 0, "column": 3, @@ -6123,7 +6123,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 875, + "lrState": 872, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6140,7 +6140,7 @@ "name": "Q-2-17/simple-4" }, { - "state": 899, + "state": 898, "sym": "_close_block", "row": 0, "column": 3, @@ -6153,7 +6153,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 899, + "lrState": 898, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6170,7 +6170,7 @@ "name": "Q-2-17/simple-5" }, { - "state": 805, + "state": 801, "sym": "_close_block", "row": 0, "column": 4, @@ -6183,7 +6183,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 805, + "lrState": 801, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6200,7 +6200,7 @@ "name": "Q-2-17/simple-6" }, { - "state": 850, + "state": 847, "sym": "_close_block", "row": 0, "column": 2, @@ -6213,7 +6213,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 850, + "lrState": 847, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6230,7 +6230,7 @@ "name": "Q-2-17/simple-7" }, { - "state": 817, + "state": 814, "sym": "_close_block", "row": 0, "column": 2, @@ -6243,7 +6243,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 817, + "lrState": 814, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6260,7 +6260,7 @@ "name": "Q-2-17/simple-8" }, { - "state": 825, + "state": 823, "sym": "_close_block", "row": 0, "column": 2, @@ -6273,7 +6273,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 825, + "lrState": 823, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6290,7 +6290,7 @@ "name": "Q-2-17/simple-9" }, { - "state": 883, + "state": 880, "sym": "_close_block", "row": 0, "column": 2, @@ -6303,7 +6303,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 883, + "lrState": 880, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6320,7 +6320,7 @@ "name": "Q-2-17/simple-10" }, { - "state": 867, + "state": 863, "sym": "_close_block", "row": 0, "column": 3, @@ -6333,7 +6333,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 867, + "lrState": 863, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6380,7 +6380,7 @@ "name": "Q-2-17/simple-12" }, { - "state": 812, + "state": 916, "sym": "_close_block", "row": 0, "column": 3, @@ -6393,7 +6393,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6423,7 +6423,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6453,7 +6453,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6483,7 +6483,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6513,7 +6513,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6543,7 +6543,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6573,7 +6573,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6603,7 +6603,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6633,7 +6633,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6663,7 +6663,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6693,7 +6693,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6723,7 +6723,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6753,7 +6753,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6783,7 +6783,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6813,7 +6813,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6843,7 +6843,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6873,7 +6873,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6903,7 +6903,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6933,7 +6933,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 812, + "lrState": 916, "sym": "subscript_delimiter", "label": "sub-start" } @@ -6950,7 +6950,7 @@ "name": "Q-2-17/simple-31" }, { - "state": 802, + "state": 812, "sym": "_close_block", "row": 0, "column": 2, @@ -6963,7 +6963,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -6980,7 +6980,7 @@ "name": "Q-2-18/simple" }, { - "state": 802, + "state": 812, "sym": "_close_block", "row": 0, "column": 2, @@ -6993,7 +6993,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7010,7 +7010,7 @@ "name": "Q-2-18/simple-1" }, { - "state": 898, + "state": 897, "sym": "_close_block", "row": 0, "column": 3, @@ -7023,7 +7023,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 898, + "lrState": 897, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7040,7 +7040,7 @@ "name": "Q-2-18/simple-2" }, { - "state": 890, + "state": 888, "sym": "_close_block", "row": 0, "column": 3, @@ -7053,7 +7053,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 890, + "lrState": 888, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7070,7 +7070,7 @@ "name": "Q-2-18/simple-3" }, { - "state": 874, + "state": 871, "sym": "_close_block", "row": 0, "column": 4, @@ -7083,7 +7083,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 874, + "lrState": 871, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7100,7 +7100,7 @@ "name": "Q-2-18/simple-4" }, { - "state": 898, + "state": 897, "sym": "_close_block", "row": 0, "column": 4, @@ -7113,7 +7113,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 898, + "lrState": 897, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7130,7 +7130,7 @@ "name": "Q-2-18/simple-5" }, { - "state": 804, + "state": 800, "sym": "_close_block", "row": 0, "column": 5, @@ -7143,7 +7143,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 804, + "lrState": 800, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7160,7 +7160,7 @@ "name": "Q-2-18/simple-6" }, { - "state": 849, + "state": 846, "sym": "_close_block", "row": 0, "column": 3, @@ -7173,7 +7173,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 849, + "lrState": 846, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7190,7 +7190,7 @@ "name": "Q-2-18/simple-7" }, { - "state": 816, + "state": 813, "sym": "_close_block", "row": 0, "column": 3, @@ -7203,7 +7203,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 816, + "lrState": 813, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7220,7 +7220,7 @@ "name": "Q-2-18/simple-8" }, { - "state": 824, + "state": 822, "sym": "_close_block", "row": 0, "column": 3, @@ -7233,7 +7233,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 824, + "lrState": 822, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7250,7 +7250,7 @@ "name": "Q-2-18/simple-9" }, { - "state": 882, + "state": 879, "sym": "_close_block", "row": 0, "column": 3, @@ -7263,7 +7263,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 882, + "lrState": 879, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7280,7 +7280,7 @@ "name": "Q-2-18/simple-10" }, { - "state": 866, + "state": 862, "sym": "_close_block", "row": 0, "column": 4, @@ -7293,7 +7293,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 866, + "lrState": 862, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7310,7 +7310,7 @@ "name": "Q-2-18/simple-11" }, { - "state": 858, + "state": 854, "sym": "_close_block", "row": 0, "column": 4, @@ -7323,7 +7323,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 858, + "lrState": 854, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7340,7 +7340,7 @@ "name": "Q-2-18/simple-12" }, { - "state": 802, + "state": 812, "sym": "_close_block", "row": 0, "column": 4, @@ -7353,7 +7353,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7383,7 +7383,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7413,7 +7413,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7443,7 +7443,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7473,7 +7473,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7503,7 +7503,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7533,7 +7533,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7563,7 +7563,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7593,7 +7593,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7623,7 +7623,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7653,7 +7653,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7683,7 +7683,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7713,7 +7713,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7743,7 +7743,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7773,7 +7773,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7803,7 +7803,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7833,7 +7833,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7863,7 +7863,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7893,7 +7893,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 802, + "lrState": 812, "sym": "strikeout_delimiter", "label": "strike-start" } @@ -7910,7 +7910,7 @@ "name": "Q-2-18/simple-31" }, { - "state": 418, + "state": 510, "sym": "_close_block", "row": 0, "column": 3, @@ -7923,7 +7923,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -7940,7 +7940,7 @@ "name": "Q-2-19/simple" }, { - "state": 418, + "state": 510, "sym": "_close_block", "row": 0, "column": 3, @@ -7953,7 +7953,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -7970,7 +7970,7 @@ "name": "Q-2-19/simple-1" }, { - "state": 551, + "state": 564, "sym": "_close_block", "row": 0, "column": 4, @@ -7983,7 +7983,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 551, + "lrState": 564, "sym": "insert_delimiter", "label": "insert-start" } @@ -8000,7 +8000,7 @@ "name": "Q-2-19/simple-2" }, { - "state": 545, + "state": 559, "sym": "_close_block", "row": 0, "column": 4, @@ -8013,7 +8013,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 545, + "lrState": 559, "sym": "insert_delimiter", "label": "insert-start" } @@ -8030,7 +8030,7 @@ "name": "Q-2-19/simple-3" }, { - "state": 533, + "state": 551, "sym": "_close_block", "row": 0, "column": 5, @@ -8043,7 +8043,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 533, + "lrState": 551, "sym": "insert_delimiter", "label": "insert-start" } @@ -8060,7 +8060,7 @@ "name": "Q-2-19/simple-4" }, { - "state": 551, + "state": 564, "sym": "_close_block", "row": 0, "column": 5, @@ -8073,7 +8073,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 551, + "lrState": 564, "sym": "insert_delimiter", "label": "insert-start" } @@ -8090,7 +8090,7 @@ "name": "Q-2-19/simple-5" }, { - "state": 475, + "state": 513, "sym": "_close_block", "row": 0, "column": 6, @@ -8103,7 +8103,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 475, + "lrState": 513, "sym": "insert_delimiter", "label": "insert-start" } @@ -8120,7 +8120,7 @@ "name": "Q-2-19/simple-6" }, { - "state": 511, + "state": 533, "sym": "_close_block", "row": 0, "column": 4, @@ -8133,7 +8133,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 511, + "lrState": 533, "sym": "insert_delimiter", "label": "insert-start" } @@ -8150,7 +8150,7 @@ "name": "Q-2-19/simple-7" }, { - "state": 505, + "state": 529, "sym": "_close_block", "row": 0, "column": 5, @@ -8163,7 +8163,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 505, + "lrState": 529, "sym": "insert_delimiter", "label": "insert-start" } @@ -8180,7 +8180,7 @@ "name": "Q-2-19/simple-8" }, { - "state": 494, + "state": 520, "sym": "_close_block", "row": 0, "column": 4, @@ -8193,7 +8193,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 494, + "lrState": 520, "sym": "insert_delimiter", "label": "insert-start" } @@ -8210,7 +8210,7 @@ "name": "Q-2-19/simple-9" }, { - "state": 500, + "state": 524, "sym": "_close_block", "row": 0, "column": 4, @@ -8223,7 +8223,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 500, + "lrState": 524, "sym": "insert_delimiter", "label": "insert-start" } @@ -8240,7 +8240,7 @@ "name": "Q-2-19/simple-10" }, { - "state": 539, + "state": 555, "sym": "_close_block", "row": 0, "column": 4, @@ -8253,7 +8253,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 539, + "lrState": 555, "sym": "insert_delimiter", "label": "insert-start" } @@ -8270,7 +8270,7 @@ "name": "Q-2-19/simple-11" }, { - "state": 528, + "state": 547, "sym": "_close_block", "row": 0, "column": 5, @@ -8283,7 +8283,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 528, + "lrState": 547, "sym": "insert_delimiter", "label": "insert-start" } @@ -8300,7 +8300,7 @@ "name": "Q-2-19/simple-12" }, { - "state": 522, + "state": 542, "sym": "_close_block", "row": 0, "column": 5, @@ -8313,7 +8313,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 522, + "lrState": 542, "sym": "insert_delimiter", "label": "insert-start" } @@ -8330,7 +8330,7 @@ "name": "Q-2-19/simple-13" }, { - "state": 418, + "state": 510, "sym": "_close_block", "row": 0, "column": 5, @@ -8343,7 +8343,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8373,7 +8373,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8403,7 +8403,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8433,7 +8433,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8463,7 +8463,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8493,7 +8493,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8523,7 +8523,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8553,7 +8553,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8583,7 +8583,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8613,7 +8613,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8643,7 +8643,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8673,7 +8673,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8703,7 +8703,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8733,7 +8733,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8763,7 +8763,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8793,7 +8793,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8823,7 +8823,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8853,7 +8853,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8883,7 +8883,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8913,7 +8913,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8943,7 +8943,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 418, + "lrState": 510, "sym": "insert_delimiter", "label": "insert-start" } @@ -8990,7 +8990,7 @@ "name": "Q-2-2/simple" }, { - "state": 419, + "state": 511, "sym": "_close_block", "row": 0, "column": 3, @@ -9003,7 +9003,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9020,7 +9020,7 @@ "name": "Q-2-20/simple" }, { - "state": 419, + "state": 511, "sym": "_close_block", "row": 0, "column": 3, @@ -9033,7 +9033,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9050,7 +9050,7 @@ "name": "Q-2-20/simple-1" }, { - "state": 552, + "state": 565, "sym": "_close_block", "row": 0, "column": 4, @@ -9063,7 +9063,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 552, + "lrState": 565, "sym": "delete_delimiter", "label": "delete-start" } @@ -9080,7 +9080,7 @@ "name": "Q-2-20/simple-2" }, { - "state": 546, + "state": 560, "sym": "_close_block", "row": 0, "column": 4, @@ -9093,7 +9093,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 546, + "lrState": 560, "sym": "delete_delimiter", "label": "delete-start" } @@ -9110,7 +9110,7 @@ "name": "Q-2-20/simple-3" }, { - "state": 534, + "state": 552, "sym": "_close_block", "row": 0, "column": 5, @@ -9123,7 +9123,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 534, + "lrState": 552, "sym": "delete_delimiter", "label": "delete-start" } @@ -9140,7 +9140,7 @@ "name": "Q-2-20/simple-4" }, { - "state": 552, + "state": 565, "sym": "_close_block", "row": 0, "column": 5, @@ -9153,7 +9153,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 552, + "lrState": 565, "sym": "delete_delimiter", "label": "delete-start" } @@ -9170,7 +9170,7 @@ "name": "Q-2-20/simple-5" }, { - "state": 476, + "state": 514, "sym": "_close_block", "row": 0, "column": 6, @@ -9183,7 +9183,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 476, + "lrState": 514, "sym": "delete_delimiter", "label": "delete-start" } @@ -9200,7 +9200,7 @@ "name": "Q-2-20/simple-6" }, { - "state": 512, + "state": 534, "sym": "_close_block", "row": 0, "column": 4, @@ -9213,7 +9213,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 512, + "lrState": 534, "sym": "delete_delimiter", "label": "delete-start" } @@ -9230,7 +9230,7 @@ "name": "Q-2-20/simple-7" }, { - "state": 506, + "state": 530, "sym": "_close_block", "row": 0, "column": 5, @@ -9243,7 +9243,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 506, + "lrState": 530, "sym": "delete_delimiter", "label": "delete-start" } @@ -9260,7 +9260,7 @@ "name": "Q-2-20/simple-8" }, { - "state": 495, + "state": 521, "sym": "_close_block", "row": 0, "column": 4, @@ -9273,7 +9273,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 495, + "lrState": 521, "sym": "delete_delimiter", "label": "delete-start" } @@ -9290,7 +9290,7 @@ "name": "Q-2-20/simple-9" }, { - "state": 501, + "state": 525, "sym": "_close_block", "row": 0, "column": 4, @@ -9303,7 +9303,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 501, + "lrState": 525, "sym": "delete_delimiter", "label": "delete-start" } @@ -9320,7 +9320,7 @@ "name": "Q-2-20/simple-10" }, { - "state": 540, + "state": 556, "sym": "_close_block", "row": 0, "column": 4, @@ -9333,7 +9333,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 540, + "lrState": 556, "sym": "delete_delimiter", "label": "delete-start" } @@ -9350,7 +9350,7 @@ "name": "Q-2-20/simple-11" }, { - "state": 529, + "state": 548, "sym": "_close_block", "row": 0, "column": 5, @@ -9363,7 +9363,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 529, + "lrState": 548, "sym": "delete_delimiter", "label": "delete-start" } @@ -9380,7 +9380,7 @@ "name": "Q-2-20/simple-12" }, { - "state": 523, + "state": 543, "sym": "_close_block", "row": 0, "column": 5, @@ -9393,7 +9393,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 523, + "lrState": 543, "sym": "delete_delimiter", "label": "delete-start" } @@ -9410,7 +9410,7 @@ "name": "Q-2-20/simple-13" }, { - "state": 419, + "state": 511, "sym": "_close_block", "row": 0, "column": 5, @@ -9423,7 +9423,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9453,7 +9453,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9483,7 +9483,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9513,7 +9513,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9543,7 +9543,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9573,7 +9573,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9603,7 +9603,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9633,7 +9633,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9663,7 +9663,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9693,7 +9693,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9723,7 +9723,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9753,7 +9753,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9783,7 +9783,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9813,7 +9813,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9843,7 +9843,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9873,7 +9873,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9903,7 +9903,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9933,7 +9933,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9963,7 +9963,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -9993,7 +9993,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -10023,7 +10023,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 419, + "lrState": 511, "sym": "delete_delimiter", "label": "delete-start" } @@ -10040,7 +10040,7 @@ "name": "Q-2-20/simple-34" }, { - "state": 420, + "state": 516, "sym": "_close_block", "row": 0, "column": 3, @@ -10053,7 +10053,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10070,7 +10070,7 @@ "name": "Q-2-21/simple" }, { - "state": 420, + "state": 516, "sym": "_close_block", "row": 0, "column": 3, @@ -10083,7 +10083,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10100,7 +10100,7 @@ "name": "Q-2-21/simple-1" }, { - "state": 553, + "state": 566, "sym": "_close_block", "row": 0, "column": 4, @@ -10113,7 +10113,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 553, + "lrState": 566, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10130,7 +10130,7 @@ "name": "Q-2-21/simple-2" }, { - "state": 547, + "state": 561, "sym": "_close_block", "row": 0, "column": 4, @@ -10143,7 +10143,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 547, + "lrState": 561, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10160,7 +10160,7 @@ "name": "Q-2-21/simple-3" }, { - "state": 535, + "state": 553, "sym": "_close_block", "row": 0, "column": 5, @@ -10173,7 +10173,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 535, + "lrState": 553, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10190,7 +10190,7 @@ "name": "Q-2-21/simple-4" }, { - "state": 553, + "state": 566, "sym": "_close_block", "row": 0, "column": 5, @@ -10203,7 +10203,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 553, + "lrState": 566, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10220,7 +10220,7 @@ "name": "Q-2-21/simple-5" }, { - "state": 477, + "state": 515, "sym": "_close_block", "row": 0, "column": 6, @@ -10233,7 +10233,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 477, + "lrState": 515, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10250,7 +10250,7 @@ "name": "Q-2-21/simple-6" }, { - "state": 477, + "state": 515, "sym": "_close_block", "row": 0, "column": 6, @@ -10263,7 +10263,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 477, + "lrState": 515, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10280,7 +10280,7 @@ "name": "Q-2-21/simple-7" }, { - "state": 477, + "state": 515, "sym": "_close_block", "row": 0, "column": 6, @@ -10293,7 +10293,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 477, + "lrState": 515, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10310,7 +10310,7 @@ "name": "Q-2-21/simple-8" }, { - "state": 477, + "state": 515, "sym": "_close_block", "row": 0, "column": 6, @@ -10323,7 +10323,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 477, + "lrState": 515, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10340,7 +10340,7 @@ "name": "Q-2-21/simple-9" }, { - "state": 513, + "state": 535, "sym": "_close_block", "row": 0, "column": 4, @@ -10353,7 +10353,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 513, + "lrState": 535, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10370,7 +10370,7 @@ "name": "Q-2-21/simple-10" }, { - "state": 507, + "state": 531, "sym": "_close_block", "row": 0, "column": 5, @@ -10383,7 +10383,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 507, + "lrState": 531, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10400,7 +10400,7 @@ "name": "Q-2-21/simple-11" }, { - "state": 496, + "state": 522, "sym": "_close_block", "row": 0, "column": 4, @@ -10413,7 +10413,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 496, + "lrState": 522, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10430,7 +10430,7 @@ "name": "Q-2-21/simple-12" }, { - "state": 502, + "state": 526, "sym": "_close_block", "row": 0, "column": 4, @@ -10443,7 +10443,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 502, + "lrState": 526, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10460,7 +10460,7 @@ "name": "Q-2-21/simple-13" }, { - "state": 541, + "state": 557, "sym": "_close_block", "row": 0, "column": 4, @@ -10473,7 +10473,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 541, + "lrState": 557, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10490,7 +10490,7 @@ "name": "Q-2-21/simple-14" }, { - "state": 530, + "state": 549, "sym": "_close_block", "row": 0, "column": 5, @@ -10503,7 +10503,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 530, + "lrState": 549, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10520,7 +10520,7 @@ "name": "Q-2-21/simple-15" }, { - "state": 524, + "state": 544, "sym": "_close_block", "row": 0, "column": 5, @@ -10533,7 +10533,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 524, + "lrState": 544, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10550,7 +10550,7 @@ "name": "Q-2-21/simple-16" }, { - "state": 420, + "state": 516, "sym": "_close_block", "row": 0, "column": 5, @@ -10563,7 +10563,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10593,7 +10593,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10623,7 +10623,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10653,7 +10653,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10683,7 +10683,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10713,7 +10713,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10743,7 +10743,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10773,7 +10773,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10803,7 +10803,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10833,7 +10833,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10863,7 +10863,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10893,7 +10893,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10923,7 +10923,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10953,7 +10953,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -10983,7 +10983,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11013,7 +11013,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11043,7 +11043,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11073,7 +11073,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11103,7 +11103,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11133,7 +11133,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11163,7 +11163,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 420, + "lrState": 516, "sym": "edit_comment_delimiter", "label": "comment-start" } @@ -11180,7 +11180,7 @@ "name": "Q-2-21/simple-37" }, { - "state": 582, + "state": 518, "sym": "_close_block", "row": 0, "column": 3, @@ -11193,7 +11193,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11210,7 +11210,7 @@ "name": "Q-2-22/simple" }, { - "state": 582, + "state": 518, "sym": "_close_block", "row": 0, "column": 3, @@ -11223,7 +11223,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11240,7 +11240,7 @@ "name": "Q-2-22/simple-1" }, { - "state": 550, + "state": 563, "sym": "_close_block", "row": 0, "column": 4, @@ -11253,7 +11253,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 550, + "lrState": 563, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11270,7 +11270,7 @@ "name": "Q-2-22/simple-2" }, { - "state": 544, + "state": 558, "sym": "_close_block", "row": 0, "column": 4, @@ -11283,7 +11283,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 544, + "lrState": 558, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11300,7 +11300,7 @@ "name": "Q-2-22/simple-3" }, { - "state": 532, + "state": 550, "sym": "_close_block", "row": 0, "column": 5, @@ -11313,7 +11313,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 532, + "lrState": 550, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11330,7 +11330,7 @@ "name": "Q-2-22/simple-4" }, { - "state": 550, + "state": 563, "sym": "_close_block", "row": 0, "column": 5, @@ -11343,7 +11343,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 550, + "lrState": 563, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11360,7 +11360,7 @@ "name": "Q-2-22/simple-5" }, { - "state": 474, + "state": 512, "sym": "_close_block", "row": 0, "column": 6, @@ -11373,7 +11373,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 474, + "lrState": 512, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11390,7 +11390,7 @@ "name": "Q-2-22/simple-6" }, { - "state": 474, + "state": 512, "sym": "_close_block", "row": 0, "column": 6, @@ -11403,7 +11403,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 474, + "lrState": 512, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11420,7 +11420,7 @@ "name": "Q-2-22/simple-7" }, { - "state": 474, + "state": 512, "sym": "_close_block", "row": 0, "column": 6, @@ -11433,7 +11433,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 474, + "lrState": 512, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11450,7 +11450,7 @@ "name": "Q-2-22/simple-8" }, { - "state": 474, + "state": 512, "sym": "_close_block", "row": 0, "column": 6, @@ -11463,7 +11463,7 @@ "row": 0, "column": 3, "size": 3, - "lrState": 474, + "lrState": 512, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11480,7 +11480,7 @@ "name": "Q-2-22/simple-9" }, { - "state": 510, + "state": 495, "sym": "_close_block", "row": 0, "column": 4, @@ -11493,7 +11493,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 510, + "lrState": 495, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11510,7 +11510,7 @@ "name": "Q-2-22/simple-10" }, { - "state": 504, + "state": 528, "sym": "_close_block", "row": 0, "column": 5, @@ -11523,7 +11523,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 504, + "lrState": 528, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11540,7 +11540,7 @@ "name": "Q-2-22/simple-11" }, { - "state": 493, + "state": 519, "sym": "_close_block", "row": 0, "column": 4, @@ -11553,7 +11553,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 493, + "lrState": 519, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11570,7 +11570,7 @@ "name": "Q-2-22/simple-12" }, { - "state": 499, + "state": 523, "sym": "_close_block", "row": 0, "column": 4, @@ -11583,7 +11583,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 499, + "lrState": 523, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11600,7 +11600,7 @@ "name": "Q-2-22/simple-13" }, { - "state": 538, + "state": 554, "sym": "_close_block", "row": 0, "column": 4, @@ -11613,7 +11613,7 @@ "row": 0, "column": 1, "size": 3, - "lrState": 538, + "lrState": 554, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11630,7 +11630,7 @@ "name": "Q-2-22/simple-14" }, { - "state": 527, + "state": 546, "sym": "_close_block", "row": 0, "column": 5, @@ -11643,7 +11643,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 527, + "lrState": 546, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11660,7 +11660,7 @@ "name": "Q-2-22/simple-15" }, { - "state": 521, + "state": 541, "sym": "_close_block", "row": 0, "column": 5, @@ -11673,7 +11673,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 521, + "lrState": 541, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11690,7 +11690,7 @@ "name": "Q-2-22/simple-16" }, { - "state": 582, + "state": 518, "sym": "_close_block", "row": 0, "column": 5, @@ -11703,7 +11703,7 @@ "row": 0, "column": 2, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11733,7 +11733,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11763,7 +11763,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11793,7 +11793,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11823,7 +11823,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11853,7 +11853,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11883,7 +11883,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11913,7 +11913,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11943,7 +11943,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -11973,7 +11973,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12003,7 +12003,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12033,7 +12033,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12063,7 +12063,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12093,7 +12093,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12123,7 +12123,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12153,7 +12153,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12183,7 +12183,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12213,7 +12213,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12243,7 +12243,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12273,7 +12273,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12303,7 +12303,7 @@ "row": 0, "column": 0, "size": 3, - "lrState": 582, + "lrState": 518, "sym": "highlight_delimiter", "label": "highlight-start" } @@ -12950,7 +12950,7 @@ "name": "Q-2-24/simple" }, { - "state": 230, + "state": 205, "sym": "_close_block", "row": 0, "column": 2, @@ -12963,7 +12963,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -12980,7 +12980,7 @@ "name": "Q-2-25/simple" }, { - "state": 230, + "state": 205, "sym": "_close_block", "row": 0, "column": 2, @@ -12993,7 +12993,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13010,7 +13010,7 @@ "name": "Q-2-25/simple-1" }, { - "state": 224, + "state": 329, "sym": "_close_block", "row": 0, "column": 3, @@ -13023,7 +13023,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 224, + "lrState": 329, "sym": "![", "label": "image-start" } @@ -13040,7 +13040,7 @@ "name": "Q-2-25/simple-2" }, { - "state": 222, + "state": 327, "sym": "_close_block", "row": 0, "column": 3, @@ -13053,7 +13053,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 222, + "lrState": 327, "sym": "![", "label": "image-start" } @@ -13070,7 +13070,7 @@ "name": "Q-2-25/simple-3" }, { - "state": 218, + "state": 323, "sym": "_close_block", "row": 0, "column": 4, @@ -13083,7 +13083,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 218, + "lrState": 323, "sym": "![", "label": "image-start" } @@ -13100,7 +13100,7 @@ "name": "Q-2-25/simple-4" }, { - "state": 224, + "state": 329, "sym": "_close_block", "row": 0, "column": 4, @@ -13113,7 +13113,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 224, + "lrState": 329, "sym": "![", "label": "image-start" } @@ -13130,7 +13130,7 @@ "name": "Q-2-25/simple-5" }, { - "state": 202, + "state": 290, "sym": "_close_block", "row": 0, "column": 5, @@ -13143,7 +13143,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 202, + "lrState": 290, "sym": "![", "label": "image-start" } @@ -13160,7 +13160,7 @@ "name": "Q-2-25/simple-6" }, { - "state": 202, + "state": 290, "sym": "_close_block", "row": 0, "column": 5, @@ -13173,7 +13173,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 202, + "lrState": 290, "sym": "![", "label": "image-start" } @@ -13190,7 +13190,7 @@ "name": "Q-2-25/simple-7" }, { - "state": 202, + "state": 290, "sym": "_close_block", "row": 0, "column": 5, @@ -13203,7 +13203,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 202, + "lrState": 290, "sym": "![", "label": "image-start" } @@ -13220,7 +13220,7 @@ "name": "Q-2-25/simple-8" }, { - "state": 202, + "state": 290, "sym": "_close_block", "row": 0, "column": 5, @@ -13233,7 +13233,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 202, + "lrState": 290, "sym": "![", "label": "image-start" } @@ -13250,7 +13250,7 @@ "name": "Q-2-25/simple-9" }, { - "state": 212, + "state": 317, "sym": "_close_block", "row": 0, "column": 3, @@ -13263,7 +13263,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 212, + "lrState": 317, "sym": "![", "label": "image-start" } @@ -13280,7 +13280,7 @@ "name": "Q-2-25/simple-10" }, { - "state": 210, + "state": 315, "sym": "_close_block", "row": 0, "column": 3, @@ -13293,7 +13293,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 210, + "lrState": 315, "sym": "![", "label": "image-start" } @@ -13310,7 +13310,7 @@ "name": "Q-2-25/simple-11" }, { - "state": 208, + "state": 313, "sym": "_close_block", "row": 0, "column": 4, @@ -13323,7 +13323,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 208, + "lrState": 313, "sym": "![", "label": "image-start" } @@ -13340,7 +13340,7 @@ "name": "Q-2-25/simple-12" }, { - "state": 204, + "state": 309, "sym": "_close_block", "row": 0, "column": 3, @@ -13353,7 +13353,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 204, + "lrState": 309, "sym": "![", "label": "image-start" } @@ -13370,7 +13370,7 @@ "name": "Q-2-25/simple-13" }, { - "state": 206, + "state": 311, "sym": "_close_block", "row": 0, "column": 3, @@ -13383,7 +13383,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 206, + "lrState": 311, "sym": "![", "label": "image-start" } @@ -13400,7 +13400,7 @@ "name": "Q-2-25/simple-14" }, { - "state": 220, + "state": 325, "sym": "_close_block", "row": 0, "column": 3, @@ -13413,7 +13413,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 220, + "lrState": 325, "sym": "![", "label": "image-start" } @@ -13430,7 +13430,7 @@ "name": "Q-2-25/simple-15" }, { - "state": 216, + "state": 321, "sym": "_close_block", "row": 0, "column": 4, @@ -13443,7 +13443,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 216, + "lrState": 321, "sym": "![", "label": "image-start" } @@ -13460,7 +13460,7 @@ "name": "Q-2-25/simple-16" }, { - "state": 214, + "state": 319, "sym": "_close_block", "row": 0, "column": 4, @@ -13473,7 +13473,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 214, + "lrState": 319, "sym": "![", "label": "image-start" } @@ -13490,7 +13490,7 @@ "name": "Q-2-25/simple-17" }, { - "state": 230, + "state": 205, "sym": "_close_block", "row": 0, "column": 4, @@ -13503,7 +13503,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13533,7 +13533,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13563,7 +13563,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13593,7 +13593,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13623,7 +13623,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13653,7 +13653,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13683,7 +13683,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13713,7 +13713,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13743,7 +13743,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13773,7 +13773,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13803,7 +13803,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13833,7 +13833,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13863,7 +13863,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13893,7 +13893,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13923,7 +13923,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13953,7 +13953,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -13983,7 +13983,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -14013,7 +14013,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -14043,7 +14043,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -14073,7 +14073,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -14103,7 +14103,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 230, + "lrState": 205, "sym": "![", "label": "image-start" } @@ -14120,7 +14120,7 @@ "name": "Q-2-25/simple-38" }, { - "state": 600, + "state": 593, "sym": "_close_block", "row": 0, "column": 2, @@ -14133,7 +14133,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14150,7 +14150,7 @@ "name": "Q-2-26/simple" }, { - "state": 600, + "state": 593, "sym": "_close_block", "row": 0, "column": 2, @@ -14163,7 +14163,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14180,7 +14180,7 @@ "name": "Q-2-26/simple-1" }, { - "state": 611, + "state": 610, "sym": "_close_block", "row": 0, "column": 3, @@ -14193,7 +14193,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 611, + "lrState": 610, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14210,7 +14210,7 @@ "name": "Q-2-26/simple-2" }, { - "state": 610, + "state": 609, "sym": "_close_block", "row": 0, "column": 3, @@ -14223,7 +14223,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 610, + "lrState": 609, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14240,7 +14240,7 @@ "name": "Q-2-26/simple-3" }, { - "state": 608, + "state": 607, "sym": "_close_block", "row": 0, "column": 4, @@ -14253,7 +14253,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 608, + "lrState": 607, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14270,7 +14270,7 @@ "name": "Q-2-26/simple-4" }, { - "state": 611, + "state": 610, "sym": "_close_block", "row": 0, "column": 4, @@ -14283,7 +14283,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 611, + "lrState": 610, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14300,7 +14300,7 @@ "name": "Q-2-26/simple-5" }, { - "state": 598, + "state": 599, "sym": "_close_block", "row": 0, "column": 5, @@ -14313,7 +14313,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 598, + "lrState": 599, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14330,7 +14330,7 @@ "name": "Q-2-26/simple-6" }, { - "state": 598, + "state": 599, "sym": "_close_block", "row": 0, "column": 5, @@ -14343,7 +14343,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 598, + "lrState": 599, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14360,7 +14360,7 @@ "name": "Q-2-26/simple-7" }, { - "state": 598, + "state": 599, "sym": "_close_block", "row": 0, "column": 5, @@ -14373,7 +14373,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 598, + "lrState": 599, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14390,7 +14390,7 @@ "name": "Q-2-26/simple-8" }, { - "state": 598, + "state": 599, "sym": "_close_block", "row": 0, "column": 5, @@ -14403,7 +14403,7 @@ "row": 0, "column": 3, "size": 2, - "lrState": 598, + "lrState": 599, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14420,7 +14420,7 @@ "name": "Q-2-26/simple-9" }, { - "state": 604, + "state": 603, "sym": "_close_block", "row": 0, "column": 3, @@ -14433,7 +14433,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 604, + "lrState": 603, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14450,7 +14450,7 @@ "name": "Q-2-26/simple-10" }, { - "state": 603, + "state": 583, "sym": "_close_block", "row": 0, "column": 4, @@ -14463,7 +14463,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 603, + "lrState": 583, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14540,7 +14540,7 @@ "name": "Q-2-26/simple-13" }, { - "state": 609, + "state": 608, "sym": "_close_block", "row": 0, "column": 3, @@ -14553,7 +14553,7 @@ "row": 0, "column": 1, "size": 2, - "lrState": 609, + "lrState": 608, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14570,7 +14570,7 @@ "name": "Q-2-26/simple-14" }, { - "state": 607, + "state": 606, "sym": "_close_block", "row": 0, "column": 4, @@ -14583,7 +14583,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 607, + "lrState": 606, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14600,7 +14600,7 @@ "name": "Q-2-26/simple-15" }, { - "state": 606, + "state": 605, "sym": "_close_block", "row": 0, "column": 4, @@ -14613,7 +14613,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 606, + "lrState": 605, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14630,7 +14630,7 @@ "name": "Q-2-26/simple-16" }, { - "state": 600, + "state": 593, "sym": "_close_block", "row": 0, "column": 4, @@ -14643,7 +14643,7 @@ "row": 0, "column": 2, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14673,7 +14673,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14703,7 +14703,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14733,7 +14733,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14763,7 +14763,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14793,7 +14793,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14823,7 +14823,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14853,7 +14853,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14883,7 +14883,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14913,7 +14913,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14943,7 +14943,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -14973,7 +14973,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15003,7 +15003,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15033,7 +15033,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15063,7 +15063,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15093,7 +15093,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15123,7 +15123,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15153,7 +15153,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15183,7 +15183,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15213,7 +15213,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -15243,7 +15243,7 @@ "row": 0, "column": 0, "size": 2, - "lrState": 600, + "lrState": 593, "sym": "inline_note_delimiter", "label": "footnote-start" } @@ -17671,7 +17671,7 @@ "row": 0, "column": 10, "size": 2, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17701,7 +17701,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 904, + "lrState": 903, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17718,7 +17718,7 @@ "name": "Q-2-5/in-link" }, { - "state": 835, + "state": 791, "sym": "_close_block", "row": 0, "column": 1, @@ -17731,7 +17731,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17748,7 +17748,7 @@ "name": "Q-2-5/at-start" }, { - "state": 835, + "state": 791, "sym": "_close_block", "row": 0, "column": 1, @@ -17761,7 +17761,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17778,7 +17778,7 @@ "name": "Q-2-5/at-start-1" }, { - "state": 904, + "state": 903, "sym": "_close_block", "row": 0, "column": 2, @@ -17791,7 +17791,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 904, + "lrState": 903, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17808,7 +17808,7 @@ "name": "Q-2-5/at-start-2" }, { - "state": 904, + "state": 903, "sym": "_close_block", "row": 0, "column": 3, @@ -17821,7 +17821,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 904, + "lrState": 903, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17838,7 +17838,7 @@ "name": "Q-2-5/at-start-3" }, { - "state": 810, + "state": 807, "sym": "_close_block", "row": 0, "column": 4, @@ -17851,7 +17851,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 810, + "lrState": 807, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17868,7 +17868,7 @@ "name": "Q-2-5/at-start-4" }, { - "state": 856, + "state": 852, "sym": "_close_block", "row": 0, "column": 2, @@ -17881,7 +17881,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 856, + "lrState": 852, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17898,7 +17898,7 @@ "name": "Q-2-5/at-start-5" }, { - "state": 847, + "state": 844, "sym": "_close_block", "row": 0, "column": 2, @@ -17911,7 +17911,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 847, + "lrState": 844, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17928,7 +17928,7 @@ "name": "Q-2-5/at-start-6" }, { - "state": 839, + "state": 836, "sym": "_close_block", "row": 0, "column": 3, @@ -17941,7 +17941,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 839, + "lrState": 836, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17958,7 +17958,7 @@ "name": "Q-2-5/at-start-7" }, { - "state": 822, + "state": 820, "sym": "_close_block", "row": 0, "column": 2, @@ -17971,7 +17971,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 822, + "lrState": 820, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -17988,7 +17988,7 @@ "name": "Q-2-5/at-start-8" }, { - "state": 830, + "state": 828, "sym": "_close_block", "row": 0, "column": 2, @@ -18001,7 +18001,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 830, + "lrState": 828, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18018,7 +18018,7 @@ "name": "Q-2-5/at-start-9" }, { - "state": 888, + "state": 886, "sym": "_close_block", "row": 0, "column": 2, @@ -18031,7 +18031,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 888, + "lrState": 886, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18048,7 +18048,7 @@ "name": "Q-2-5/at-start-10" }, { - "state": 872, + "state": 869, "sym": "_close_block", "row": 0, "column": 3, @@ -18061,7 +18061,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 872, + "lrState": 869, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18078,7 +18078,7 @@ "name": "Q-2-5/at-start-11" }, { - "state": 864, + "state": 860, "sym": "_close_block", "row": 0, "column": 3, @@ -18091,7 +18091,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 864, + "lrState": 860, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18108,7 +18108,7 @@ "name": "Q-2-5/at-start-12" }, { - "state": 835, + "state": 791, "sym": "_close_block", "row": 0, "column": 3, @@ -18121,7 +18121,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18151,7 +18151,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18181,7 +18181,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18211,7 +18211,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18241,7 +18241,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18271,7 +18271,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18301,7 +18301,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18331,7 +18331,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18361,7 +18361,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18391,7 +18391,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18421,7 +18421,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18451,7 +18451,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18481,7 +18481,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18511,7 +18511,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18541,7 +18541,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18571,7 +18571,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18601,7 +18601,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18631,7 +18631,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18661,7 +18661,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 835, + "lrState": 791, "sym": "emphasis_delimiter", "label": "emphasis-start" } @@ -18678,7 +18678,7 @@ "name": "Q-2-5/at-start-31" }, { - "state": 746, + "state": 769, "sym": "_close_block", "row": 0, "column": 1, @@ -18691,7 +18691,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -18709,7 +18709,7 @@ "name": "Q-2-7/simple" }, { - "state": 746, + "state": 769, "sym": "_close_block", "row": 0, "column": 1, @@ -18722,7 +18722,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -18740,7 +18740,7 @@ "name": "Q-2-7/simple-1" }, { - "state": 739, + "state": 736, "sym": "_close_block", "row": 0, "column": 2, @@ -18753,7 +18753,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 739, + "lrState": 736, "sym": "single_quote", "label": "quote-start" } @@ -18771,7 +18771,7 @@ "name": "Q-2-7/simple-2" }, { - "state": 726, + "state": 689, "sym": "_close_block", "row": 0, "column": 2, @@ -18784,7 +18784,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 726, + "lrState": 689, "sym": "single_quote", "label": "quote-start" } @@ -18833,7 +18833,7 @@ "name": "Q-2-7/simple-4" }, { - "state": 739, + "state": 736, "sym": "_close_block", "row": 0, "column": 3, @@ -18846,7 +18846,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 739, + "lrState": 736, "sym": "single_quote", "label": "quote-start" } @@ -18864,7 +18864,7 @@ "name": "Q-2-7/simple-5" }, { - "state": 761, + "state": 765, "sym": "_close_block", "row": 0, "column": 4, @@ -18877,7 +18877,7 @@ "row": 0, "column": 3, "size": 1, - "lrState": 761, + "lrState": 765, "sym": "single_quote", "label": "quote-start" } @@ -18895,7 +18895,7 @@ "name": "Q-2-7/simple-6" }, { - "state": 757, + "state": 767, "sym": "_close_block", "row": 0, "column": 2, @@ -18908,7 +18908,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 757, + "lrState": 767, "sym": "single_quote", "label": "quote-start" } @@ -18926,7 +18926,7 @@ "name": "Q-2-7/simple-7" }, { - "state": 715, + "state": 746, "sym": "_close_block", "row": 0, "column": 2, @@ -18939,7 +18939,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 715, + "lrState": 746, "sym": "single_quote", "label": "quote-start" } @@ -18957,7 +18957,7 @@ "name": "Q-2-7/simple-8" }, { - "state": 778, + "state": 725, "sym": "_close_block", "row": 0, "column": 3, @@ -18970,7 +18970,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 778, + "lrState": 725, "sym": "single_quote", "label": "quote-start" } @@ -18988,7 +18988,7 @@ "name": "Q-2-7/simple-9" }, { - "state": 712, + "state": 701, "sym": "_close_block", "row": 0, "column": 2, @@ -19001,7 +19001,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 712, + "lrState": 701, "sym": "single_quote", "label": "quote-start" } @@ -19019,7 +19019,7 @@ "name": "Q-2-7/simple-10" }, { - "state": 713, + "state": 714, "sym": "_close_block", "row": 0, "column": 2, @@ -19032,7 +19032,7 @@ "row": 0, "column": 1, "size": 1, - "lrState": 713, + "lrState": 714, "sym": "single_quote", "label": "quote-start" } @@ -19050,7 +19050,7 @@ "name": "Q-2-7/simple-11" }, { - "state": 693, + "state": 692, "sym": "_close_block", "row": 0, "column": 3, @@ -19063,7 +19063,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 693, + "lrState": 692, "sym": "single_quote", "label": "quote-start" } @@ -19081,7 +19081,7 @@ "name": "Q-2-7/simple-12" }, { - "state": 776, + "state": 779, "sym": "_close_block", "row": 0, "column": 3, @@ -19094,7 +19094,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 776, + "lrState": 779, "sym": "single_quote", "label": "quote-start" } @@ -19112,7 +19112,7 @@ "name": "Q-2-7/simple-13" }, { - "state": 746, + "state": 769, "sym": "_close_block", "row": 0, "column": 3, @@ -19125,7 +19125,7 @@ "row": 0, "column": 2, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19156,7 +19156,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19187,7 +19187,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19218,7 +19218,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19249,7 +19249,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19280,7 +19280,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19311,7 +19311,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19342,7 +19342,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19373,7 +19373,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19404,7 +19404,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19435,7 +19435,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19466,7 +19466,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19497,7 +19497,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19528,7 +19528,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19559,7 +19559,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19590,7 +19590,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19621,7 +19621,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19652,7 +19652,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19683,7 +19683,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } @@ -19714,7 +19714,7 @@ "row": 0, "column": 0, "size": 1, - "lrState": 746, + "lrState": 769, "sym": "single_quote", "label": "quote-start" } diff --git a/crates/pampa/src/pandoc/treesitter.rs b/crates/pampa/src/pandoc/treesitter.rs index b75d9dacf..6db30678f 100644 --- a/crates/pampa/src/pandoc/treesitter.rs +++ b/crates/pampa/src/pandoc/treesitter.rs @@ -1057,6 +1057,119 @@ fn native_visitor( "pipe_table_cell" => process_pipe_table_cell(node, children, context), "caption" => process_caption(node, children, context), "pipe_table" => process_pipe_table(node, children, context), + "grid_table" => { + use crate::pandoc::location::{SourceInfoOptions, node_source_info_with_options}; + + let raw_text = node.utf8_text(input_bytes).unwrap(); + let input_str = std::str::from_utf8(input_bytes).unwrap_or(""); + let file_id = context.current_file_id(); + + // Layered Ariadne rendering: + // 1. Multi-line main label spans the whole grid table to + // provide the `╭─▶ … ╰─` corner decoration and red + // highlighting on the table content. + // 2. For every line *after* the opening border that has a + // block-quote prefix (`>`/`> >` etc.), a high-priority + // faded label covers just that prefix range. Ariadne + // picks the shortest covering label per column, so the + // faded label wins on prefix columns and overrides the + // multi-line label's red with the dim grey it uses for + // unlabelled text. + // 3. For interior body lines (lines that aren't the open or + // close), an empty-message detail label spanning the + // table content forces Ariadne to display the line — + // otherwise the multi-line label's middle would be + // elided to a single `┆` row. + let node_start = node.start_byte(); + let node_end = node.end_byte(); + let lines: Vec<&str> = raw_text.split('\n').collect(); + let nonempty_count = lines.iter().filter(|s| !s.is_empty()).count(); + + let mut faded_prefixes: Vec = Vec::new(); + let mut interior_contents: Vec = Vec::new(); + + let mut offset_in_node = 0usize; + let mut nonempty_idx = 0usize; + for line in &lines { + let line_global_start = node_start + offset_in_node; + offset_in_node += line.len() + 1; + if line.is_empty() { + continue; + } + let is_first = nonempty_idx == 0; + let is_last = nonempty_idx + 1 == nonempty_count; + nonempty_idx += 1; + + let content_offset = line.find(['+', '|']).unwrap_or(line.len()); + + // Faded label for the leading `>` prefix, but only when + // the multi-line main label actually covers it. On the + // opening line the main label starts at the first `+`, + // so the prefix is already outside every label. + if !is_first && content_offset > 0 { + let prefix_start = line_global_start; + let prefix_end = line_global_start + content_offset; + if prefix_start >= node_start + && prefix_end <= node_end + && let (Some(start_loc), Some(end_loc)) = ( + quarto_source_map::utils::offset_to_location(input_str, prefix_start), + quarto_source_map::utils::offset_to_location(input_str, prefix_end), + ) + { + faded_prefixes.push(quarto_source_map::SourceInfo::from_range( + file_id, + quarto_source_map::Range { + start: start_loc, + end: end_loc, + }, + )); + } + } + + // Force interior lines to display by attaching a label. + // The opening line has the multi-line label's start margin + // and the closing line has its end margin, so neither + // needs an extra label. + if !is_first && !is_last { + let content_start = line_global_start + content_offset; + let content_end = line_global_start + line.len(); + if let (Some(start_loc), Some(end_loc)) = ( + quarto_source_map::utils::offset_to_location(input_str, content_start), + quarto_source_map::utils::offset_to_location(input_str, content_end), + ) { + interior_contents.push(quarto_source_map::SourceInfo::from_range( + file_id, + quarto_source_map::Range { + start: start_loc, + end: end_loc, + }, + )); + } + } + } + + let main_loc = + node_source_info_with_options(node, context, &SourceInfoOptions::trim_all()); + + let mut builder = DiagnosticMessageBuilder::error("Grid tables are not supported") + .with_code("Q-2-36") + .with_location(main_loc) + .problem("Grid tables aren't supported. Use a pipe table instead."); + for prefix_loc in &faded_prefixes { + builder = builder.add_faded_at("", prefix_loc.clone()); + } + for content_loc in &interior_contents { + builder = builder.add_detail_at("", content_loc.clone()); + } + let msg = builder.build(); + error_collector.add(msg); + + PandocNativeIntermediate::IntermediateBlock(Block::RawBlock(RawBlock { + format: "qmd-grid-table".to_string(), + text: raw_text.to_string(), + source_info: node_source_info_with_context(node, context), + })) + } "comment" => { // HTML comments () are preserved as RawInline(html) // so they survive round-tripping through the AST and are not lost diff --git a/crates/pampa/tests/test_grid_table_error.rs b/crates/pampa/tests/test_grid_table_error.rs new file mode 100644 index 000000000..ed1e4d2a4 --- /dev/null +++ b/crates/pampa/tests/test_grid_table_error.rs @@ -0,0 +1,146 @@ +use pampa::readers; +use quarto_error_reporting::DiagnosticKind; + +fn parse_and_get_diagnostics(input: &str) -> Vec { + let result = readers::qmd::read( + input.as_bytes(), + false, + "test.qmd", + &mut std::io::sink(), + true, + None, + ); + + match result { + Ok((_, _, diagnostics)) => diagnostics, + Err(diagnostics) => diagnostics, + } +} + +/// Reconstruct the captured grid-table text from the diagnostic. The +/// diagnostic anchors on the first line (so Ariadne renders a clean +/// single-line main label) and uses per-line `note_at` details for the +/// remaining lines (so every body line shows in the snippet instead of +/// being elided to `┆`). To recover the full table, we union the main +/// location with all detail locations and slice the input accordingly. +fn captured_text<'a>( + diag: &quarto_error_reporting::DiagnosticMessage, + full_input: &'a str, +) -> &'a str { + let main = diag + .location + .as_ref() + .expect("grid_table diagnostic must carry a source location"); + let mut start = main.start_offset(); + let mut end = main.end_offset(); + for detail in &diag.details { + if let Some(loc) = &detail.location { + start = start.min(loc.start_offset()); + end = end.max(loc.end_offset()); + } + } + &full_input[start..end] +} + +fn assert_grid_table_diagnostic( + diagnostics: &[quarto_error_reporting::DiagnosticMessage], + expected_capture: &str, + full_input: &str, +) { + let grid = diagnostics + .iter() + .find(|d| d.code.as_deref() == Some("Q-2-36")) + .unwrap_or_else(|| { + panic!( + "no Q-2-36 diagnostic found. all diagnostics: {:?}", + diagnostics + .iter() + .map(|d| (d.code.clone(), d.title.clone(), d.kind)) + .collect::>() + ) + }); + + assert_eq!( + grid.kind, + DiagnosticKind::Error, + "grid_table diagnostic must be an error, got {:?}", + grid.kind + ); + + let captured = captured_text(grid, full_input); + assert_eq!( + captured.trim_end(), + expected_capture.trim_end(), + "captured text {captured:?} does not match expected {expected_capture:?}" + ); +} + +#[test] +fn plain_grid_table_emits_q_2_36_with_full_text() { + let input = "+----+\n| oh |\n+----+\n"; + let diagnostics = parse_and_get_diagnostics(input); + assert_grid_table_diagnostic(&diagnostics, "+----+\n| oh |\n+----+", input); +} + +#[test] +fn grid_table_inside_block_quote_emits_q_2_36() { + let input = "> +----+\n> | oh |\n> +----+\n"; + let diagnostics = parse_and_get_diagnostics(input); + let grid = diagnostics + .iter() + .find(|d| d.code.as_deref() == Some("Q-2-36")) + .expect("expected Q-2-36 diagnostic for grid table inside block quote"); + assert_eq!(grid.kind, DiagnosticKind::Error); + + let captured = captured_text(grid, input); + assert!( + captured.contains("+----+") && captured.contains("| oh |"), + "captured grid-table text {captured:?} should contain both border and body lines" + ); +} + +#[test] +fn nested_block_quotes_with_two_grid_tables_emit_two_q_2_36() { + let input = "> > +----+\n> > | oh |\n> > +----+\n> | pipe-table-now |\n> |-|\n> | no |\n> > +----+\n> > | no |\n> > +----+\n"; + let diagnostics = parse_and_get_diagnostics(input); + let grid_diagnostics: Vec<_> = diagnostics + .iter() + .filter(|d| d.code.as_deref() == Some("Q-2-36")) + .collect(); + assert_eq!( + grid_diagnostics.len(), + 2, + "expected exactly two Q-2-36 diagnostics (one per nested grid table), got {}", + grid_diagnostics.len() + ); + + for grid in &grid_diagnostics { + assert_eq!(grid.kind, DiagnosticKind::Error); + let captured = captured_text(grid, input); + assert!( + captured.contains("+----+"), + "captured text {captured:?} should contain a grid-table border" + ); + } +} + +#[test] +fn lone_border_line_does_not_emit_grid_table_diagnostic() { + // A single "+----+" line is just a paragraph string and should not trip the + // grid-table detector. + let input = "+----+\n"; + let diagnostics = parse_and_get_diagnostics(input); + assert!( + !diagnostics + .iter() + .any(|d| d.code.as_deref() == Some("Q-2-36")), + "lone border line should not be flagged as a grid table" + ); +} + +#[test] +fn grid_table_with_equals_separator_emits_q_2_36() { + let input = "+====+\n| oh |\n+----+\n"; + let diagnostics = parse_and_get_diagnostics(input); + assert_grid_table_diagnostic(&diagnostics, "+====+\n| oh |\n+----+", input); +} diff --git a/crates/quarto-error-reporting/error_catalog.json b/crates/quarto-error-reporting/error_catalog.json index 87b4d353e..c4cf31a88 100644 --- a/crates/quarto-error-reporting/error_catalog.json +++ b/crates/quarto-error-reporting/error_catalog.json @@ -405,6 +405,13 @@ "docs_url": "https://quarto.org/docs/errors/Q-2-35", "since_version": "99.9.9" }, + "Q-2-36": { + "subsystem": "markdown", + "title": "Grid tables are not supported", + "message_template": "Grid tables aren't supported. Use a pipe table instead.", + "docs_url": "https://quarto.org/docs/errors/Q-2-36", + "since_version": "99.9.9" + }, "Q-3-1": { "subsystem": "writer", diff --git a/crates/quarto-error-reporting/src/builder.rs b/crates/quarto-error-reporting/src/builder.rs index bbb280835..b276ea40f 100644 --- a/crates/quarto-error-reporting/src/builder.rs +++ b/crates/quarto-error-reporting/src/builder.rs @@ -360,6 +360,26 @@ impl DiagnosticMessageBuilder { self } + /// Add a faded detail with a source location. + /// + /// Rendered with the same dim grey colour Ariadne uses for unlabelled + /// source characters, so it visually "punches a hole" in any wider + /// label that also covers the same column range. Useful for excluding + /// block-quote prefixes or other prefix decorations from the highlight + /// of a multi-line span. + pub fn add_faded_at( + mut self, + content: impl Into, + location: quarto_source_map::SourceInfo, + ) -> Self { + self.details.push(DetailItem { + kind: DetailKind::Faded, + content: content.into(), + location: Some(location), + }); + self + } + /// Add a hint for fixing the error. /// /// Following tidyverse guidelines, hints should: diff --git a/crates/quarto-error-reporting/src/diagnostic.rs b/crates/quarto-error-reporting/src/diagnostic.rs index 1438a0900..8ffb35a1b 100644 --- a/crates/quarto-error-reporting/src/diagnostic.rs +++ b/crates/quarto-error-reporting/src/diagnostic.rs @@ -27,6 +27,13 @@ pub enum DetailKind { Info, /// Note detail (plain bullet) Note, + /// Faded detail — rendered in Ariadne with the same dim grey colour + /// Ariadne uses for source characters outside any label. Use it to + /// attach a high-priority label to a column range you want to + /// *exclude* from a wider label's highlighting (e.g. a block-quote + /// prefix inside a multi-line span). Treated the same as `Note` in + /// tidyverse-style text output. + Faded, } /// Options for rendering diagnostic messages to text. @@ -427,7 +434,7 @@ impl DiagnosticMessage { let bullet = match detail.kind { DetailKind::Error => "✖", DetailKind::Info => "ℹ", - DetailKind::Note => "•", + DetailKind::Note | DetailKind::Faded => "•", }; writeln!(result, "{} {}", bullet, detail.content.as_str()).unwrap(); } @@ -446,7 +453,7 @@ impl DiagnosticMessage { let bullet = match detail.kind { DetailKind::Error => "✖", DetailKind::Info => "ℹ", - DetailKind::Note => "•", + DetailKind::Note | DetailKind::Faded => "•", }; writeln!(result, "{} {}", bullet, detail.content.as_str()).unwrap(); } @@ -518,6 +525,7 @@ impl DiagnosticMessage { DetailKind::Error => "error", DetailKind::Info => "info", DetailKind::Note => "note", + DetailKind::Faded => "faded", }; let mut detail_obj = json!({ "kind": detail_kind, @@ -655,6 +663,13 @@ impl DiagnosticMessage { ) -> Option { use ariadne::{Color, Config, IndexType, Label, Report, ReportKind, Source}; + // Mirror of ariadne's private `Config::unimportant_color()` from + // ariadne 0.6.0 (`src/lib.rs:543`). We use this for `DetailKind::Faded` + // labels so they blend visually with characters that fall outside any + // label. Bump this constant if the ariadne dependency upgrades and + // changes the colour. + const ARIADNE_UNIMPORTANT_COLOR: Color = Color::Fixed(249); + // Extract file_id from the source mapping by traversing the chain let file_id = Self::extract_file_id(main_location)?; @@ -736,10 +751,19 @@ impl DiagnosticMessage { &self.title }; + // Set `with_order` on every label using its end offset. Ariadne + // groups labels by source and starts a new group whenever a label's + // end line is *before* the previous label's end line. Without an + // explicit order, multi-line main labels and per-line "padding" + // detail labels (used to defeat Ariadne's middle-line elision) end + // up in separate groups, producing a duplicated snippet block. + // Sorting by end offset puts the smaller-line labels first so the + // grouping algorithm extends rather than splits. report = report.with_label( - Label::new((display_path.clone(), main_span)) + Label::new((display_path.clone(), main_span.clone())) .with_message(main_message) - .with_color(main_color), + .with_color(main_color) + .with_order(main_span.end as i32), ); // Add detail locations as additional labels (only those with locations) @@ -763,13 +787,25 @@ impl DiagnosticMessage { DetailKind::Error => Color::Red, DetailKind::Info => Color::Cyan, DetailKind::Note => Color::Blue, + // Match Ariadne's unimportant colour so faded + // labels visually disappear into the surrounding + // unlabelled text. + DetailKind::Faded => ARIADNE_UNIMPORTANT_COLOR, }; - report = report.with_label( - Label::new((display_path.clone(), detail_span)) - .with_message(detail.content.as_str()) - .with_color(detail_color), - ); + // Empty-content details exist purely to force Ariadne + // to display a line that would otherwise be elided + // inside a multi-line span. Leaving the label's + // message at None makes Ariadne skip drawing the + // `╰── ...` arrow row underneath, so the source line + // appears clean. + let mut label = Label::new((display_path.clone(), detail_span.clone())) + .with_color(detail_color) + .with_order(detail_span.end as i32); + if !detail.content.as_str().is_empty() { + label = label.with_message(detail.content.as_str()); + } + report = report.with_label(label); } } } diff --git a/crates/quarto-lsp-core/src/types.rs b/crates/quarto-lsp-core/src/types.rs index cebb444b3..ebd08b6eb 100644 --- a/crates/quarto-lsp-core/src/types.rs +++ b/crates/quarto-lsp-core/src/types.rs @@ -481,7 +481,8 @@ impl From for DetailKind { match kind { quarto_error_reporting::DetailKind::Error => Self::Error, quarto_error_reporting::DetailKind::Info => Self::Info, - quarto_error_reporting::DetailKind::Note => Self::Note, + quarto_error_reporting::DetailKind::Note + | quarto_error_reporting::DetailKind::Faded => Self::Note, } } } diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index e5e4fb407..116a2abbd 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -122,6 +122,7 @@ module.exports = grammar({ $.pandoc_div, $.pandoc_horizontal_rule, $.pipe_table, + $.grid_table, $.caption, prec(-1, alias($.minus_metadata, $.metadata)), @@ -1050,6 +1051,14 @@ module.exports = grammar({ // workaround `**_foo_**`. Emission site: scanner.c, EMIT_TOKEN(TRIPLE_STAR). // See CONTRIBUTING.md "Known limitations" for the full list. $._triple_star_error, + + // KNOWN LIMITATION: QMD does not support Pandoc-style grid tables. + // The scanner emits a single multi-line GRID_TABLE token that spans + // the entire grid table (block-quote prefixes stripped) so pampa + // can surface a structured diagnostic carrying the captured text. + // Emission site: scanner.c, EMIT_TOKEN(GRID_TABLE) via + // parse_grid_table_after_first_plus(). + $.grid_table, ], precedences: $ => [], extras: $ => [], diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json index 12118b531..bf0c006e1 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -94,6 +94,10 @@ "type": "SYMBOL", "name": "pipe_table" }, + { + "type": "SYMBOL", + "name": "grid_table" + }, { "type": "SYMBOL", "name": "caption" @@ -5064,6 +5068,10 @@ { "type": "SYMBOL", "name": "_triple_star_error" + }, + { + "type": "SYMBOL", + "name": "grid_table" } ], "inline": [], diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json index e3b4a5eaf..32be7de11 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 @@ -911,6 +911,10 @@ "type": "caption", "named": true }, + { + "type": "grid_table", + "named": true + }, { "type": "inline_ref_def", "named": true @@ -1032,6 +1036,10 @@ "type": "fenced_div_note_id", "named": true }, + { + "type": "grid_table", + "named": true + }, { "type": "inline_ref_def", "named": true @@ -1099,6 +1107,10 @@ "type": "caption", "named": true }, + { + "type": "grid_table", + "named": true + }, { "type": "inline_ref_def", "named": true @@ -1225,6 +1237,10 @@ "type": "caption", "named": true }, + { + "type": "grid_table", + "named": true + }, { "type": "info_string", "named": true @@ -2503,6 +2519,10 @@ "type": "caption", "named": true }, + { + "type": "grid_table", + "named": true + }, { "type": "inline_ref_def", "named": true @@ -2838,6 +2858,10 @@ "type": "fenced_div_note_id", "named": true }, + { + "type": "grid_table", + "named": true + }, { "type": "highlight_delimiter", "named": true diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c index c7fe708fc..5ede991b2 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -17,10 +17,10 @@ #define LANGUAGE_VERSION 15 #define STATE_COUNT 4223 #define LARGE_STATE_COUNT 583 -#define SYMBOL_COUNT 258 +#define SYMBOL_COUNT 259 #define ALIAS_COUNT 9 -#define TOKEN_COUNT 130 -#define EXTERNAL_TOKEN_COUNT 84 +#define TOKEN_COUNT 131 +#define EXTERNAL_TOKEN_COUNT 85 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -157,143 +157,144 @@ enum ts_symbol_identifiers { sym__pipe_table_delimiter = 127, sym__pandoc_line_break = 128, sym__triple_star_error = 129, - sym_document = 130, - sym__block = 131, - sym__block_not_section = 132, - sym_section = 133, - sym__section1 = 134, - sym__section2 = 135, - sym__section3 = 136, - sym__section4 = 137, - sym__section5 = 138, - sym__section6 = 139, - sym__atx_heading1 = 140, - sym__atx_heading2 = 141, - sym__atx_heading3 = 142, - sym__atx_heading4 = 143, - sym__atx_heading5 = 144, - sym__atx_heading6 = 145, - sym__atx_heading_content = 146, - sym_pandoc_horizontal_rule = 147, - sym_pandoc_paragraph = 148, - sym_inline_ref_def = 149, - sym_caption = 150, - sym_pipe_table = 151, - sym__pipe_table_newline = 152, - sym_pipe_table_delimiter_row = 153, - sym_pipe_table_delimiter_cell = 154, - sym_pipe_table_row = 155, - sym_pipe_table_cell = 156, - sym__inlines = 157, - sym_pandoc_span = 158, - sym_pandoc_image = 159, - sym_target = 160, - sym_pandoc_math = 161, - sym_pandoc_display_math = 162, - sym_pandoc_code_span = 163, - sym_pandoc_single_quote = 164, - sym_pandoc_double_quote = 165, - sym_insert = 166, - sym_delete = 167, - sym_edit_comment = 168, - sym_highlight = 169, - sym_attribute_specifier = 170, - sym__pandoc_attr_specifier = 171, - sym_unnumbered_specifier = 172, - sym_language_specifier = 173, - sym_commonmark_specifier = 174, - sym__commonmark_specifier_start_with_class = 175, - sym__commonmark_specifier_start_with_kv = 176, - sym__commonmark_key_value_specifier = 177, - sym__commonmark_single_quote_string = 178, - sym__commonmark_double_quote_string = 179, - sym__line = 180, - sym__line_with_maybe_spaces = 181, - sym__inline_element = 182, - sym__shortcode_sep = 183, - sym_shortcode_escaped = 184, - sym_shortcode = 185, - sym__shortcode_value = 186, - sym__shortcode_key_value_specifier = 187, - sym_shortcode_naked_string = 188, - sym_shortcode_string = 189, - sym_citation = 190, - sym_inline_note = 191, - sym_pandoc_superscript = 192, - sym_pandoc_subscript = 193, - sym_pandoc_strikeout = 194, - sym_pandoc_emph = 195, - sym_pandoc_strong = 196, - sym_pandoc_str = 197, - sym_pandoc_block_quote = 198, - sym_pandoc_list = 199, - sym__list_plus = 200, - sym__list_minus = 201, - sym__list_star = 202, - sym__list_dot = 203, - sym__list_parenthesis = 204, - sym__list_example = 205, - sym_list_marker_plus = 206, - sym_list_marker_minus = 207, - sym_list_marker_star = 208, - sym_list_marker_dot = 209, - sym_list_marker_parenthesis = 210, - sym_list_marker_example = 211, - sym__list_item_plus = 212, - sym__list_item_minus = 213, - sym__list_item_star = 214, - sym__list_item_dot = 215, - sym__list_item_parenthesis = 216, - sym__list_item_example = 217, - sym__list_item_content = 218, - sym_pandoc_code_block = 219, - sym_code_fence_content = 220, - sym_pandoc_div = 221, - sym_note_definition_fenced_block = 222, - sym__blank_line = 223, - sym__newline = 224, - sym__soft_line_break = 225, - sym__inline_whitespace = 226, - aux_sym_document_repeat1 = 227, - aux_sym_document_repeat2 = 228, - aux_sym__section1_repeat1 = 229, - aux_sym__section2_repeat1 = 230, - aux_sym__section3_repeat1 = 231, - aux_sym__section4_repeat1 = 232, - aux_sym__section5_repeat1 = 233, - aux_sym_pipe_table_repeat1 = 234, - aux_sym_pipe_table_delimiter_row_repeat1 = 235, - aux_sym_pipe_table_delimiter_cell_repeat1 = 236, - aux_sym_pipe_table_row_repeat1 = 237, - aux_sym__inlines_repeat1 = 238, - aux_sym_target_repeat1 = 239, - aux_sym_pandoc_code_span_repeat1 = 240, - aux_sym__commonmark_specifier_start_with_class_repeat1 = 241, - aux_sym__commonmark_specifier_start_with_kv_repeat1 = 242, - aux_sym__commonmark_single_quote_string_repeat1 = 243, - aux_sym__commonmark_double_quote_string_repeat1 = 244, - aux_sym__line_repeat1 = 245, - aux_sym__line_with_maybe_spaces_repeat1 = 246, - aux_sym_shortcode_escaped_repeat1 = 247, - aux_sym_shortcode_escaped_repeat2 = 248, - aux_sym_shortcode_repeat1 = 249, - aux_sym_pandoc_block_quote_repeat1 = 250, - aux_sym__list_plus_repeat1 = 251, - aux_sym__list_minus_repeat1 = 252, - aux_sym__list_star_repeat1 = 253, - aux_sym__list_dot_repeat1 = 254, - aux_sym__list_parenthesis_repeat1 = 255, - aux_sym__list_example_repeat1 = 256, - aux_sym_code_fence_content_repeat1 = 257, - alias_sym_citation_id_suppress_author = 258, - alias_sym_content = 259, - alias_sym_pandoc_soft_break = 260, - alias_sym_pandoc_space = 261, - alias_sym_pipe_table_align_left = 262, - alias_sym_pipe_table_align_right = 263, - alias_sym_pipe_table_header = 264, - alias_sym_title = 265, - alias_sym_url = 266, + sym_grid_table = 130, + sym_document = 131, + sym__block = 132, + sym__block_not_section = 133, + sym_section = 134, + sym__section1 = 135, + sym__section2 = 136, + sym__section3 = 137, + sym__section4 = 138, + sym__section5 = 139, + sym__section6 = 140, + sym__atx_heading1 = 141, + sym__atx_heading2 = 142, + sym__atx_heading3 = 143, + sym__atx_heading4 = 144, + sym__atx_heading5 = 145, + sym__atx_heading6 = 146, + sym__atx_heading_content = 147, + sym_pandoc_horizontal_rule = 148, + sym_pandoc_paragraph = 149, + sym_inline_ref_def = 150, + sym_caption = 151, + sym_pipe_table = 152, + sym__pipe_table_newline = 153, + sym_pipe_table_delimiter_row = 154, + sym_pipe_table_delimiter_cell = 155, + sym_pipe_table_row = 156, + sym_pipe_table_cell = 157, + sym__inlines = 158, + sym_pandoc_span = 159, + sym_pandoc_image = 160, + sym_target = 161, + sym_pandoc_math = 162, + sym_pandoc_display_math = 163, + sym_pandoc_code_span = 164, + sym_pandoc_single_quote = 165, + sym_pandoc_double_quote = 166, + sym_insert = 167, + sym_delete = 168, + sym_edit_comment = 169, + sym_highlight = 170, + sym_attribute_specifier = 171, + sym__pandoc_attr_specifier = 172, + sym_unnumbered_specifier = 173, + sym_language_specifier = 174, + sym_commonmark_specifier = 175, + sym__commonmark_specifier_start_with_class = 176, + sym__commonmark_specifier_start_with_kv = 177, + sym__commonmark_key_value_specifier = 178, + sym__commonmark_single_quote_string = 179, + sym__commonmark_double_quote_string = 180, + sym__line = 181, + sym__line_with_maybe_spaces = 182, + sym__inline_element = 183, + sym__shortcode_sep = 184, + sym_shortcode_escaped = 185, + sym_shortcode = 186, + sym__shortcode_value = 187, + sym__shortcode_key_value_specifier = 188, + sym_shortcode_naked_string = 189, + sym_shortcode_string = 190, + sym_citation = 191, + sym_inline_note = 192, + sym_pandoc_superscript = 193, + sym_pandoc_subscript = 194, + sym_pandoc_strikeout = 195, + sym_pandoc_emph = 196, + sym_pandoc_strong = 197, + sym_pandoc_str = 198, + sym_pandoc_block_quote = 199, + sym_pandoc_list = 200, + sym__list_plus = 201, + sym__list_minus = 202, + sym__list_star = 203, + sym__list_dot = 204, + sym__list_parenthesis = 205, + sym__list_example = 206, + sym_list_marker_plus = 207, + sym_list_marker_minus = 208, + sym_list_marker_star = 209, + sym_list_marker_dot = 210, + sym_list_marker_parenthesis = 211, + sym_list_marker_example = 212, + sym__list_item_plus = 213, + sym__list_item_minus = 214, + sym__list_item_star = 215, + sym__list_item_dot = 216, + sym__list_item_parenthesis = 217, + sym__list_item_example = 218, + sym__list_item_content = 219, + sym_pandoc_code_block = 220, + sym_code_fence_content = 221, + sym_pandoc_div = 222, + sym_note_definition_fenced_block = 223, + sym__blank_line = 224, + sym__newline = 225, + sym__soft_line_break = 226, + sym__inline_whitespace = 227, + aux_sym_document_repeat1 = 228, + aux_sym_document_repeat2 = 229, + aux_sym__section1_repeat1 = 230, + aux_sym__section2_repeat1 = 231, + aux_sym__section3_repeat1 = 232, + aux_sym__section4_repeat1 = 233, + aux_sym__section5_repeat1 = 234, + aux_sym_pipe_table_repeat1 = 235, + aux_sym_pipe_table_delimiter_row_repeat1 = 236, + aux_sym_pipe_table_delimiter_cell_repeat1 = 237, + aux_sym_pipe_table_row_repeat1 = 238, + aux_sym__inlines_repeat1 = 239, + aux_sym_target_repeat1 = 240, + aux_sym_pandoc_code_span_repeat1 = 241, + aux_sym__commonmark_specifier_start_with_class_repeat1 = 242, + aux_sym__commonmark_specifier_start_with_kv_repeat1 = 243, + aux_sym__commonmark_single_quote_string_repeat1 = 244, + aux_sym__commonmark_double_quote_string_repeat1 = 245, + aux_sym__line_repeat1 = 246, + aux_sym__line_with_maybe_spaces_repeat1 = 247, + aux_sym_shortcode_escaped_repeat1 = 248, + aux_sym_shortcode_escaped_repeat2 = 249, + aux_sym_shortcode_repeat1 = 250, + aux_sym_pandoc_block_quote_repeat1 = 251, + aux_sym__list_plus_repeat1 = 252, + aux_sym__list_minus_repeat1 = 253, + aux_sym__list_star_repeat1 = 254, + aux_sym__list_dot_repeat1 = 255, + aux_sym__list_parenthesis_repeat1 = 256, + aux_sym__list_example_repeat1 = 257, + aux_sym_code_fence_content_repeat1 = 258, + alias_sym_citation_id_suppress_author = 259, + alias_sym_content = 260, + alias_sym_pandoc_soft_break = 261, + alias_sym_pandoc_space = 262, + alias_sym_pipe_table_align_left = 263, + alias_sym_pipe_table_align_right = 264, + alias_sym_pipe_table_header = 265, + alias_sym_title = 266, + alias_sym_url = 267, }; static const char * const ts_symbol_names[] = { @@ -427,6 +428,7 @@ static const char * const ts_symbol_names[] = { [sym__pipe_table_delimiter] = "_pipe_table_delimiter", [sym__pandoc_line_break] = "pandoc_line_break", [sym__triple_star_error] = "_triple_star_error", + [sym_grid_table] = "grid_table", [sym_document] = "document", [sym__block] = "_block", [sym__block_not_section] = "_block_not_section", @@ -697,6 +699,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__pipe_table_delimiter] = sym__pipe_table_delimiter, [sym__pandoc_line_break] = sym__pandoc_line_break, [sym__triple_star_error] = sym__triple_star_error, + [sym_grid_table] = sym_grid_table, [sym_document] = sym_document, [sym__block] = sym__block, [sym__block_not_section] = sym__block_not_section, @@ -1357,6 +1360,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_grid_table] = { + .visible = true, + .named = true, + }, [sym_document] = { .visible = true, .named = true, @@ -2095,97 +2102,97 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 6, + [6] = 2, [7] = 7, - [8] = 2, + [8] = 8, [9] = 7, [10] = 4, [11] = 3, - [12] = 5, - [13] = 6, + [12] = 8, + [13] = 5, [14] = 2, [15] = 7, [16] = 4, [17] = 3, - [18] = 5, - [19] = 6, + [18] = 8, + [19] = 5, [20] = 20, [21] = 21, [22] = 22, [23] = 23, - [24] = 24, + [24] = 20, [25] = 25, - [26] = 20, - [27] = 25, - [28] = 24, - [29] = 21, - [30] = 22, - [31] = 23, - [32] = 24, - [33] = 25, - [34] = 20, - [35] = 21, - [36] = 22, - [37] = 23, + [26] = 26, + [27] = 21, + [28] = 22, + [29] = 23, + [30] = 25, + [31] = 26, + [32] = 21, + [33] = 22, + [34] = 23, + [35] = 20, + [36] = 25, + [37] = 26, [38] = 38, [39] = 39, [40] = 40, [41] = 41, [42] = 42, - [43] = 43, + [43] = 39, [44] = 44, - [45] = 39, - [46] = 46, - [47] = 38, - [48] = 40, - [49] = 41, - [50] = 42, - [51] = 43, - [52] = 44, - [53] = 39, - [54] = 38, - [55] = 40, - [56] = 41, - [57] = 42, - [58] = 43, - [59] = 44, + [45] = 45, + [46] = 44, + [47] = 45, + [48] = 41, + [49] = 40, + [50] = 41, + [51] = 42, + [52] = 39, + [53] = 44, + [54] = 45, + [55] = 55, + [56] = 38, + [57] = 38, + [58] = 42, + [59] = 40, [60] = 60, - [61] = 61, + [61] = 60, [62] = 62, - [63] = 60, + [63] = 55, [64] = 64, - [65] = 65, + [65] = 60, [66] = 66, - [67] = 46, - [68] = 64, + [67] = 66, + [68] = 62, [69] = 69, - [70] = 60, - [71] = 64, - [72] = 65, - [73] = 65, + [70] = 66, + [71] = 71, + [72] = 62, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, - [77] = 74, - [78] = 75, + [77] = 76, + [78] = 76, [79] = 75, [80] = 74, - [81] = 76, - [82] = 76, + [81] = 75, + [82] = 74, [83] = 83, [84] = 84, [85] = 85, - [86] = 83, - [87] = 84, - [88] = 84, - [89] = 85, - [90] = 85, - [91] = 83, + [86] = 84, + [87] = 83, + [88] = 85, + [89] = 84, + [90] = 83, + [91] = 85, [92] = 92, [93] = 93, [94] = 94, - [95] = 93, - [96] = 94, + [95] = 94, + [96] = 93, [97] = 92, [98] = 94, [99] = 92, @@ -2193,11 +2200,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 101, [102] = 102, [103] = 103, - [104] = 101, + [104] = 103, [105] = 102, - [106] = 103, - [107] = 102, - [108] = 103, + [106] = 101, + [107] = 103, + [108] = 102, [109] = 101, [110] = 110, [111] = 111, @@ -2205,61 +2212,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [113] = 110, [114] = 111, [115] = 112, - [116] = 110, - [117] = 111, - [118] = 112, + [116] = 112, + [117] = 110, + [118] = 111, [119] = 119, [120] = 120, [121] = 121, [122] = 120, [123] = 119, [124] = 120, - [125] = 121, - [126] = 119, + [125] = 119, + [126] = 121, [127] = 121, [128] = 128, - [129] = 128, + [129] = 129, [130] = 130, - [131] = 130, - [132] = 130, - [133] = 128, + [131] = 131, + [132] = 132, + [133] = 133, [134] = 134, [135] = 135, [136] = 136, [137] = 137, [138] = 138, [139] = 139, - [140] = 140, - [141] = 141, + [140] = 138, + [141] = 138, [142] = 142, - [143] = 143, + [143] = 139, [144] = 144, - [145] = 145, - [146] = 138, - [147] = 140, - [148] = 138, + [145] = 139, + [146] = 128, + [147] = 131, + [148] = 134, [149] = 136, - [150] = 140, - [151] = 137, - [152] = 141, - [153] = 142, - [154] = 143, + [150] = 137, + [151] = 142, + [152] = 144, + [153] = 137, + [154] = 142, [155] = 144, - [156] = 145, - [157] = 135, - [158] = 145, - [159] = 142, - [160] = 136, - [161] = 137, - [162] = 143, - [163] = 163, - [164] = 135, - [165] = 144, - [166] = 141, - [167] = 134, - [168] = 139, - [169] = 134, - [170] = 139, + [156] = 133, + [157] = 129, + [158] = 130, + [159] = 131, + [160] = 134, + [161] = 136, + [162] = 135, + [163] = 132, + [164] = 133, + [165] = 135, + [166] = 132, + [167] = 128, + [168] = 129, + [169] = 130, + [170] = 170, [171] = 171, [172] = 172, [173] = 173, @@ -2287,47 +2294,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [195] = 195, [196] = 196, [197] = 197, - [198] = 171, + [198] = 198, [199] = 199, [200] = 200, - [201] = 197, - [202] = 171, - [203] = 197, - [204] = 171, - [205] = 197, - [206] = 171, - [207] = 197, - [208] = 171, - [209] = 197, - [210] = 171, - [211] = 197, - [212] = 171, - [213] = 197, - [214] = 171, - [215] = 197, - [216] = 171, - [217] = 197, - [218] = 171, - [219] = 197, - [220] = 171, - [221] = 197, - [222] = 171, - [223] = 197, - [224] = 171, - [225] = 197, - [226] = 197, - [227] = 171, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 193, + [205] = 205, + [206] = 176, + [207] = 177, + [208] = 179, + [209] = 209, + [210] = 188, + [211] = 211, + [212] = 189, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 195, + [217] = 217, + [218] = 191, + [219] = 219, + [220] = 185, + [221] = 221, + [222] = 222, + [223] = 193, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 194, [228] = 228, - [229] = 197, - [230] = 171, - [231] = 231, + [229] = 199, + [230] = 230, + [231] = 195, [232] = 232, [233] = 233, - [234] = 187, + [234] = 234, [235] = 235, [236] = 236, [237] = 237, - [238] = 188, + [238] = 238, [239] = 239, [240] = 240, [241] = 241, @@ -2358,338 +2365,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [266] = 266, [267] = 267, [268] = 268, - [269] = 269, - [270] = 270, - [271] = 185, + [269] = 200, + [270] = 205, + [271] = 194, [272] = 272, [273] = 273, - [274] = 274, + [274] = 186, [275] = 275, - [276] = 276, - [277] = 277, + [276] = 187, + [277] = 173, [278] = 278, - [279] = 192, + [279] = 173, [280] = 280, [281] = 281, - [282] = 193, - [283] = 194, - [284] = 199, - [285] = 172, - [286] = 181, - [287] = 186, - [288] = 288, - [289] = 289, - [290] = 290, + [282] = 175, + [283] = 174, + [284] = 284, + [285] = 176, + [286] = 175, + [287] = 196, + [288] = 177, + [289] = 200, + [290] = 205, [291] = 291, - [292] = 292, - [293] = 189, - [294] = 173, - [295] = 181, - [296] = 296, - [297] = 195, - [298] = 182, - [299] = 183, - [300] = 172, - [301] = 173, - [302] = 184, - [303] = 185, - [304] = 186, - [305] = 187, - [306] = 188, + [292] = 179, + [293] = 197, + [294] = 198, + [295] = 172, + [296] = 182, + [297] = 183, + [298] = 184, + [299] = 185, + [300] = 186, + [301] = 199, + [302] = 187, + [303] = 188, + [304] = 189, + [305] = 191, + [306] = 306, [307] = 307, - [308] = 308, - [309] = 309, - [310] = 189, - [311] = 190, - [312] = 191, - [313] = 192, - [314] = 193, - [315] = 194, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 174, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, + [308] = 200, + [309] = 205, + [310] = 200, + [311] = 205, + [312] = 200, + [313] = 205, + [314] = 200, + [315] = 205, + [316] = 200, + [317] = 205, + [318] = 200, + [319] = 205, + [320] = 200, + [321] = 205, + [322] = 200, + [323] = 205, [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 175, - [331] = 176, - [332] = 177, - [333] = 190, - [334] = 191, + [325] = 205, + [326] = 200, + [327] = 205, + [328] = 200, + [329] = 205, + [330] = 200, + [331] = 205, + [332] = 200, + [333] = 205, + [334] = 334, [335] = 335, - [336] = 199, + [336] = 336, [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 196, - [343] = 343, - [344] = 344, - [345] = 196, + [338] = 196, + [339] = 197, + [340] = 198, + [341] = 172, + [342] = 182, + [343] = 183, + [344] = 184, + [345] = 200, [346] = 174, - [347] = 347, - [348] = 175, - [349] = 349, - [350] = 176, - [351] = 351, - [352] = 352, - [353] = 177, - [354] = 182, - [355] = 183, - [356] = 184, - [357] = 195, - [358] = 244, - [359] = 274, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 236, - [367] = 237, - [368] = 239, - [369] = 241, - [370] = 281, - [371] = 243, - [372] = 365, - [373] = 245, - [374] = 321, - [375] = 247, - [376] = 360, - [377] = 249, - [378] = 250, - [379] = 251, - [380] = 252, - [381] = 338, - [382] = 382, - [383] = 253, - [384] = 254, - [385] = 343, - [386] = 273, - [387] = 352, - [388] = 255, - [389] = 256, - [390] = 257, - [391] = 258, - [392] = 259, - [393] = 260, - [394] = 261, - [395] = 262, - [396] = 263, - [397] = 264, - [398] = 265, - [399] = 266, - [400] = 351, - [401] = 267, - [402] = 268, - [403] = 269, - [404] = 270, - [405] = 232, - [406] = 272, - [407] = 273, - [408] = 274, - [409] = 240, - [410] = 360, - [411] = 361, - [412] = 362, - [413] = 363, - [414] = 364, - [415] = 365, - [416] = 317, - [417] = 318, + [347] = 235, + [348] = 253, + [349] = 254, + [350] = 255, + [351] = 256, + [352] = 257, + [353] = 258, + [354] = 259, + [355] = 260, + [356] = 261, + [357] = 262, + [358] = 263, + [359] = 215, + [360] = 217, + [361] = 219, + [362] = 221, + [363] = 222, + [364] = 224, + [365] = 225, + [366] = 226, + [367] = 228, + [368] = 230, + [369] = 273, + [370] = 232, + [371] = 234, + [372] = 275, + [373] = 236, + [374] = 238, + [375] = 239, + [376] = 240, + [377] = 241, + [378] = 278, + [379] = 242, + [380] = 243, + [381] = 281, + [382] = 284, + [383] = 244, + [384] = 245, + [385] = 246, + [386] = 247, + [387] = 248, + [388] = 249, + [389] = 250, + [390] = 251, + [391] = 252, + [392] = 253, + [393] = 254, + [394] = 255, + [395] = 214, + [396] = 256, + [397] = 257, + [398] = 258, + [399] = 259, + [400] = 260, + [401] = 261, + [402] = 262, + [403] = 263, + [404] = 291, + [405] = 306, + [406] = 324, + [407] = 214, + [408] = 265, + [409] = 267, + [410] = 233, + [411] = 235, + [412] = 237, + [413] = 264, + [414] = 266, + [415] = 268, + [416] = 272, + [417] = 417, [418] = 418, - [419] = 419, - [420] = 420, - [421] = 351, - [422] = 276, - [423] = 278, - [424] = 242, - [425] = 244, - [426] = 246, - [427] = 248, - [428] = 275, - [429] = 277, - [430] = 280, - [431] = 281, - [432] = 321, - [433] = 276, - [434] = 338, - [435] = 278, - [436] = 343, - [437] = 361, - [438] = 352, - [439] = 362, - [440] = 317, - [441] = 240, - [442] = 242, - [443] = 320, - [444] = 363, - [445] = 246, - [446] = 322, - [447] = 323, - [448] = 324, - [449] = 325, - [450] = 326, - [451] = 327, - [452] = 328, - [453] = 320, - [454] = 322, - [455] = 455, - [456] = 418, - [457] = 419, - [458] = 420, - [459] = 323, - [460] = 324, - [461] = 325, - [462] = 326, - [463] = 327, - [464] = 328, - [465] = 248, - [466] = 466, - [467] = 329, - [468] = 329, - [469] = 275, - [470] = 277, - [471] = 280, - [472] = 364, - [473] = 335, - [474] = 455, - [475] = 418, - [476] = 419, - [477] = 420, - [478] = 337, - [479] = 335, - [480] = 339, - [481] = 341, - [482] = 337, - [483] = 344, - [484] = 349, - [485] = 466, - [486] = 339, - [487] = 296, - [488] = 233, - [489] = 235, - [490] = 341, - [491] = 466, - [492] = 344, - [493] = 455, - [494] = 418, - [495] = 419, - [496] = 420, - [497] = 236, - [498] = 237, - [499] = 455, - [500] = 418, - [501] = 419, - [502] = 420, - [503] = 239, - [504] = 455, - [505] = 418, - [506] = 419, - [507] = 420, - [508] = 349, - [509] = 241, - [510] = 455, - [511] = 418, - [512] = 419, - [513] = 420, - [514] = 243, - [515] = 455, - [516] = 418, - [517] = 419, - [518] = 420, - [519] = 296, - [520] = 245, - [521] = 455, - [522] = 418, - [523] = 419, - [524] = 420, - [525] = 233, - [526] = 247, - [527] = 455, - [528] = 418, - [529] = 419, - [530] = 420, - [531] = 249, - [532] = 455, - [533] = 418, - [534] = 419, - [535] = 420, - [536] = 250, - [537] = 251, - [538] = 455, - [539] = 418, - [540] = 419, - [541] = 420, - [542] = 235, - [543] = 252, - [544] = 455, - [545] = 418, - [546] = 419, - [547] = 420, - [548] = 253, - [549] = 254, - [550] = 455, - [551] = 418, - [552] = 419, - [553] = 420, - [554] = 255, - [555] = 256, - [556] = 455, - [557] = 418, - [558] = 419, - [559] = 420, - [560] = 257, - [561] = 258, - [562] = 455, - [563] = 418, - [564] = 419, - [565] = 420, - [566] = 259, - [567] = 260, - [568] = 261, - [569] = 262, - [570] = 263, - [571] = 264, - [572] = 265, - [573] = 266, - [574] = 267, - [575] = 268, - [576] = 269, - [577] = 270, - [578] = 232, - [579] = 272, - [580] = 382, - [581] = 382, - [582] = 455, + [419] = 273, + [420] = 275, + [421] = 278, + [422] = 281, + [423] = 265, + [424] = 284, + [425] = 267, + [426] = 291, + [427] = 252, + [428] = 233, + [429] = 307, + [430] = 237, + [431] = 334, + [432] = 335, + [433] = 336, + [434] = 337, + [435] = 280, + [436] = 201, + [437] = 307, + [438] = 202, + [439] = 334, + [440] = 335, + [441] = 336, + [442] = 337, + [443] = 280, + [444] = 201, + [445] = 202, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 203, + [452] = 209, + [453] = 264, + [454] = 211, + [455] = 203, + [456] = 213, + [457] = 266, + [458] = 215, + [459] = 268, + [460] = 217, + [461] = 272, + [462] = 219, + [463] = 221, + [464] = 222, + [465] = 251, + [466] = 224, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 225, + [471] = 226, + [472] = 228, + [473] = 209, + [474] = 230, + [475] = 232, + [476] = 211, + [477] = 234, + [478] = 236, + [479] = 213, + [480] = 238, + [481] = 239, + [482] = 240, + [483] = 483, + [484] = 241, + [485] = 242, + [486] = 243, + [487] = 244, + [488] = 245, + [489] = 246, + [490] = 247, + [491] = 248, + [492] = 249, + [493] = 250, + [494] = 306, + [495] = 495, + [496] = 496, + [497] = 495, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 496, + [507] = 507, + [508] = 501, + [509] = 509, + [510] = 498, + [511] = 499, + [512] = 495, + [513] = 498, + [514] = 499, + [515] = 500, + [516] = 500, + [517] = 504, + [518] = 495, + [519] = 495, + [520] = 498, + [521] = 499, + [522] = 500, + [523] = 495, + [524] = 498, + [525] = 499, + [526] = 500, + [527] = 507, + [528] = 495, + [529] = 498, + [530] = 499, + [531] = 500, + [532] = 502, + [533] = 498, + [534] = 499, + [535] = 500, + [536] = 504, + [537] = 495, + [538] = 498, + [539] = 509, + [540] = 500, + [541] = 495, + [542] = 498, + [543] = 499, + [544] = 500, + [545] = 503, + [546] = 495, + [547] = 498, + [548] = 499, + [549] = 500, + [550] = 495, + [551] = 498, + [552] = 499, + [553] = 500, + [554] = 495, + [555] = 498, + [556] = 499, + [557] = 500, + [558] = 495, + [559] = 498, + [560] = 499, + [561] = 500, + [562] = 505, + [563] = 495, + [564] = 498, + [565] = 499, + [566] = 500, + [567] = 495, + [568] = 498, + [569] = 499, + [570] = 500, + [571] = 501, + [572] = 495, + [573] = 498, + [574] = 499, + [575] = 500, + [576] = 496, + [577] = 503, + [578] = 505, + [579] = 502, + [580] = 507, + [581] = 509, + [582] = 499, [583] = 583, - [584] = 288, - [585] = 289, - [586] = 290, - [587] = 587, - [588] = 308, - [589] = 309, - [590] = 583, - [591] = 591, - [592] = 291, - [593] = 292, - [594] = 316, - [595] = 307, - [596] = 583, - [597] = 340, - [598] = 583, - [599] = 347, - [600] = 583, + [584] = 583, + [585] = 446, + [586] = 586, + [587] = 469, + [588] = 447, + [589] = 448, + [590] = 449, + [591] = 450, + [592] = 417, + [593] = 583, + [594] = 418, + [595] = 483, + [596] = 596, + [597] = 583, + [598] = 467, + [599] = 583, + [600] = 468, [601] = 583, [602] = 583, [603] = 583, @@ -2704,314 +2711,314 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [612] = 612, [613] = 612, [614] = 614, - [615] = 612, + [615] = 615, [616] = 616, - [617] = 614, - [618] = 612, - [619] = 619, - [620] = 620, - [621] = 614, - [622] = 614, - [623] = 612, - [624] = 612, - [625] = 614, - [626] = 612, + [617] = 617, + [618] = 615, + [619] = 617, + [620] = 615, + [621] = 616, + [622] = 615, + [623] = 616, + [624] = 615, + [625] = 615, + [626] = 616, [627] = 627, - [628] = 627, - [629] = 614, - [630] = 612, - [631] = 631, - [632] = 614, - [633] = 612, + [628] = 615, + [629] = 616, + [630] = 630, + [631] = 616, + [632] = 615, + [633] = 616, [634] = 614, - [635] = 612, - [636] = 614, - [637] = 612, - [638] = 619, - [639] = 614, - [640] = 612, - [641] = 631, - [642] = 614, - [643] = 612, - [644] = 614, - [645] = 612, - [646] = 620, - [647] = 614, - [648] = 612, - [649] = 614, - [650] = 614, - [651] = 612, + [635] = 615, + [636] = 616, + [637] = 615, + [638] = 616, + [639] = 615, + [640] = 616, + [641] = 615, + [642] = 615, + [643] = 616, + [644] = 616, + [645] = 616, + [646] = 616, + [647] = 615, + [648] = 616, + [649] = 627, + [650] = 630, + [651] = 615, [652] = 616, - [653] = 614, - [654] = 616, - [655] = 616, - [656] = 619, - [657] = 620, - [658] = 619, - [659] = 620, - [660] = 619, - [661] = 620, - [662] = 616, - [663] = 620, - [664] = 616, - [665] = 616, - [666] = 616, - [667] = 619, - [668] = 616, - [669] = 591, - [670] = 620, - [671] = 587, - [672] = 619, - [673] = 620, - [674] = 616, - [675] = 620, - [676] = 616, - [677] = 619, - [678] = 620, - [679] = 619, - [680] = 619, - [681] = 619, - [682] = 619, - [683] = 620, - [684] = 616, - [685] = 619, - [686] = 620, - [687] = 620, - [688] = 616, + [653] = 615, + [654] = 614, + [655] = 614, + [656] = 627, + [657] = 627, + [658] = 617, + [659] = 614, + [660] = 627, + [661] = 627, + [662] = 627, + [663] = 617, + [664] = 627, + [665] = 614, + [666] = 617, + [667] = 617, + [668] = 627, + [669] = 614, + [670] = 614, + [671] = 617, + [672] = 627, + [673] = 617, + [674] = 614, + [675] = 614, + [676] = 617, + [677] = 617, + [678] = 617, + [679] = 614, + [680] = 627, + [681] = 586, + [682] = 596, + [683] = 614, + [684] = 617, + [685] = 627, + [686] = 614, + [687] = 617, + [688] = 627, [689] = 689, [690] = 690, - [691] = 689, - [692] = 692, - [693] = 689, - [694] = 692, + [691] = 691, + [692] = 689, + [693] = 693, + [694] = 586, [695] = 695, - [696] = 690, - [697] = 697, - [698] = 695, - [699] = 699, - [700] = 697, - [701] = 695, - [702] = 591, - [703] = 699, + [696] = 691, + [697] = 695, + [698] = 698, + [699] = 690, + [700] = 698, + [701] = 689, + [702] = 693, + [703] = 690, [704] = 689, - [705] = 692, - [706] = 690, - [707] = 697, - [708] = 695, - [709] = 699, - [710] = 695, - [711] = 692, - [712] = 689, - [713] = 689, - [714] = 692, - [715] = 689, - [716] = 690, - [717] = 690, - [718] = 697, - [719] = 695, - [720] = 699, - [721] = 692, - [722] = 697, - [723] = 697, - [724] = 695, - [725] = 699, - [726] = 689, - [727] = 692, - [728] = 692, - [729] = 690, - [730] = 690, - [731] = 697, - [732] = 695, - [733] = 699, - [734] = 697, - [735] = 695, - [736] = 587, - [737] = 699, - [738] = 690, - [739] = 689, - [740] = 692, - [741] = 699, + [705] = 693, + [706] = 691, + [707] = 695, + [708] = 698, + [709] = 690, + [710] = 691, + [711] = 695, + [712] = 698, + [713] = 690, + [714] = 689, + [715] = 693, + [716] = 691, + [717] = 691, + [718] = 695, + [719] = 698, + [720] = 690, + [721] = 691, + [722] = 695, + [723] = 698, + [724] = 690, + [725] = 689, + [726] = 693, + [727] = 693, + [728] = 691, + [729] = 695, + [730] = 698, + [731] = 690, + [732] = 691, + [733] = 695, + [734] = 698, + [735] = 690, + [736] = 689, + [737] = 693, + [738] = 689, + [739] = 691, + [740] = 695, + [741] = 690, [742] = 690, - [743] = 697, - [744] = 695, - [745] = 699, + [743] = 693, + [744] = 689, + [745] = 693, [746] = 689, - [747] = 690, - [748] = 697, - [749] = 689, - [750] = 692, - [751] = 695, - [752] = 690, - [753] = 697, + [747] = 695, + [748] = 691, + [749] = 695, + [750] = 698, + [751] = 690, + [752] = 693, + [753] = 691, [754] = 695, - [755] = 699, - [756] = 699, - [757] = 689, - [758] = 692, - [759] = 689, - [760] = 692, - [761] = 689, - [762] = 692, + [755] = 698, + [756] = 689, + [757] = 693, + [758] = 690, + [759] = 693, + [760] = 691, + [761] = 695, + [762] = 698, [763] = 690, - [764] = 697, - [765] = 695, - [766] = 699, - [767] = 690, - [768] = 697, - [769] = 690, - [770] = 697, - [771] = 692, - [772] = 695, - [773] = 699, - [774] = 695, - [775] = 699, - [776] = 689, - [777] = 692, - [778] = 689, - [779] = 692, - [780] = 690, - [781] = 697, - [782] = 695, - [783] = 699, - [784] = 690, - [785] = 697, - [786] = 699, + [764] = 698, + [765] = 689, + [766] = 693, + [767] = 689, + [768] = 693, + [769] = 689, + [770] = 691, + [771] = 695, + [772] = 698, + [773] = 690, + [774] = 596, + [775] = 689, + [776] = 693, + [777] = 690, + [778] = 691, + [779] = 689, + [780] = 693, + [781] = 695, + [782] = 698, + [783] = 698, + [784] = 691, + [785] = 695, + [786] = 698, [787] = 787, [788] = 788, [789] = 789, - [790] = 789, + [790] = 790, [791] = 791, [792] = 792, [793] = 793, - [794] = 787, - [795] = 795, - [796] = 796, + [794] = 794, + [795] = 787, + [796] = 789, [797] = 797, - [798] = 788, - [799] = 799, - [800] = 795, - [801] = 801, - [802] = 791, - [803] = 799, - [804] = 791, - [805] = 792, - [806] = 793, - [807] = 787, - [808] = 795, - [809] = 796, - [810] = 797, - [811] = 788, + [798] = 791, + [799] = 788, + [800] = 792, + [801] = 793, + [802] = 794, + [803] = 803, + [804] = 787, + [805] = 789, + [806] = 797, + [807] = 791, + [808] = 788, + [809] = 809, + [810] = 803, + [811] = 790, [812] = 792, - [813] = 793, - [814] = 799, - [815] = 789, - [816] = 791, - [817] = 792, - [818] = 793, - [819] = 787, - [820] = 795, - [821] = 796, - [822] = 797, - [823] = 788, - [824] = 791, - [825] = 792, - [826] = 793, - [827] = 787, - [828] = 795, - [829] = 796, - [830] = 797, - [831] = 788, - [832] = 791, - [833] = 792, - [834] = 793, + [813] = 792, + [814] = 793, + [815] = 794, + [816] = 803, + [817] = 787, + [818] = 789, + [819] = 797, + [820] = 791, + [821] = 788, + [822] = 792, + [823] = 793, + [824] = 794, + [825] = 787, + [826] = 789, + [827] = 797, + [828] = 791, + [829] = 788, + [830] = 792, + [831] = 793, + [832] = 794, + [833] = 787, + [834] = 789, [835] = 797, - [836] = 787, - [837] = 795, - [838] = 796, - [839] = 797, - [840] = 788, - [841] = 791, - [842] = 792, - [843] = 793, - [844] = 787, - [845] = 795, - [846] = 796, - [847] = 797, - [848] = 788, - [849] = 791, - [850] = 792, - [851] = 793, - [852] = 789, - [853] = 787, - [854] = 795, - [855] = 796, - [856] = 797, - [857] = 788, - [858] = 791, - [859] = 793, - [860] = 787, - [861] = 787, - [862] = 795, - [863] = 796, - [864] = 797, - [865] = 788, - [866] = 791, - [867] = 792, - [868] = 793, - [869] = 787, - [870] = 795, - [871] = 796, - [872] = 797, - [873] = 788, - [874] = 791, - [875] = 792, - [876] = 793, - [877] = 787, - [878] = 795, - [879] = 796, - [880] = 797, - [881] = 788, - [882] = 791, - [883] = 792, - [884] = 793, - [885] = 787, - [886] = 795, - [887] = 796, - [888] = 797, - [889] = 788, - [890] = 791, - [891] = 792, - [892] = 793, - [893] = 787, - [894] = 795, - [895] = 796, - [896] = 797, - [897] = 788, - [898] = 791, - [899] = 792, - [900] = 793, - [901] = 787, - [902] = 795, - [903] = 796, - [904] = 797, - [905] = 788, - [906] = 791, - [907] = 792, - [908] = 793, - [909] = 787, - [910] = 795, - [911] = 796, - [912] = 797, - [913] = 788, - [914] = 791, - [915] = 792, + [836] = 791, + [837] = 788, + [838] = 792, + [839] = 793, + [840] = 794, + [841] = 787, + [842] = 789, + [843] = 797, + [844] = 791, + [845] = 788, + [846] = 792, + [847] = 793, + [848] = 794, + [849] = 787, + [850] = 789, + [851] = 797, + [852] = 791, + [853] = 788, + [854] = 792, + [855] = 790, + [856] = 794, + [857] = 787, + [858] = 789, + [859] = 797, + [860] = 791, + [861] = 788, + [862] = 792, + [863] = 793, + [864] = 794, + [865] = 787, + [866] = 787, + [867] = 789, + [868] = 797, + [869] = 791, + [870] = 788, + [871] = 792, + [872] = 793, + [873] = 794, + [874] = 787, + [875] = 789, + [876] = 797, + [877] = 791, + [878] = 788, + [879] = 792, + [880] = 793, + [881] = 794, + [882] = 797, + [883] = 787, + [884] = 789, + [885] = 797, + [886] = 791, + [887] = 788, + [888] = 792, + [889] = 793, + [890] = 794, + [891] = 790, + [892] = 787, + [893] = 789, + [894] = 797, + [895] = 791, + [896] = 788, + [897] = 792, + [898] = 793, + [899] = 794, + [900] = 787, + [901] = 789, + [902] = 797, + [903] = 791, + [904] = 788, + [905] = 792, + [906] = 793, + [907] = 794, + [908] = 787, + [909] = 789, + [910] = 797, + [911] = 791, + [912] = 788, + [913] = 792, + [914] = 793, + [915] = 794, [916] = 793, - [917] = 796, - [918] = 795, - [919] = 796, - [920] = 797, - [921] = 788, - [922] = 792, + [917] = 789, + [918] = 797, + [919] = 791, + [920] = 788, + [921] = 794, + [922] = 793, [923] = 923, [924] = 923, [925] = 923, @@ -4392,7 +4399,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2300] = 1068, [2301] = 1059, [2302] = 1018, - [2303] = 196, + [2303] = 194, [2304] = 980, [2305] = 1004, [2306] = 1005, @@ -4439,7 +4446,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2347] = 1066, [2348] = 1012, [2349] = 1013, - [2350] = 196, + [2350] = 194, [2351] = 1322, [2352] = 1453, [2353] = 1368, @@ -4479,7 +4486,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2387] = 1065, [2388] = 980, [2389] = 1042, - [2390] = 278, + [2390] = 267, [2391] = 1043, [2392] = 1045, [2393] = 1046, @@ -4493,7 +4500,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2401] = 1054, [2402] = 1055, [2403] = 1023, - [2404] = 278, + [2404] = 267, [2405] = 2405, [2406] = 2406, [2407] = 2407, @@ -4611,11 +4618,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2519] = 2501, [2520] = 2520, [2521] = 2521, - [2522] = 196, + [2522] = 194, [2523] = 2523, - [2524] = 196, + [2524] = 194, [2525] = 2523, - [2526] = 278, + [2526] = 267, [2527] = 2527, [2528] = 2528, [2529] = 2528, @@ -4624,7 +4631,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2532] = 2528, [2533] = 2533, [2534] = 2528, - [2535] = 278, + [2535] = 267, [2536] = 2528, [2537] = 2537, [2538] = 2528, @@ -4641,7 +4648,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2549] = 2533, [2550] = 2550, [2551] = 2523, - [2552] = 196, + [2552] = 194, [2553] = 2550, [2554] = 2554, [2555] = 2555, @@ -4682,7 +4689,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2590] = 2558, [2591] = 2559, [2592] = 2558, - [2593] = 278, + [2593] = 267, [2594] = 2558, [2595] = 2555, [2596] = 2596, @@ -4708,7 +4715,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 196, + [2619] = 194, [2620] = 2612, [2621] = 2621, [2622] = 2622, @@ -4718,7 +4725,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2626] = 2623, [2627] = 2627, [2628] = 2628, - [2629] = 196, + [2629] = 194, [2630] = 2630, [2631] = 2631, [2632] = 2632, @@ -4726,10 +4733,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2634] = 2632, [2635] = 2631, [2636] = 2632, - [2637] = 278, + [2637] = 267, [2638] = 2623, [2639] = 2628, - [2640] = 318, + [2640] = 324, [2641] = 2641, [2642] = 2642, [2643] = 2643, @@ -4752,14 +4759,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2660] = 2650, [2661] = 2661, [2662] = 2662, - [2663] = 278, + [2663] = 267, [2664] = 2664, [2665] = 2662, [2666] = 2645, [2667] = 2650, [2668] = 2668, [2669] = 2669, - [2670] = 196, + [2670] = 194, [2671] = 2671, [2672] = 2662, [2673] = 2657, @@ -4811,7 +4818,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2719] = 2659, [2720] = 2653, [2721] = 2642, - [2722] = 196, + [2722] = 194, [2723] = 2645, [2724] = 2641, [2725] = 2658, @@ -4918,13 +4925,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2826] = 2752, [2827] = 2827, [2828] = 1068, - [2829] = 196, + [2829] = 194, [2830] = 2756, [2831] = 2755, [2832] = 2832, [2833] = 2757, [2834] = 2762, - [2835] = 195, + [2835] = 193, [2836] = 2765, [2837] = 2762, [2838] = 2838, @@ -4947,7 +4954,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2855] = 2855, [2856] = 2783, [2857] = 2753, - [2858] = 195, + [2858] = 193, [2859] = 2758, [2860] = 2755, [2861] = 2756, @@ -4965,10 +4972,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2873] = 2757, [2874] = 2762, [2875] = 2752, - [2876] = 278, + [2876] = 267, [2877] = 2877, [2878] = 2865, - [2879] = 278, + [2879] = 267, [2880] = 2880, [2881] = 2755, [2882] = 2882, @@ -5006,7 +5013,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2914] = 2783, [2915] = 2915, [2916] = 2783, - [2917] = 278, + [2917] = 267, [2918] = 2783, [2919] = 2915, [2920] = 2783, @@ -5019,14 +5026,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2927] = 2927, [2928] = 2928, [2929] = 2865, - [2930] = 276, + [2930] = 265, [2931] = 2865, [2932] = 2865, [2933] = 2523, [2934] = 2779, [2935] = 2915, [2936] = 2779, - [2937] = 196, + [2937] = 194, [2938] = 2915, [2939] = 2939, [2940] = 1066, @@ -5068,7 +5075,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2976] = 2976, [2977] = 2783, [2978] = 2978, - [2979] = 196, + [2979] = 194, [2980] = 2978, [2981] = 2981, [2982] = 2982, @@ -5089,7 +5096,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2997] = 2997, [2998] = 2998, [2999] = 2865, - [3000] = 276, + [3000] = 265, [3001] = 2915, [3002] = 2865, [3003] = 2915, @@ -5136,7 +5143,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3044] = 3044, [3045] = 3045, [3046] = 3046, - [3047] = 278, + [3047] = 267, [3048] = 3048, [3049] = 3049, [3050] = 3050, @@ -5215,7 +5222,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3123] = 3066, [3124] = 3103, [3125] = 3065, - [3126] = 195, + [3126] = 193, [3127] = 3048, [3128] = 3045, [3129] = 3107, @@ -5228,7 +5235,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3136] = 3115, [3137] = 3116, [3138] = 3094, - [3139] = 195, + [3139] = 193, [3140] = 3050, [3141] = 3051, [3142] = 3049, @@ -5256,7 +5263,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3164] = 3055, [3165] = 3066, [3166] = 3050, - [3167] = 196, + [3167] = 194, [3168] = 3094, [3169] = 3062, [3170] = 3090, @@ -5305,7 +5312,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3213] = 3052, [3214] = 3055, [3215] = 3049, - [3216] = 278, + [3216] = 267, [3217] = 3094, [3218] = 3114, [3219] = 3066, @@ -5441,8 +5448,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3349] = 3331, [3350] = 3350, [3351] = 1067, - [3352] = 196, - [3353] = 195, + [3352] = 194, + [3353] = 193, [3354] = 3061, [3355] = 3327, [3356] = 3315, @@ -5454,7 +5461,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3362] = 3327, [3363] = 3315, [3364] = 2550, - [3365] = 237, + [3365] = 226, [3366] = 3331, [3367] = 3367, [3368] = 2971, @@ -5496,17 +5503,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3404] = 3403, [3405] = 3405, [3406] = 3406, - [3407] = 195, + [3407] = 193, [3408] = 3325, [3409] = 3061, [3410] = 3327, - [3411] = 278, + [3411] = 267, [3412] = 3315, [3413] = 3327, [3414] = 2923, [3415] = 3315, [3416] = 1068, - [3417] = 276, + [3417] = 265, [3418] = 3331, [3419] = 3395, [3420] = 2960, @@ -5516,7 +5523,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3424] = 3424, [3425] = 3061, [3426] = 3426, - [3427] = 276, + [3427] = 265, [3428] = 3428, [3429] = 3429, [3430] = 3367, @@ -5539,7 +5546,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3447] = 3061, [3448] = 3061, [3449] = 3327, - [3450] = 195, + [3450] = 193, [3451] = 3315, [3452] = 3403, [3453] = 3331, @@ -5667,7 +5674,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3575] = 3575, [3576] = 3576, [3577] = 3518, - [3578] = 276, + [3578] = 265, [3579] = 3511, [3580] = 3512, [3581] = 3461, @@ -5912,7 +5919,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3820] = 3480, [3821] = 3481, [3822] = 3458, - [3823] = 276, + [3823] = 265, [3824] = 3484, [3825] = 3625, [3826] = 3666, @@ -5993,7 +6000,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3901] = 3666, [3902] = 3492, [3903] = 3462, - [3904] = 276, + [3904] = 265, [3905] = 3478, [3906] = 3626, [3907] = 3907, @@ -6193,7 +6200,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4101] = 3666, [4102] = 3481, [4103] = 3484, - [4104] = 278, + [4104] = 267, [4105] = 3461, [4106] = 3462, [4107] = 3485, @@ -17117,59 +17124,59 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 2050, .external_lex_state = 6}, [45] = {.lex_state = 2050, .external_lex_state = 6}, [46] = {.lex_state = 2050, .external_lex_state = 6}, - [47] = {.lex_state = 2050, .external_lex_state = 5}, + [47] = {.lex_state = 2050, .external_lex_state = 6}, [48] = {.lex_state = 2050, .external_lex_state = 6}, [49] = {.lex_state = 2050, .external_lex_state = 6}, [50] = {.lex_state = 2050, .external_lex_state = 6}, [51] = {.lex_state = 2050, .external_lex_state = 6}, [52] = {.lex_state = 2050, .external_lex_state = 6}, [53] = {.lex_state = 2050, .external_lex_state = 6}, - [54] = {.lex_state = 2050, .external_lex_state = 5}, + [54] = {.lex_state = 2050, .external_lex_state = 6}, [55] = {.lex_state = 2050, .external_lex_state = 6}, - [56] = {.lex_state = 2050, .external_lex_state = 6}, - [57] = {.lex_state = 2050, .external_lex_state = 6}, + [56] = {.lex_state = 2050, .external_lex_state = 5}, + [57] = {.lex_state = 2050, .external_lex_state = 5}, [58] = {.lex_state = 2050, .external_lex_state = 6}, [59] = {.lex_state = 2050, .external_lex_state = 6}, [60] = {.lex_state = 2050, .external_lex_state = 7}, [61] = {.lex_state = 2050, .external_lex_state = 7}, - [62] = {.lex_state = 2050, .external_lex_state = 2}, + [62] = {.lex_state = 2050, .external_lex_state = 7}, [63] = {.lex_state = 2050, .external_lex_state = 7}, - [64] = {.lex_state = 2050, .external_lex_state = 7}, + [64] = {.lex_state = 2050, .external_lex_state = 2}, [65] = {.lex_state = 2050, .external_lex_state = 7}, - [66] = {.lex_state = 2050, .external_lex_state = 2}, + [66] = {.lex_state = 2050, .external_lex_state = 7}, [67] = {.lex_state = 2050, .external_lex_state = 7}, [68] = {.lex_state = 2050, .external_lex_state = 7}, [69] = {.lex_state = 2050, .external_lex_state = 2}, [70] = {.lex_state = 2050, .external_lex_state = 7}, [71] = {.lex_state = 2050, .external_lex_state = 7}, [72] = {.lex_state = 2050, .external_lex_state = 7}, - [73] = {.lex_state = 2050, .external_lex_state = 7}, + [73] = {.lex_state = 2050, .external_lex_state = 2}, [74] = {.lex_state = 2050, .external_lex_state = 6}, [75] = {.lex_state = 2050, .external_lex_state = 6}, [76] = {.lex_state = 2050, .external_lex_state = 6}, - [77] = {.lex_state = 2050, .external_lex_state = 7}, + [77] = {.lex_state = 2050, .external_lex_state = 2}, [78] = {.lex_state = 2050, .external_lex_state = 7}, - [79] = {.lex_state = 2050, .external_lex_state = 2}, - [80] = {.lex_state = 2050, .external_lex_state = 2}, - [81] = {.lex_state = 2050, .external_lex_state = 7}, + [79] = {.lex_state = 2050, .external_lex_state = 7}, + [80] = {.lex_state = 2050, .external_lex_state = 7}, + [81] = {.lex_state = 2050, .external_lex_state = 2}, [82] = {.lex_state = 2050, .external_lex_state = 2}, [83] = {.lex_state = 2050, .external_lex_state = 6}, [84] = {.lex_state = 2050, .external_lex_state = 6}, [85] = {.lex_state = 2050, .external_lex_state = 6}, [86] = {.lex_state = 2050, .external_lex_state = 7}, [87] = {.lex_state = 2050, .external_lex_state = 7}, - [88] = {.lex_state = 2050, .external_lex_state = 2}, + [88] = {.lex_state = 2050, .external_lex_state = 7}, [89] = {.lex_state = 2050, .external_lex_state = 2}, - [90] = {.lex_state = 2050, .external_lex_state = 7}, + [90] = {.lex_state = 2050, .external_lex_state = 2}, [91] = {.lex_state = 2050, .external_lex_state = 2}, [92] = {.lex_state = 2050, .external_lex_state = 6}, [93] = {.lex_state = 2050, .external_lex_state = 6}, [94] = {.lex_state = 2050, .external_lex_state = 6}, [95] = {.lex_state = 2050, .external_lex_state = 7}, - [96] = {.lex_state = 2050, .external_lex_state = 2}, - [97] = {.lex_state = 2050, .external_lex_state = 2}, - [98] = {.lex_state = 2050, .external_lex_state = 7}, - [99] = {.lex_state = 2050, .external_lex_state = 7}, + [96] = {.lex_state = 2050, .external_lex_state = 7}, + [97] = {.lex_state = 2050, .external_lex_state = 7}, + [98] = {.lex_state = 2050, .external_lex_state = 2}, + [99] = {.lex_state = 2050, .external_lex_state = 2}, [100] = {.lex_state = 2050, .external_lex_state = 2}, [101] = {.lex_state = 2050, .external_lex_state = 6}, [102] = {.lex_state = 2050, .external_lex_state = 6}, @@ -17177,15 +17184,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 2050, .external_lex_state = 2}, [105] = {.lex_state = 2050, .external_lex_state = 7}, [106] = {.lex_state = 2050, .external_lex_state = 7}, - [107] = {.lex_state = 2050, .external_lex_state = 2}, + [107] = {.lex_state = 2050, .external_lex_state = 7}, [108] = {.lex_state = 2050, .external_lex_state = 2}, - [109] = {.lex_state = 2050, .external_lex_state = 7}, + [109] = {.lex_state = 2050, .external_lex_state = 2}, [110] = {.lex_state = 2050, .external_lex_state = 6}, [111] = {.lex_state = 2050, .external_lex_state = 6}, [112] = {.lex_state = 2050, .external_lex_state = 6}, - [113] = {.lex_state = 2050, .external_lex_state = 2}, + [113] = {.lex_state = 2050, .external_lex_state = 7}, [114] = {.lex_state = 2050, .external_lex_state = 7}, - [115] = {.lex_state = 2050, .external_lex_state = 7}, + [115] = {.lex_state = 2050, .external_lex_state = 2}, [116] = {.lex_state = 2050, .external_lex_state = 7}, [117] = {.lex_state = 2050, .external_lex_state = 2}, [118] = {.lex_state = 2050, .external_lex_state = 2}, @@ -17195,120 +17202,120 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 2050, .external_lex_state = 2}, [123] = {.lex_state = 2050, .external_lex_state = 7}, [124] = {.lex_state = 2050, .external_lex_state = 7}, - [125] = {.lex_state = 2050, .external_lex_state = 7}, + [125] = {.lex_state = 2050, .external_lex_state = 2}, [126] = {.lex_state = 2050, .external_lex_state = 2}, - [127] = {.lex_state = 2050, .external_lex_state = 2}, - [128] = {.lex_state = 2050, .external_lex_state = 8}, - [129] = {.lex_state = 2050, .external_lex_state = 8}, - [130] = {.lex_state = 2050, .external_lex_state = 8}, - [131] = {.lex_state = 2050, .external_lex_state = 8}, - [132] = {.lex_state = 2050, .external_lex_state = 8}, - [133] = {.lex_state = 2050, .external_lex_state = 8}, + [127] = {.lex_state = 2050, .external_lex_state = 7}, + [128] = {.lex_state = 2050, .external_lex_state = 6}, + [129] = {.lex_state = 2050, .external_lex_state = 6}, + [130] = {.lex_state = 2050, .external_lex_state = 6}, + [131] = {.lex_state = 2050, .external_lex_state = 6}, + [132] = {.lex_state = 2050, .external_lex_state = 6}, + [133] = {.lex_state = 2050, .external_lex_state = 6}, [134] = {.lex_state = 2050, .external_lex_state = 6}, [135] = {.lex_state = 2050, .external_lex_state = 6}, [136] = {.lex_state = 2050, .external_lex_state = 6}, [137] = {.lex_state = 2050, .external_lex_state = 6}, - [138] = {.lex_state = 2050, .external_lex_state = 6}, - [139] = {.lex_state = 2050, .external_lex_state = 6}, - [140] = {.lex_state = 2050, .external_lex_state = 6}, - [141] = {.lex_state = 2050, .external_lex_state = 6}, + [138] = {.lex_state = 2050, .external_lex_state = 8}, + [139] = {.lex_state = 2050, .external_lex_state = 8}, + [140] = {.lex_state = 2050, .external_lex_state = 8}, + [141] = {.lex_state = 2050, .external_lex_state = 8}, [142] = {.lex_state = 2050, .external_lex_state = 6}, - [143] = {.lex_state = 2050, .external_lex_state = 6}, + [143] = {.lex_state = 2050, .external_lex_state = 8}, [144] = {.lex_state = 2050, .external_lex_state = 6}, - [145] = {.lex_state = 2050, .external_lex_state = 6}, + [145] = {.lex_state = 2050, .external_lex_state = 8}, [146] = {.lex_state = 2050, .external_lex_state = 2}, [147] = {.lex_state = 2050, .external_lex_state = 7}, [148] = {.lex_state = 2050, .external_lex_state = 7}, - [149] = {.lex_state = 2050, .external_lex_state = 2}, - [150] = {.lex_state = 2050, .external_lex_state = 2}, + [149] = {.lex_state = 2050, .external_lex_state = 7}, + [150] = {.lex_state = 2050, .external_lex_state = 7}, [151] = {.lex_state = 2050, .external_lex_state = 7}, - [152] = {.lex_state = 2050, .external_lex_state = 2}, + [152] = {.lex_state = 2050, .external_lex_state = 7}, [153] = {.lex_state = 2050, .external_lex_state = 2}, [154] = {.lex_state = 2050, .external_lex_state = 2}, [155] = {.lex_state = 2050, .external_lex_state = 2}, - [156] = {.lex_state = 2050, .external_lex_state = 7}, - [157] = {.lex_state = 2050, .external_lex_state = 7}, + [156] = {.lex_state = 2050, .external_lex_state = 2}, + [157] = {.lex_state = 2050, .external_lex_state = 2}, [158] = {.lex_state = 2050, .external_lex_state = 2}, - [159] = {.lex_state = 2050, .external_lex_state = 7}, - [160] = {.lex_state = 2050, .external_lex_state = 7}, + [159] = {.lex_state = 2050, .external_lex_state = 2}, + [160] = {.lex_state = 2050, .external_lex_state = 2}, [161] = {.lex_state = 2050, .external_lex_state = 2}, - [162] = {.lex_state = 2050, .external_lex_state = 7}, - [163] = {.lex_state = 4, .external_lex_state = 8}, - [164] = {.lex_state = 2050, .external_lex_state = 2}, + [162] = {.lex_state = 2050, .external_lex_state = 2}, + [163] = {.lex_state = 2050, .external_lex_state = 7}, + [164] = {.lex_state = 2050, .external_lex_state = 7}, [165] = {.lex_state = 2050, .external_lex_state = 7}, - [166] = {.lex_state = 2050, .external_lex_state = 7}, + [166] = {.lex_state = 2050, .external_lex_state = 2}, [167] = {.lex_state = 2050, .external_lex_state = 7}, [168] = {.lex_state = 2050, .external_lex_state = 7}, - [169] = {.lex_state = 2050, .external_lex_state = 2}, - [170] = {.lex_state = 2050, .external_lex_state = 2}, - [171] = {.lex_state = 2, .external_lex_state = 9}, - [172] = {.lex_state = 2050, .external_lex_state = 10}, - [173] = {.lex_state = 2050, .external_lex_state = 10}, - [174] = {.lex_state = 2050, .external_lex_state = 10}, - [175] = {.lex_state = 2050, .external_lex_state = 10}, - [176] = {.lex_state = 2050, .external_lex_state = 10}, - [177] = {.lex_state = 2050, .external_lex_state = 10}, + [169] = {.lex_state = 2050, .external_lex_state = 7}, + [170] = {.lex_state = 2050, .external_lex_state = 3}, + [171] = {.lex_state = 4, .external_lex_state = 8}, + [172] = {.lex_state = 2050, .external_lex_state = 9}, + [173] = {.lex_state = 2050, .external_lex_state = 9}, + [174] = {.lex_state = 2050, .external_lex_state = 9}, + [175] = {.lex_state = 2050, .external_lex_state = 9}, + [176] = {.lex_state = 2050, .external_lex_state = 9}, + [177] = {.lex_state = 2050, .external_lex_state = 9}, [178] = {.lex_state = 2050, .external_lex_state = 3}, - [179] = {.lex_state = 2050, .external_lex_state = 3}, + [179] = {.lex_state = 2050, .external_lex_state = 9}, [180] = {.lex_state = 2050, .external_lex_state = 3}, - [181] = {.lex_state = 2050, .external_lex_state = 10}, - [182] = {.lex_state = 2050, .external_lex_state = 10}, - [183] = {.lex_state = 2050, .external_lex_state = 10}, - [184] = {.lex_state = 2050, .external_lex_state = 10}, - [185] = {.lex_state = 2050, .external_lex_state = 10}, - [186] = {.lex_state = 2050, .external_lex_state = 10}, - [187] = {.lex_state = 2050, .external_lex_state = 10}, - [188] = {.lex_state = 2050, .external_lex_state = 10}, - [189] = {.lex_state = 2050, .external_lex_state = 10}, - [190] = {.lex_state = 2050, .external_lex_state = 10}, - [191] = {.lex_state = 2050, .external_lex_state = 10}, - [192] = {.lex_state = 2050, .external_lex_state = 10}, - [193] = {.lex_state = 2050, .external_lex_state = 10}, - [194] = {.lex_state = 2050, .external_lex_state = 10}, - [195] = {.lex_state = 2050, .external_lex_state = 10}, - [196] = {.lex_state = 2050, .external_lex_state = 10}, - [197] = {.lex_state = 2, .external_lex_state = 9}, - [198] = {.lex_state = 2, .external_lex_state = 9}, - [199] = {.lex_state = 2050, .external_lex_state = 10}, - [200] = {.lex_state = 2050, .external_lex_state = 3}, - [201] = {.lex_state = 2, .external_lex_state = 9}, - [202] = {.lex_state = 2, .external_lex_state = 9}, - [203] = {.lex_state = 2, .external_lex_state = 9}, - [204] = {.lex_state = 2, .external_lex_state = 9}, - [205] = {.lex_state = 2, .external_lex_state = 9}, - [206] = {.lex_state = 2, .external_lex_state = 9}, - [207] = {.lex_state = 2, .external_lex_state = 9}, - [208] = {.lex_state = 2, .external_lex_state = 9}, - [209] = {.lex_state = 2, .external_lex_state = 9}, - [210] = {.lex_state = 2, .external_lex_state = 9}, - [211] = {.lex_state = 2, .external_lex_state = 9}, - [212] = {.lex_state = 2, .external_lex_state = 9}, - [213] = {.lex_state = 2, .external_lex_state = 9}, - [214] = {.lex_state = 2, .external_lex_state = 9}, - [215] = {.lex_state = 2, .external_lex_state = 9}, - [216] = {.lex_state = 2, .external_lex_state = 9}, - [217] = {.lex_state = 2, .external_lex_state = 9}, - [218] = {.lex_state = 2, .external_lex_state = 9}, - [219] = {.lex_state = 2, .external_lex_state = 9}, - [220] = {.lex_state = 2, .external_lex_state = 9}, - [221] = {.lex_state = 2, .external_lex_state = 9}, - [222] = {.lex_state = 2, .external_lex_state = 9}, - [223] = {.lex_state = 2, .external_lex_state = 9}, - [224] = {.lex_state = 2, .external_lex_state = 9}, - [225] = {.lex_state = 2, .external_lex_state = 9}, - [226] = {.lex_state = 2, .external_lex_state = 9}, - [227] = {.lex_state = 2, .external_lex_state = 9}, - [228] = {.lex_state = 2050, .external_lex_state = 3}, - [229] = {.lex_state = 2, .external_lex_state = 9}, - [230] = {.lex_state = 2, .external_lex_state = 9}, - [231] = {.lex_state = 2050, .external_lex_state = 3}, + [181] = {.lex_state = 2050, .external_lex_state = 3}, + [182] = {.lex_state = 2050, .external_lex_state = 9}, + [183] = {.lex_state = 2050, .external_lex_state = 9}, + [184] = {.lex_state = 2050, .external_lex_state = 9}, + [185] = {.lex_state = 2050, .external_lex_state = 9}, + [186] = {.lex_state = 2050, .external_lex_state = 9}, + [187] = {.lex_state = 2050, .external_lex_state = 9}, + [188] = {.lex_state = 2050, .external_lex_state = 9}, + [189] = {.lex_state = 2050, .external_lex_state = 9}, + [190] = {.lex_state = 2050, .external_lex_state = 3}, + [191] = {.lex_state = 2050, .external_lex_state = 9}, + [192] = {.lex_state = 2050, .external_lex_state = 3}, + [193] = {.lex_state = 2050, .external_lex_state = 9}, + [194] = {.lex_state = 2050, .external_lex_state = 9}, + [195] = {.lex_state = 2050, .external_lex_state = 9}, + [196] = {.lex_state = 2050, .external_lex_state = 9}, + [197] = {.lex_state = 2050, .external_lex_state = 9}, + [198] = {.lex_state = 2050, .external_lex_state = 9}, + [199] = {.lex_state = 2050, .external_lex_state = 9}, + [200] = {.lex_state = 2, .external_lex_state = 10}, + [201] = {.lex_state = 2050, .external_lex_state = 6}, + [202] = {.lex_state = 2050, .external_lex_state = 6}, + [203] = {.lex_state = 2050, .external_lex_state = 6}, + [204] = {.lex_state = 2050, .external_lex_state = 11}, + [205] = {.lex_state = 2, .external_lex_state = 10}, + [206] = {.lex_state = 2050, .external_lex_state = 5}, + [207] = {.lex_state = 2050, .external_lex_state = 5}, + [208] = {.lex_state = 2050, .external_lex_state = 5}, + [209] = {.lex_state = 2050, .external_lex_state = 6}, + [210] = {.lex_state = 2050, .external_lex_state = 11}, + [211] = {.lex_state = 2050, .external_lex_state = 6}, + [212] = {.lex_state = 2050, .external_lex_state = 11}, + [213] = {.lex_state = 2050, .external_lex_state = 6}, + [214] = {.lex_state = 2050, .external_lex_state = 6}, + [215] = {.lex_state = 2050, .external_lex_state = 6}, + [216] = {.lex_state = 2050, .external_lex_state = 5}, + [217] = {.lex_state = 2050, .external_lex_state = 6}, + [218] = {.lex_state = 2050, .external_lex_state = 11}, + [219] = {.lex_state = 2050, .external_lex_state = 6}, + [220] = {.lex_state = 2050, .external_lex_state = 11}, + [221] = {.lex_state = 2050, .external_lex_state = 6}, + [222] = {.lex_state = 2050, .external_lex_state = 6}, + [223] = {.lex_state = 2050, .external_lex_state = 5}, + [224] = {.lex_state = 2050, .external_lex_state = 6}, + [225] = {.lex_state = 2050, .external_lex_state = 6}, + [226] = {.lex_state = 2050, .external_lex_state = 6}, + [227] = {.lex_state = 2050, .external_lex_state = 5}, + [228] = {.lex_state = 2050, .external_lex_state = 6}, + [229] = {.lex_state = 2050, .external_lex_state = 5}, + [230] = {.lex_state = 2050, .external_lex_state = 6}, + [231] = {.lex_state = 2050, .external_lex_state = 11}, [232] = {.lex_state = 2050, .external_lex_state = 6}, [233] = {.lex_state = 2050, .external_lex_state = 6}, - [234] = {.lex_state = 2050, .external_lex_state = 11}, + [234] = {.lex_state = 2050, .external_lex_state = 6}, [235] = {.lex_state = 2050, .external_lex_state = 6}, [236] = {.lex_state = 2050, .external_lex_state = 6}, [237] = {.lex_state = 2050, .external_lex_state = 6}, - [238] = {.lex_state = 2050, .external_lex_state = 11}, + [238] = {.lex_state = 2050, .external_lex_state = 6}, [239] = {.lex_state = 2050, .external_lex_state = 6}, [240] = {.lex_state = 2050, .external_lex_state = 6}, [241] = {.lex_state = 2050, .external_lex_state = 6}, @@ -17339,124 +17346,124 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [266] = {.lex_state = 2050, .external_lex_state = 6}, [267] = {.lex_state = 2050, .external_lex_state = 6}, [268] = {.lex_state = 2050, .external_lex_state = 6}, - [269] = {.lex_state = 2050, .external_lex_state = 6}, - [270] = {.lex_state = 2050, .external_lex_state = 6}, + [269] = {.lex_state = 2, .external_lex_state = 10}, + [270] = {.lex_state = 2, .external_lex_state = 10}, [271] = {.lex_state = 2050, .external_lex_state = 11}, [272] = {.lex_state = 2050, .external_lex_state = 6}, [273] = {.lex_state = 2050, .external_lex_state = 6}, - [274] = {.lex_state = 2050, .external_lex_state = 6}, + [274] = {.lex_state = 2050, .external_lex_state = 11}, [275] = {.lex_state = 2050, .external_lex_state = 6}, - [276] = {.lex_state = 2050, .external_lex_state = 6}, - [277] = {.lex_state = 2050, .external_lex_state = 6}, + [276] = {.lex_state = 2050, .external_lex_state = 11}, + [277] = {.lex_state = 2050, .external_lex_state = 11}, [278] = {.lex_state = 2050, .external_lex_state = 6}, - [279] = {.lex_state = 2050, .external_lex_state = 11}, + [279] = {.lex_state = 2050, .external_lex_state = 5}, [280] = {.lex_state = 2050, .external_lex_state = 6}, [281] = {.lex_state = 2050, .external_lex_state = 6}, [282] = {.lex_state = 2050, .external_lex_state = 11}, - [283] = {.lex_state = 2050, .external_lex_state = 11}, - [284] = {.lex_state = 2050, .external_lex_state = 11}, + [283] = {.lex_state = 2050, .external_lex_state = 5}, + [284] = {.lex_state = 2050, .external_lex_state = 6}, [285] = {.lex_state = 2050, .external_lex_state = 11}, [286] = {.lex_state = 2050, .external_lex_state = 5}, - [287] = {.lex_state = 2050, .external_lex_state = 11}, - [288] = {.lex_state = 4, .external_lex_state = 8}, - [289] = {.lex_state = 4, .external_lex_state = 12}, - [290] = {.lex_state = 4, .external_lex_state = 12}, - [291] = {.lex_state = 4, .external_lex_state = 8}, - [292] = {.lex_state = 4, .external_lex_state = 12}, - [293] = {.lex_state = 2050, .external_lex_state = 11}, - [294] = {.lex_state = 2050, .external_lex_state = 11}, - [295] = {.lex_state = 2050, .external_lex_state = 11}, - [296] = {.lex_state = 2050, .external_lex_state = 6}, + [287] = {.lex_state = 2050, .external_lex_state = 5}, + [288] = {.lex_state = 2050, .external_lex_state = 11}, + [289] = {.lex_state = 2, .external_lex_state = 10}, + [290] = {.lex_state = 2, .external_lex_state = 10}, + [291] = {.lex_state = 2050, .external_lex_state = 6}, + [292] = {.lex_state = 2050, .external_lex_state = 11}, + [293] = {.lex_state = 2050, .external_lex_state = 5}, + [294] = {.lex_state = 2050, .external_lex_state = 5}, + [295] = {.lex_state = 2050, .external_lex_state = 5}, + [296] = {.lex_state = 2050, .external_lex_state = 5}, [297] = {.lex_state = 2050, .external_lex_state = 5}, [298] = {.lex_state = 2050, .external_lex_state = 5}, [299] = {.lex_state = 2050, .external_lex_state = 5}, [300] = {.lex_state = 2050, .external_lex_state = 5}, - [301] = {.lex_state = 2050, .external_lex_state = 5}, + [301] = {.lex_state = 2050, .external_lex_state = 11}, [302] = {.lex_state = 2050, .external_lex_state = 5}, [303] = {.lex_state = 2050, .external_lex_state = 5}, [304] = {.lex_state = 2050, .external_lex_state = 5}, [305] = {.lex_state = 2050, .external_lex_state = 5}, - [306] = {.lex_state = 2050, .external_lex_state = 5}, - [307] = {.lex_state = 4, .external_lex_state = 8}, - [308] = {.lex_state = 4, .external_lex_state = 8}, - [309] = {.lex_state = 4, .external_lex_state = 12}, - [310] = {.lex_state = 2050, .external_lex_state = 5}, - [311] = {.lex_state = 2050, .external_lex_state = 5}, - [312] = {.lex_state = 2050, .external_lex_state = 5}, - [313] = {.lex_state = 2050, .external_lex_state = 5}, - [314] = {.lex_state = 2050, .external_lex_state = 5}, - [315] = {.lex_state = 2050, .external_lex_state = 5}, - [316] = {.lex_state = 4, .external_lex_state = 8}, - [317] = {.lex_state = 2050, .external_lex_state = 6}, - [318] = {.lex_state = 2050, .external_lex_state = 6}, - [319] = {.lex_state = 2050, .external_lex_state = 5}, - [320] = {.lex_state = 2050, .external_lex_state = 6}, - [321] = {.lex_state = 2050, .external_lex_state = 6}, - [322] = {.lex_state = 2050, .external_lex_state = 6}, - [323] = {.lex_state = 2050, .external_lex_state = 6}, + [306] = {.lex_state = 2050, .external_lex_state = 6}, + [307] = {.lex_state = 2050, .external_lex_state = 6}, + [308] = {.lex_state = 2, .external_lex_state = 10}, + [309] = {.lex_state = 2, .external_lex_state = 10}, + [310] = {.lex_state = 2, .external_lex_state = 10}, + [311] = {.lex_state = 2, .external_lex_state = 10}, + [312] = {.lex_state = 2, .external_lex_state = 10}, + [313] = {.lex_state = 2, .external_lex_state = 10}, + [314] = {.lex_state = 2, .external_lex_state = 10}, + [315] = {.lex_state = 2, .external_lex_state = 10}, + [316] = {.lex_state = 2, .external_lex_state = 10}, + [317] = {.lex_state = 2, .external_lex_state = 10}, + [318] = {.lex_state = 2, .external_lex_state = 10}, + [319] = {.lex_state = 2, .external_lex_state = 10}, + [320] = {.lex_state = 2, .external_lex_state = 10}, + [321] = {.lex_state = 2, .external_lex_state = 10}, + [322] = {.lex_state = 2, .external_lex_state = 10}, + [323] = {.lex_state = 2, .external_lex_state = 10}, [324] = {.lex_state = 2050, .external_lex_state = 6}, - [325] = {.lex_state = 2050, .external_lex_state = 6}, - [326] = {.lex_state = 2050, .external_lex_state = 6}, - [327] = {.lex_state = 2050, .external_lex_state = 6}, - [328] = {.lex_state = 2050, .external_lex_state = 6}, - [329] = {.lex_state = 2050, .external_lex_state = 6}, - [330] = {.lex_state = 2050, .external_lex_state = 5}, - [331] = {.lex_state = 2050, .external_lex_state = 5}, - [332] = {.lex_state = 2050, .external_lex_state = 5}, - [333] = {.lex_state = 2050, .external_lex_state = 11}, - [334] = {.lex_state = 2050, .external_lex_state = 11}, + [325] = {.lex_state = 2, .external_lex_state = 10}, + [326] = {.lex_state = 2, .external_lex_state = 10}, + [327] = {.lex_state = 2, .external_lex_state = 10}, + [328] = {.lex_state = 2, .external_lex_state = 10}, + [329] = {.lex_state = 2, .external_lex_state = 10}, + [330] = {.lex_state = 2, .external_lex_state = 10}, + [331] = {.lex_state = 2, .external_lex_state = 10}, + [332] = {.lex_state = 2, .external_lex_state = 10}, + [333] = {.lex_state = 2, .external_lex_state = 10}, + [334] = {.lex_state = 2050, .external_lex_state = 6}, [335] = {.lex_state = 2050, .external_lex_state = 6}, - [336] = {.lex_state = 2050, .external_lex_state = 5}, + [336] = {.lex_state = 2050, .external_lex_state = 6}, [337] = {.lex_state = 2050, .external_lex_state = 6}, - [338] = {.lex_state = 2050, .external_lex_state = 6}, - [339] = {.lex_state = 2050, .external_lex_state = 6}, - [340] = {.lex_state = 4, .external_lex_state = 8}, - [341] = {.lex_state = 2050, .external_lex_state = 6}, + [338] = {.lex_state = 2050, .external_lex_state = 11}, + [339] = {.lex_state = 2050, .external_lex_state = 11}, + [340] = {.lex_state = 2050, .external_lex_state = 11}, + [341] = {.lex_state = 2050, .external_lex_state = 11}, [342] = {.lex_state = 2050, .external_lex_state = 11}, - [343] = {.lex_state = 2050, .external_lex_state = 6}, - [344] = {.lex_state = 2050, .external_lex_state = 6}, - [345] = {.lex_state = 2050, .external_lex_state = 5}, + [343] = {.lex_state = 2050, .external_lex_state = 11}, + [344] = {.lex_state = 2050, .external_lex_state = 11}, + [345] = {.lex_state = 2, .external_lex_state = 10}, [346] = {.lex_state = 2050, .external_lex_state = 11}, - [347] = {.lex_state = 4, .external_lex_state = 12}, - [348] = {.lex_state = 2050, .external_lex_state = 11}, - [349] = {.lex_state = 2050, .external_lex_state = 6}, - [350] = {.lex_state = 2050, .external_lex_state = 11}, - [351] = {.lex_state = 2050, .external_lex_state = 6}, - [352] = {.lex_state = 2050, .external_lex_state = 6}, - [353] = {.lex_state = 2050, .external_lex_state = 11}, - [354] = {.lex_state = 2050, .external_lex_state = 11}, - [355] = {.lex_state = 2050, .external_lex_state = 11}, - [356] = {.lex_state = 2050, .external_lex_state = 11}, - [357] = {.lex_state = 2050, .external_lex_state = 11}, - [358] = {.lex_state = 2050, .external_lex_state = 2}, - [359] = {.lex_state = 2050, .external_lex_state = 7}, - [360] = {.lex_state = 4, .external_lex_state = 13}, - [361] = {.lex_state = 4, .external_lex_state = 13}, - [362] = {.lex_state = 4, .external_lex_state = 13}, - [363] = {.lex_state = 4, .external_lex_state = 13}, - [364] = {.lex_state = 4, .external_lex_state = 13}, - [365] = {.lex_state = 4, .external_lex_state = 13}, + [347] = {.lex_state = 2050, .external_lex_state = 2}, + [348] = {.lex_state = 2050, .external_lex_state = 7}, + [349] = {.lex_state = 2050, .external_lex_state = 7}, + [350] = {.lex_state = 2050, .external_lex_state = 7}, + [351] = {.lex_state = 2050, .external_lex_state = 7}, + [352] = {.lex_state = 2050, .external_lex_state = 7}, + [353] = {.lex_state = 2050, .external_lex_state = 7}, + [354] = {.lex_state = 2050, .external_lex_state = 7}, + [355] = {.lex_state = 2050, .external_lex_state = 7}, + [356] = {.lex_state = 2050, .external_lex_state = 7}, + [357] = {.lex_state = 2050, .external_lex_state = 7}, + [358] = {.lex_state = 2050, .external_lex_state = 7}, + [359] = {.lex_state = 2050, .external_lex_state = 2}, + [360] = {.lex_state = 2050, .external_lex_state = 2}, + [361] = {.lex_state = 2050, .external_lex_state = 2}, + [362] = {.lex_state = 2050, .external_lex_state = 2}, + [363] = {.lex_state = 2050, .external_lex_state = 2}, + [364] = {.lex_state = 2050, .external_lex_state = 2}, + [365] = {.lex_state = 2050, .external_lex_state = 2}, [366] = {.lex_state = 2050, .external_lex_state = 2}, [367] = {.lex_state = 2050, .external_lex_state = 2}, [368] = {.lex_state = 2050, .external_lex_state = 2}, [369] = {.lex_state = 2050, .external_lex_state = 2}, [370] = {.lex_state = 2050, .external_lex_state = 2}, [371] = {.lex_state = 2050, .external_lex_state = 2}, - [372] = {.lex_state = 4, .external_lex_state = 13}, + [372] = {.lex_state = 2050, .external_lex_state = 2}, [373] = {.lex_state = 2050, .external_lex_state = 2}, [374] = {.lex_state = 2050, .external_lex_state = 2}, [375] = {.lex_state = 2050, .external_lex_state = 2}, - [376] = {.lex_state = 4, .external_lex_state = 13}, + [376] = {.lex_state = 2050, .external_lex_state = 2}, [377] = {.lex_state = 2050, .external_lex_state = 2}, [378] = {.lex_state = 2050, .external_lex_state = 2}, [379] = {.lex_state = 2050, .external_lex_state = 2}, [380] = {.lex_state = 2050, .external_lex_state = 2}, [381] = {.lex_state = 2050, .external_lex_state = 2}, - [382] = {.lex_state = 4, .external_lex_state = 14}, + [382] = {.lex_state = 2050, .external_lex_state = 2}, [383] = {.lex_state = 2050, .external_lex_state = 2}, [384] = {.lex_state = 2050, .external_lex_state = 2}, [385] = {.lex_state = 2050, .external_lex_state = 2}, - [386] = {.lex_state = 2050, .external_lex_state = 7}, + [386] = {.lex_state = 2050, .external_lex_state = 2}, [387] = {.lex_state = 2050, .external_lex_state = 2}, [388] = {.lex_state = 2050, .external_lex_state = 2}, [389] = {.lex_state = 2050, .external_lex_state = 2}, @@ -17475,304 +17482,304 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [402] = {.lex_state = 2050, .external_lex_state = 2}, [403] = {.lex_state = 2050, .external_lex_state = 2}, [404] = {.lex_state = 2050, .external_lex_state = 2}, - [405] = {.lex_state = 2050, .external_lex_state = 2}, - [406] = {.lex_state = 2050, .external_lex_state = 2}, - [407] = {.lex_state = 2050, .external_lex_state = 2}, - [408] = {.lex_state = 2050, .external_lex_state = 2}, - [409] = {.lex_state = 2050, .external_lex_state = 2}, - [410] = {.lex_state = 4, .external_lex_state = 13}, - [411] = {.lex_state = 4, .external_lex_state = 13}, - [412] = {.lex_state = 4, .external_lex_state = 13}, - [413] = {.lex_state = 4, .external_lex_state = 13}, - [414] = {.lex_state = 4, .external_lex_state = 13}, - [415] = {.lex_state = 4, .external_lex_state = 13}, + [405] = {.lex_state = 2050, .external_lex_state = 7}, + [406] = {.lex_state = 2050, .external_lex_state = 7}, + [407] = {.lex_state = 2050, .external_lex_state = 7}, + [408] = {.lex_state = 2050, .external_lex_state = 7}, + [409] = {.lex_state = 2050, .external_lex_state = 7}, + [410] = {.lex_state = 2050, .external_lex_state = 7}, + [411] = {.lex_state = 2050, .external_lex_state = 7}, + [412] = {.lex_state = 2050, .external_lex_state = 7}, + [413] = {.lex_state = 2050, .external_lex_state = 7}, + [414] = {.lex_state = 2050, .external_lex_state = 7}, + [415] = {.lex_state = 2050, .external_lex_state = 7}, [416] = {.lex_state = 2050, .external_lex_state = 7}, - [417] = {.lex_state = 2050, .external_lex_state = 7}, - [418] = {.lex_state = 1, .external_lex_state = 9}, - [419] = {.lex_state = 1, .external_lex_state = 9}, - [420] = {.lex_state = 1, .external_lex_state = 9}, + [417] = {.lex_state = 4, .external_lex_state = 8}, + [418] = {.lex_state = 4, .external_lex_state = 12}, + [419] = {.lex_state = 2050, .external_lex_state = 7}, + [420] = {.lex_state = 2050, .external_lex_state = 7}, [421] = {.lex_state = 2050, .external_lex_state = 7}, [422] = {.lex_state = 2050, .external_lex_state = 7}, - [423] = {.lex_state = 2050, .external_lex_state = 7}, + [423] = {.lex_state = 2050, .external_lex_state = 2}, [424] = {.lex_state = 2050, .external_lex_state = 7}, - [425] = {.lex_state = 2050, .external_lex_state = 7}, + [425] = {.lex_state = 2050, .external_lex_state = 2}, [426] = {.lex_state = 2050, .external_lex_state = 7}, [427] = {.lex_state = 2050, .external_lex_state = 7}, - [428] = {.lex_state = 2050, .external_lex_state = 7}, - [429] = {.lex_state = 2050, .external_lex_state = 7}, - [430] = {.lex_state = 2050, .external_lex_state = 7}, - [431] = {.lex_state = 2050, .external_lex_state = 7}, - [432] = {.lex_state = 2050, .external_lex_state = 7}, + [428] = {.lex_state = 2050, .external_lex_state = 2}, + [429] = {.lex_state = 2050, .external_lex_state = 2}, + [430] = {.lex_state = 2050, .external_lex_state = 2}, + [431] = {.lex_state = 2050, .external_lex_state = 2}, + [432] = {.lex_state = 2050, .external_lex_state = 2}, [433] = {.lex_state = 2050, .external_lex_state = 2}, - [434] = {.lex_state = 2050, .external_lex_state = 7}, + [434] = {.lex_state = 2050, .external_lex_state = 2}, [435] = {.lex_state = 2050, .external_lex_state = 2}, - [436] = {.lex_state = 2050, .external_lex_state = 7}, - [437] = {.lex_state = 4, .external_lex_state = 13}, - [438] = {.lex_state = 2050, .external_lex_state = 7}, - [439] = {.lex_state = 4, .external_lex_state = 13}, - [440] = {.lex_state = 2050, .external_lex_state = 2}, + [436] = {.lex_state = 2050, .external_lex_state = 2}, + [437] = {.lex_state = 2050, .external_lex_state = 7}, + [438] = {.lex_state = 2050, .external_lex_state = 2}, + [439] = {.lex_state = 2050, .external_lex_state = 7}, + [440] = {.lex_state = 2050, .external_lex_state = 7}, [441] = {.lex_state = 2050, .external_lex_state = 7}, - [442] = {.lex_state = 2050, .external_lex_state = 2}, - [443] = {.lex_state = 2050, .external_lex_state = 2}, - [444] = {.lex_state = 4, .external_lex_state = 13}, - [445] = {.lex_state = 2050, .external_lex_state = 2}, - [446] = {.lex_state = 2050, .external_lex_state = 2}, - [447] = {.lex_state = 2050, .external_lex_state = 2}, - [448] = {.lex_state = 2050, .external_lex_state = 2}, - [449] = {.lex_state = 2050, .external_lex_state = 2}, - [450] = {.lex_state = 2050, .external_lex_state = 2}, - [451] = {.lex_state = 2050, .external_lex_state = 2}, - [452] = {.lex_state = 2050, .external_lex_state = 2}, - [453] = {.lex_state = 2050, .external_lex_state = 7}, + [442] = {.lex_state = 2050, .external_lex_state = 7}, + [443] = {.lex_state = 2050, .external_lex_state = 7}, + [444] = {.lex_state = 2050, .external_lex_state = 7}, + [445] = {.lex_state = 2050, .external_lex_state = 7}, + [446] = {.lex_state = 4, .external_lex_state = 8}, + [447] = {.lex_state = 4, .external_lex_state = 12}, + [448] = {.lex_state = 4, .external_lex_state = 12}, + [449] = {.lex_state = 4, .external_lex_state = 8}, + [450] = {.lex_state = 4, .external_lex_state = 12}, + [451] = {.lex_state = 2050, .external_lex_state = 7}, + [452] = {.lex_state = 2050, .external_lex_state = 7}, + [453] = {.lex_state = 2050, .external_lex_state = 2}, [454] = {.lex_state = 2050, .external_lex_state = 7}, - [455] = {.lex_state = 1, .external_lex_state = 9}, - [456] = {.lex_state = 1, .external_lex_state = 9}, - [457] = {.lex_state = 1, .external_lex_state = 9}, - [458] = {.lex_state = 1, .external_lex_state = 9}, - [459] = {.lex_state = 2050, .external_lex_state = 7}, + [455] = {.lex_state = 2050, .external_lex_state = 2}, + [456] = {.lex_state = 2050, .external_lex_state = 7}, + [457] = {.lex_state = 2050, .external_lex_state = 2}, + [458] = {.lex_state = 2050, .external_lex_state = 7}, + [459] = {.lex_state = 2050, .external_lex_state = 2}, [460] = {.lex_state = 2050, .external_lex_state = 7}, - [461] = {.lex_state = 2050, .external_lex_state = 7}, + [461] = {.lex_state = 2050, .external_lex_state = 2}, [462] = {.lex_state = 2050, .external_lex_state = 7}, [463] = {.lex_state = 2050, .external_lex_state = 7}, [464] = {.lex_state = 2050, .external_lex_state = 7}, - [465] = {.lex_state = 2050, .external_lex_state = 2}, - [466] = {.lex_state = 4, .external_lex_state = 9}, - [467] = {.lex_state = 2050, .external_lex_state = 2}, - [468] = {.lex_state = 2050, .external_lex_state = 7}, - [469] = {.lex_state = 2050, .external_lex_state = 2}, - [470] = {.lex_state = 2050, .external_lex_state = 2}, - [471] = {.lex_state = 2050, .external_lex_state = 2}, - [472] = {.lex_state = 4, .external_lex_state = 13}, - [473] = {.lex_state = 2050, .external_lex_state = 7}, - [474] = {.lex_state = 1, .external_lex_state = 9}, - [475] = {.lex_state = 1, .external_lex_state = 9}, - [476] = {.lex_state = 1, .external_lex_state = 9}, - [477] = {.lex_state = 1, .external_lex_state = 9}, + [465] = {.lex_state = 2050, .external_lex_state = 7}, + [466] = {.lex_state = 2050, .external_lex_state = 7}, + [467] = {.lex_state = 4, .external_lex_state = 8}, + [468] = {.lex_state = 4, .external_lex_state = 8}, + [469] = {.lex_state = 4, .external_lex_state = 12}, + [470] = {.lex_state = 2050, .external_lex_state = 7}, + [471] = {.lex_state = 2050, .external_lex_state = 7}, + [472] = {.lex_state = 2050, .external_lex_state = 7}, + [473] = {.lex_state = 2050, .external_lex_state = 2}, + [474] = {.lex_state = 2050, .external_lex_state = 7}, + [475] = {.lex_state = 2050, .external_lex_state = 7}, + [476] = {.lex_state = 2050, .external_lex_state = 2}, + [477] = {.lex_state = 2050, .external_lex_state = 7}, [478] = {.lex_state = 2050, .external_lex_state = 7}, [479] = {.lex_state = 2050, .external_lex_state = 2}, [480] = {.lex_state = 2050, .external_lex_state = 7}, [481] = {.lex_state = 2050, .external_lex_state = 7}, - [482] = {.lex_state = 2050, .external_lex_state = 2}, - [483] = {.lex_state = 2050, .external_lex_state = 7}, + [482] = {.lex_state = 2050, .external_lex_state = 7}, + [483] = {.lex_state = 4, .external_lex_state = 8}, [484] = {.lex_state = 2050, .external_lex_state = 7}, - [485] = {.lex_state = 4, .external_lex_state = 9}, - [486] = {.lex_state = 2050, .external_lex_state = 2}, + [485] = {.lex_state = 2050, .external_lex_state = 7}, + [486] = {.lex_state = 2050, .external_lex_state = 7}, [487] = {.lex_state = 2050, .external_lex_state = 7}, [488] = {.lex_state = 2050, .external_lex_state = 7}, [489] = {.lex_state = 2050, .external_lex_state = 7}, - [490] = {.lex_state = 2050, .external_lex_state = 2}, - [491] = {.lex_state = 4, .external_lex_state = 9}, - [492] = {.lex_state = 2050, .external_lex_state = 2}, - [493] = {.lex_state = 1, .external_lex_state = 9}, - [494] = {.lex_state = 1, .external_lex_state = 9}, - [495] = {.lex_state = 1, .external_lex_state = 9}, - [496] = {.lex_state = 1, .external_lex_state = 9}, - [497] = {.lex_state = 2050, .external_lex_state = 7}, - [498] = {.lex_state = 2050, .external_lex_state = 7}, - [499] = {.lex_state = 1, .external_lex_state = 9}, - [500] = {.lex_state = 1, .external_lex_state = 9}, - [501] = {.lex_state = 1, .external_lex_state = 9}, - [502] = {.lex_state = 1, .external_lex_state = 9}, - [503] = {.lex_state = 2050, .external_lex_state = 7}, - [504] = {.lex_state = 1, .external_lex_state = 9}, - [505] = {.lex_state = 1, .external_lex_state = 9}, - [506] = {.lex_state = 1, .external_lex_state = 9}, - [507] = {.lex_state = 1, .external_lex_state = 9}, - [508] = {.lex_state = 2050, .external_lex_state = 2}, - [509] = {.lex_state = 2050, .external_lex_state = 7}, - [510] = {.lex_state = 1, .external_lex_state = 9}, - [511] = {.lex_state = 1, .external_lex_state = 9}, - [512] = {.lex_state = 1, .external_lex_state = 9}, - [513] = {.lex_state = 1, .external_lex_state = 9}, - [514] = {.lex_state = 2050, .external_lex_state = 7}, - [515] = {.lex_state = 1, .external_lex_state = 9}, - [516] = {.lex_state = 1, .external_lex_state = 9}, - [517] = {.lex_state = 1, .external_lex_state = 9}, - [518] = {.lex_state = 1, .external_lex_state = 9}, - [519] = {.lex_state = 2050, .external_lex_state = 2}, - [520] = {.lex_state = 2050, .external_lex_state = 7}, - [521] = {.lex_state = 1, .external_lex_state = 9}, - [522] = {.lex_state = 1, .external_lex_state = 9}, - [523] = {.lex_state = 1, .external_lex_state = 9}, - [524] = {.lex_state = 1, .external_lex_state = 9}, - [525] = {.lex_state = 2050, .external_lex_state = 2}, - [526] = {.lex_state = 2050, .external_lex_state = 7}, - [527] = {.lex_state = 1, .external_lex_state = 9}, - [528] = {.lex_state = 1, .external_lex_state = 9}, - [529] = {.lex_state = 1, .external_lex_state = 9}, - [530] = {.lex_state = 1, .external_lex_state = 9}, - [531] = {.lex_state = 2050, .external_lex_state = 7}, - [532] = {.lex_state = 1, .external_lex_state = 9}, - [533] = {.lex_state = 1, .external_lex_state = 9}, - [534] = {.lex_state = 1, .external_lex_state = 9}, - [535] = {.lex_state = 1, .external_lex_state = 9}, - [536] = {.lex_state = 2050, .external_lex_state = 7}, - [537] = {.lex_state = 2050, .external_lex_state = 7}, - [538] = {.lex_state = 1, .external_lex_state = 9}, - [539] = {.lex_state = 1, .external_lex_state = 9}, - [540] = {.lex_state = 1, .external_lex_state = 9}, - [541] = {.lex_state = 1, .external_lex_state = 9}, - [542] = {.lex_state = 2050, .external_lex_state = 2}, - [543] = {.lex_state = 2050, .external_lex_state = 7}, - [544] = {.lex_state = 1, .external_lex_state = 9}, - [545] = {.lex_state = 1, .external_lex_state = 9}, - [546] = {.lex_state = 1, .external_lex_state = 9}, - [547] = {.lex_state = 1, .external_lex_state = 9}, - [548] = {.lex_state = 2050, .external_lex_state = 7}, - [549] = {.lex_state = 2050, .external_lex_state = 7}, - [550] = {.lex_state = 1, .external_lex_state = 9}, - [551] = {.lex_state = 1, .external_lex_state = 9}, - [552] = {.lex_state = 1, .external_lex_state = 9}, - [553] = {.lex_state = 1, .external_lex_state = 9}, - [554] = {.lex_state = 2050, .external_lex_state = 7}, - [555] = {.lex_state = 2050, .external_lex_state = 7}, - [556] = {.lex_state = 1, .external_lex_state = 9}, - [557] = {.lex_state = 1, .external_lex_state = 9}, - [558] = {.lex_state = 1, .external_lex_state = 9}, - [559] = {.lex_state = 1, .external_lex_state = 9}, - [560] = {.lex_state = 2050, .external_lex_state = 7}, - [561] = {.lex_state = 2050, .external_lex_state = 7}, - [562] = {.lex_state = 1, .external_lex_state = 9}, - [563] = {.lex_state = 1, .external_lex_state = 9}, - [564] = {.lex_state = 1, .external_lex_state = 9}, - [565] = {.lex_state = 1, .external_lex_state = 9}, - [566] = {.lex_state = 2050, .external_lex_state = 7}, - [567] = {.lex_state = 2050, .external_lex_state = 7}, - [568] = {.lex_state = 2050, .external_lex_state = 7}, - [569] = {.lex_state = 2050, .external_lex_state = 7}, - [570] = {.lex_state = 2050, .external_lex_state = 7}, - [571] = {.lex_state = 2050, .external_lex_state = 7}, - [572] = {.lex_state = 2050, .external_lex_state = 7}, - [573] = {.lex_state = 2050, .external_lex_state = 7}, - [574] = {.lex_state = 2050, .external_lex_state = 7}, - [575] = {.lex_state = 2050, .external_lex_state = 7}, - [576] = {.lex_state = 2050, .external_lex_state = 7}, - [577] = {.lex_state = 2050, .external_lex_state = 7}, - [578] = {.lex_state = 2050, .external_lex_state = 7}, - [579] = {.lex_state = 2050, .external_lex_state = 7}, - [580] = {.lex_state = 4, .external_lex_state = 14}, + [490] = {.lex_state = 2050, .external_lex_state = 7}, + [491] = {.lex_state = 2050, .external_lex_state = 7}, + [492] = {.lex_state = 2050, .external_lex_state = 7}, + [493] = {.lex_state = 2050, .external_lex_state = 7}, + [494] = {.lex_state = 2050, .external_lex_state = 2}, + [495] = {.lex_state = 1, .external_lex_state = 10}, + [496] = {.lex_state = 4, .external_lex_state = 13}, + [497] = {.lex_state = 1, .external_lex_state = 10}, + [498] = {.lex_state = 1, .external_lex_state = 10}, + [499] = {.lex_state = 1, .external_lex_state = 10}, + [500] = {.lex_state = 1, .external_lex_state = 10}, + [501] = {.lex_state = 4, .external_lex_state = 13}, + [502] = {.lex_state = 4, .external_lex_state = 13}, + [503] = {.lex_state = 4, .external_lex_state = 13}, + [504] = {.lex_state = 4, .external_lex_state = 10}, + [505] = {.lex_state = 4, .external_lex_state = 13}, + [506] = {.lex_state = 4, .external_lex_state = 13}, + [507] = {.lex_state = 4, .external_lex_state = 13}, + [508] = {.lex_state = 4, .external_lex_state = 13}, + [509] = {.lex_state = 4, .external_lex_state = 14}, + [510] = {.lex_state = 1, .external_lex_state = 10}, + [511] = {.lex_state = 1, .external_lex_state = 10}, + [512] = {.lex_state = 1, .external_lex_state = 10}, + [513] = {.lex_state = 1, .external_lex_state = 10}, + [514] = {.lex_state = 1, .external_lex_state = 10}, + [515] = {.lex_state = 1, .external_lex_state = 10}, + [516] = {.lex_state = 1, .external_lex_state = 10}, + [517] = {.lex_state = 4, .external_lex_state = 10}, + [518] = {.lex_state = 1, .external_lex_state = 10}, + [519] = {.lex_state = 1, .external_lex_state = 10}, + [520] = {.lex_state = 1, .external_lex_state = 10}, + [521] = {.lex_state = 1, .external_lex_state = 10}, + [522] = {.lex_state = 1, .external_lex_state = 10}, + [523] = {.lex_state = 1, .external_lex_state = 10}, + [524] = {.lex_state = 1, .external_lex_state = 10}, + [525] = {.lex_state = 1, .external_lex_state = 10}, + [526] = {.lex_state = 1, .external_lex_state = 10}, + [527] = {.lex_state = 4, .external_lex_state = 13}, + [528] = {.lex_state = 1, .external_lex_state = 10}, + [529] = {.lex_state = 1, .external_lex_state = 10}, + [530] = {.lex_state = 1, .external_lex_state = 10}, + [531] = {.lex_state = 1, .external_lex_state = 10}, + [532] = {.lex_state = 4, .external_lex_state = 13}, + [533] = {.lex_state = 1, .external_lex_state = 10}, + [534] = {.lex_state = 1, .external_lex_state = 10}, + [535] = {.lex_state = 1, .external_lex_state = 10}, + [536] = {.lex_state = 4, .external_lex_state = 10}, + [537] = {.lex_state = 1, .external_lex_state = 10}, + [538] = {.lex_state = 1, .external_lex_state = 10}, + [539] = {.lex_state = 4, .external_lex_state = 14}, + [540] = {.lex_state = 1, .external_lex_state = 10}, + [541] = {.lex_state = 1, .external_lex_state = 10}, + [542] = {.lex_state = 1, .external_lex_state = 10}, + [543] = {.lex_state = 1, .external_lex_state = 10}, + [544] = {.lex_state = 1, .external_lex_state = 10}, + [545] = {.lex_state = 4, .external_lex_state = 13}, + [546] = {.lex_state = 1, .external_lex_state = 10}, + [547] = {.lex_state = 1, .external_lex_state = 10}, + [548] = {.lex_state = 1, .external_lex_state = 10}, + [549] = {.lex_state = 1, .external_lex_state = 10}, + [550] = {.lex_state = 1, .external_lex_state = 10}, + [551] = {.lex_state = 1, .external_lex_state = 10}, + [552] = {.lex_state = 1, .external_lex_state = 10}, + [553] = {.lex_state = 1, .external_lex_state = 10}, + [554] = {.lex_state = 1, .external_lex_state = 10}, + [555] = {.lex_state = 1, .external_lex_state = 10}, + [556] = {.lex_state = 1, .external_lex_state = 10}, + [557] = {.lex_state = 1, .external_lex_state = 10}, + [558] = {.lex_state = 1, .external_lex_state = 10}, + [559] = {.lex_state = 1, .external_lex_state = 10}, + [560] = {.lex_state = 1, .external_lex_state = 10}, + [561] = {.lex_state = 1, .external_lex_state = 10}, + [562] = {.lex_state = 4, .external_lex_state = 13}, + [563] = {.lex_state = 1, .external_lex_state = 10}, + [564] = {.lex_state = 1, .external_lex_state = 10}, + [565] = {.lex_state = 1, .external_lex_state = 10}, + [566] = {.lex_state = 1, .external_lex_state = 10}, + [567] = {.lex_state = 1, .external_lex_state = 10}, + [568] = {.lex_state = 1, .external_lex_state = 10}, + [569] = {.lex_state = 1, .external_lex_state = 10}, + [570] = {.lex_state = 1, .external_lex_state = 10}, + [571] = {.lex_state = 4, .external_lex_state = 13}, + [572] = {.lex_state = 1, .external_lex_state = 10}, + [573] = {.lex_state = 1, .external_lex_state = 10}, + [574] = {.lex_state = 1, .external_lex_state = 10}, + [575] = {.lex_state = 1, .external_lex_state = 10}, + [576] = {.lex_state = 4, .external_lex_state = 13}, + [577] = {.lex_state = 4, .external_lex_state = 13}, + [578] = {.lex_state = 4, .external_lex_state = 13}, + [579] = {.lex_state = 4, .external_lex_state = 13}, + [580] = {.lex_state = 4, .external_lex_state = 13}, [581] = {.lex_state = 4, .external_lex_state = 14}, - [582] = {.lex_state = 1, .external_lex_state = 9}, - [583] = {.lex_state = 4, .external_lex_state = 9}, - [584] = {.lex_state = 4, .external_lex_state = 15}, - [585] = {.lex_state = 4, .external_lex_state = 16}, - [586] = {.lex_state = 4, .external_lex_state = 16}, - [587] = {.lex_state = 4, .external_lex_state = 8}, - [588] = {.lex_state = 4, .external_lex_state = 15}, + [582] = {.lex_state = 1, .external_lex_state = 10}, + [583] = {.lex_state = 4, .external_lex_state = 10}, + [584] = {.lex_state = 4, .external_lex_state = 10}, + [585] = {.lex_state = 4, .external_lex_state = 15}, + [586] = {.lex_state = 4, .external_lex_state = 8}, + [587] = {.lex_state = 4, .external_lex_state = 16}, + [588] = {.lex_state = 4, .external_lex_state = 16}, [589] = {.lex_state = 4, .external_lex_state = 16}, - [590] = {.lex_state = 4, .external_lex_state = 9}, - [591] = {.lex_state = 4, .external_lex_state = 8}, + [590] = {.lex_state = 4, .external_lex_state = 15}, + [591] = {.lex_state = 4, .external_lex_state = 16}, [592] = {.lex_state = 4, .external_lex_state = 15}, - [593] = {.lex_state = 4, .external_lex_state = 16}, - [594] = {.lex_state = 4, .external_lex_state = 15}, + [593] = {.lex_state = 4, .external_lex_state = 10}, + [594] = {.lex_state = 4, .external_lex_state = 16}, [595] = {.lex_state = 4, .external_lex_state = 15}, - [596] = {.lex_state = 4, .external_lex_state = 9}, - [597] = {.lex_state = 4, .external_lex_state = 15}, - [598] = {.lex_state = 4, .external_lex_state = 9}, - [599] = {.lex_state = 4, .external_lex_state = 16}, - [600] = {.lex_state = 4, .external_lex_state = 9}, - [601] = {.lex_state = 4, .external_lex_state = 9}, - [602] = {.lex_state = 4, .external_lex_state = 9}, - [603] = {.lex_state = 4, .external_lex_state = 9}, - [604] = {.lex_state = 4, .external_lex_state = 9}, - [605] = {.lex_state = 4, .external_lex_state = 9}, - [606] = {.lex_state = 4, .external_lex_state = 9}, - [607] = {.lex_state = 4, .external_lex_state = 9}, - [608] = {.lex_state = 4, .external_lex_state = 9}, - [609] = {.lex_state = 4, .external_lex_state = 9}, - [610] = {.lex_state = 4, .external_lex_state = 9}, - [611] = {.lex_state = 4, .external_lex_state = 9}, - [612] = {.lex_state = 2, .external_lex_state = 17}, - [613] = {.lex_state = 2, .external_lex_state = 17}, - [614] = {.lex_state = 2, .external_lex_state = 17}, + [596] = {.lex_state = 4, .external_lex_state = 8}, + [597] = {.lex_state = 4, .external_lex_state = 10}, + [598] = {.lex_state = 4, .external_lex_state = 15}, + [599] = {.lex_state = 4, .external_lex_state = 10}, + [600] = {.lex_state = 4, .external_lex_state = 15}, + [601] = {.lex_state = 4, .external_lex_state = 10}, + [602] = {.lex_state = 4, .external_lex_state = 10}, + [603] = {.lex_state = 4, .external_lex_state = 10}, + [604] = {.lex_state = 4, .external_lex_state = 10}, + [605] = {.lex_state = 4, .external_lex_state = 10}, + [606] = {.lex_state = 4, .external_lex_state = 10}, + [607] = {.lex_state = 4, .external_lex_state = 10}, + [608] = {.lex_state = 4, .external_lex_state = 10}, + [609] = {.lex_state = 4, .external_lex_state = 10}, + [610] = {.lex_state = 4, .external_lex_state = 10}, + [611] = {.lex_state = 4, .external_lex_state = 10}, + [612] = {.lex_state = 4, .external_lex_state = 17}, + [613] = {.lex_state = 4, .external_lex_state = 17}, + [614] = {.lex_state = 4, .external_lex_state = 18}, [615] = {.lex_state = 2, .external_lex_state = 17}, - [616] = {.lex_state = 2, .external_lex_state = 9}, - [617] = {.lex_state = 2, .external_lex_state = 17}, + [616] = {.lex_state = 2, .external_lex_state = 17}, + [617] = {.lex_state = 2, .external_lex_state = 10}, [618] = {.lex_state = 2, .external_lex_state = 17}, - [619] = {.lex_state = 2, .external_lex_state = 9}, - [620] = {.lex_state = 2, .external_lex_state = 9}, + [619] = {.lex_state = 4, .external_lex_state = 18}, + [620] = {.lex_state = 2, .external_lex_state = 17}, [621] = {.lex_state = 2, .external_lex_state = 17}, [622] = {.lex_state = 2, .external_lex_state = 17}, [623] = {.lex_state = 2, .external_lex_state = 17}, [624] = {.lex_state = 2, .external_lex_state = 17}, [625] = {.lex_state = 2, .external_lex_state = 17}, [626] = {.lex_state = 2, .external_lex_state = 17}, - [627] = {.lex_state = 4, .external_lex_state = 14}, - [628] = {.lex_state = 4, .external_lex_state = 14}, + [627] = {.lex_state = 2, .external_lex_state = 10}, + [628] = {.lex_state = 2, .external_lex_state = 17}, [629] = {.lex_state = 2, .external_lex_state = 17}, - [630] = {.lex_state = 2, .external_lex_state = 17}, - [631] = {.lex_state = 4, .external_lex_state = 17}, + [630] = {.lex_state = 4, .external_lex_state = 14}, + [631] = {.lex_state = 2, .external_lex_state = 17}, [632] = {.lex_state = 2, .external_lex_state = 17}, [633] = {.lex_state = 2, .external_lex_state = 17}, - [634] = {.lex_state = 2, .external_lex_state = 17}, + [634] = {.lex_state = 2, .external_lex_state = 10}, [635] = {.lex_state = 2, .external_lex_state = 17}, [636] = {.lex_state = 2, .external_lex_state = 17}, [637] = {.lex_state = 2, .external_lex_state = 17}, - [638] = {.lex_state = 4, .external_lex_state = 18}, + [638] = {.lex_state = 2, .external_lex_state = 17}, [639] = {.lex_state = 2, .external_lex_state = 17}, [640] = {.lex_state = 2, .external_lex_state = 17}, - [641] = {.lex_state = 4, .external_lex_state = 17}, + [641] = {.lex_state = 2, .external_lex_state = 17}, [642] = {.lex_state = 2, .external_lex_state = 17}, [643] = {.lex_state = 2, .external_lex_state = 17}, [644] = {.lex_state = 2, .external_lex_state = 17}, [645] = {.lex_state = 2, .external_lex_state = 17}, - [646] = {.lex_state = 4, .external_lex_state = 18}, + [646] = {.lex_state = 2, .external_lex_state = 17}, [647] = {.lex_state = 2, .external_lex_state = 17}, [648] = {.lex_state = 2, .external_lex_state = 17}, - [649] = {.lex_state = 2, .external_lex_state = 17}, - [650] = {.lex_state = 2, .external_lex_state = 17}, + [649] = {.lex_state = 4, .external_lex_state = 18}, + [650] = {.lex_state = 4, .external_lex_state = 14}, [651] = {.lex_state = 2, .external_lex_state = 17}, - [652] = {.lex_state = 4, .external_lex_state = 18}, + [652] = {.lex_state = 2, .external_lex_state = 17}, [653] = {.lex_state = 2, .external_lex_state = 17}, - [654] = {.lex_state = 3, .external_lex_state = 9}, - [655] = {.lex_state = 4, .external_lex_state = 19}, - [656] = {.lex_state = 4, .external_lex_state = 19}, - [657] = {.lex_state = 4, .external_lex_state = 19}, - [658] = {.lex_state = 4, .external_lex_state = 20}, - [659] = {.lex_state = 4, .external_lex_state = 20}, - [660] = {.lex_state = 4, .external_lex_state = 21}, - [661] = {.lex_state = 4, .external_lex_state = 21}, - [662] = {.lex_state = 4, .external_lex_state = 22}, - [663] = {.lex_state = 1, .external_lex_state = 9}, - [664] = {.lex_state = 1, .external_lex_state = 9}, - [665] = {.lex_state = 4, .external_lex_state = 20}, - [666] = {.lex_state = 4, .external_lex_state = 23}, - [667] = {.lex_state = 1, .external_lex_state = 9}, - [668] = {.lex_state = 4, .external_lex_state = 21}, - [669] = {.lex_state = 4, .external_lex_state = 15}, - [670] = {.lex_state = 4, .external_lex_state = 22}, - [671] = {.lex_state = 4, .external_lex_state = 15}, - [672] = {.lex_state = 4, .external_lex_state = 24}, - [673] = {.lex_state = 4, .external_lex_state = 23}, - [674] = {.lex_state = 4, .external_lex_state = 25}, + [654] = {.lex_state = 4, .external_lex_state = 19}, + [655] = {.lex_state = 4, .external_lex_state = 20}, + [656] = {.lex_state = 4, .external_lex_state = 20}, + [657] = {.lex_state = 4, .external_lex_state = 21}, + [658] = {.lex_state = 4, .external_lex_state = 22}, + [659] = {.lex_state = 4, .external_lex_state = 21}, + [660] = {.lex_state = 4, .external_lex_state = 23}, + [661] = {.lex_state = 4, .external_lex_state = 22}, + [662] = {.lex_state = 4, .external_lex_state = 24}, + [663] = {.lex_state = 4, .external_lex_state = 20}, + [664] = {.lex_state = 1, .external_lex_state = 10}, + [665] = {.lex_state = 1, .external_lex_state = 10}, + [666] = {.lex_state = 4, .external_lex_state = 25}, + [667] = {.lex_state = 4, .external_lex_state = 19}, + [668] = {.lex_state = 4, .external_lex_state = 19}, + [669] = {.lex_state = 4, .external_lex_state = 26}, + [670] = {.lex_state = 4, .external_lex_state = 23}, + [671] = {.lex_state = 4, .external_lex_state = 24}, + [672] = {.lex_state = 3, .external_lex_state = 10}, + [673] = {.lex_state = 1, .external_lex_state = 10}, + [674] = {.lex_state = 4, .external_lex_state = 22}, [675] = {.lex_state = 4, .external_lex_state = 24}, - [676] = {.lex_state = 4, .external_lex_state = 26}, - [677] = {.lex_state = 4, .external_lex_state = 26}, - [678] = {.lex_state = 4, .external_lex_state = 26}, - [679] = {.lex_state = 4, .external_lex_state = 23}, - [680] = {.lex_state = 4, .external_lex_state = 25}, - [681] = {.lex_state = 4, .external_lex_state = 22}, - [682] = {.lex_state = 3, .external_lex_state = 9}, - [683] = {.lex_state = 3, .external_lex_state = 9}, - [684] = {.lex_state = 4, .external_lex_state = 27}, - [685] = {.lex_state = 4, .external_lex_state = 27}, - [686] = {.lex_state = 4, .external_lex_state = 27}, - [687] = {.lex_state = 4, .external_lex_state = 25}, - [688] = {.lex_state = 4, .external_lex_state = 24}, + [676] = {.lex_state = 4, .external_lex_state = 21}, + [677] = {.lex_state = 4, .external_lex_state = 23}, + [678] = {.lex_state = 4, .external_lex_state = 27}, + [679] = {.lex_state = 4, .external_lex_state = 25}, + [680] = {.lex_state = 4, .external_lex_state = 27}, + [681] = {.lex_state = 4, .external_lex_state = 15}, + [682] = {.lex_state = 4, .external_lex_state = 15}, + [683] = {.lex_state = 4, .external_lex_state = 27}, + [684] = {.lex_state = 4, .external_lex_state = 26}, + [685] = {.lex_state = 4, .external_lex_state = 26}, + [686] = {.lex_state = 3, .external_lex_state = 10}, + [687] = {.lex_state = 3, .external_lex_state = 10}, + [688] = {.lex_state = 4, .external_lex_state = 25}, [689] = {.lex_state = 4, .external_lex_state = 28}, [690] = {.lex_state = 1, .external_lex_state = 17}, - [691] = {.lex_state = 4, .external_lex_state = 28}, - [692] = {.lex_state = 4, .external_lex_state = 29}, - [693] = {.lex_state = 4, .external_lex_state = 28}, - [694] = {.lex_state = 4, .external_lex_state = 29}, + [691] = {.lex_state = 1, .external_lex_state = 17}, + [692] = {.lex_state = 4, .external_lex_state = 28}, + [693] = {.lex_state = 4, .external_lex_state = 29}, + [694] = {.lex_state = 4, .external_lex_state = 14}, [695] = {.lex_state = 1, .external_lex_state = 17}, [696] = {.lex_state = 1, .external_lex_state = 17}, [697] = {.lex_state = 1, .external_lex_state = 17}, [698] = {.lex_state = 1, .external_lex_state = 17}, [699] = {.lex_state = 1, .external_lex_state = 17}, [700] = {.lex_state = 1, .external_lex_state = 17}, - [701] = {.lex_state = 1, .external_lex_state = 17}, - [702] = {.lex_state = 4, .external_lex_state = 14}, + [701] = {.lex_state = 4, .external_lex_state = 28}, + [702] = {.lex_state = 4, .external_lex_state = 29}, [703] = {.lex_state = 1, .external_lex_state = 17}, [704] = {.lex_state = 4, .external_lex_state = 28}, [705] = {.lex_state = 4, .external_lex_state = 29}, @@ -17781,24 +17788,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [708] = {.lex_state = 1, .external_lex_state = 17}, [709] = {.lex_state = 1, .external_lex_state = 17}, [710] = {.lex_state = 1, .external_lex_state = 17}, - [711] = {.lex_state = 4, .external_lex_state = 29}, - [712] = {.lex_state = 4, .external_lex_state = 28}, - [713] = {.lex_state = 4, .external_lex_state = 28}, - [714] = {.lex_state = 4, .external_lex_state = 29}, - [715] = {.lex_state = 4, .external_lex_state = 28}, + [711] = {.lex_state = 1, .external_lex_state = 17}, + [712] = {.lex_state = 1, .external_lex_state = 17}, + [713] = {.lex_state = 1, .external_lex_state = 17}, + [714] = {.lex_state = 4, .external_lex_state = 28}, + [715] = {.lex_state = 4, .external_lex_state = 29}, [716] = {.lex_state = 1, .external_lex_state = 17}, [717] = {.lex_state = 1, .external_lex_state = 17}, [718] = {.lex_state = 1, .external_lex_state = 17}, [719] = {.lex_state = 1, .external_lex_state = 17}, [720] = {.lex_state = 1, .external_lex_state = 17}, - [721] = {.lex_state = 4, .external_lex_state = 29}, + [721] = {.lex_state = 1, .external_lex_state = 17}, [722] = {.lex_state = 1, .external_lex_state = 17}, [723] = {.lex_state = 1, .external_lex_state = 17}, [724] = {.lex_state = 1, .external_lex_state = 17}, - [725] = {.lex_state = 1, .external_lex_state = 17}, - [726] = {.lex_state = 4, .external_lex_state = 28}, + [725] = {.lex_state = 4, .external_lex_state = 28}, + [726] = {.lex_state = 4, .external_lex_state = 29}, [727] = {.lex_state = 4, .external_lex_state = 29}, - [728] = {.lex_state = 4, .external_lex_state = 29}, + [728] = {.lex_state = 1, .external_lex_state = 17}, [729] = {.lex_state = 1, .external_lex_state = 17}, [730] = {.lex_state = 1, .external_lex_state = 17}, [731] = {.lex_state = 1, .external_lex_state = 17}, @@ -17806,51 +17813,51 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [733] = {.lex_state = 1, .external_lex_state = 17}, [734] = {.lex_state = 1, .external_lex_state = 17}, [735] = {.lex_state = 1, .external_lex_state = 17}, - [736] = {.lex_state = 4, .external_lex_state = 14}, - [737] = {.lex_state = 1, .external_lex_state = 17}, - [738] = {.lex_state = 1, .external_lex_state = 17}, - [739] = {.lex_state = 4, .external_lex_state = 28}, - [740] = {.lex_state = 4, .external_lex_state = 29}, + [736] = {.lex_state = 4, .external_lex_state = 28}, + [737] = {.lex_state = 4, .external_lex_state = 29}, + [738] = {.lex_state = 4, .external_lex_state = 28}, + [739] = {.lex_state = 1, .external_lex_state = 17}, + [740] = {.lex_state = 1, .external_lex_state = 17}, [741] = {.lex_state = 1, .external_lex_state = 17}, [742] = {.lex_state = 1, .external_lex_state = 17}, - [743] = {.lex_state = 1, .external_lex_state = 17}, - [744] = {.lex_state = 1, .external_lex_state = 17}, - [745] = {.lex_state = 1, .external_lex_state = 17}, + [743] = {.lex_state = 4, .external_lex_state = 29}, + [744] = {.lex_state = 4, .external_lex_state = 28}, + [745] = {.lex_state = 4, .external_lex_state = 29}, [746] = {.lex_state = 4, .external_lex_state = 28}, [747] = {.lex_state = 1, .external_lex_state = 17}, [748] = {.lex_state = 1, .external_lex_state = 17}, - [749] = {.lex_state = 4, .external_lex_state = 28}, - [750] = {.lex_state = 4, .external_lex_state = 29}, + [749] = {.lex_state = 1, .external_lex_state = 17}, + [750] = {.lex_state = 1, .external_lex_state = 17}, [751] = {.lex_state = 1, .external_lex_state = 17}, - [752] = {.lex_state = 1, .external_lex_state = 17}, + [752] = {.lex_state = 4, .external_lex_state = 29}, [753] = {.lex_state = 1, .external_lex_state = 17}, [754] = {.lex_state = 1, .external_lex_state = 17}, [755] = {.lex_state = 1, .external_lex_state = 17}, - [756] = {.lex_state = 1, .external_lex_state = 17}, - [757] = {.lex_state = 4, .external_lex_state = 28}, - [758] = {.lex_state = 4, .external_lex_state = 29}, - [759] = {.lex_state = 4, .external_lex_state = 28}, - [760] = {.lex_state = 4, .external_lex_state = 29}, - [761] = {.lex_state = 4, .external_lex_state = 28}, - [762] = {.lex_state = 4, .external_lex_state = 29}, + [756] = {.lex_state = 4, .external_lex_state = 28}, + [757] = {.lex_state = 4, .external_lex_state = 29}, + [758] = {.lex_state = 1, .external_lex_state = 17}, + [759] = {.lex_state = 4, .external_lex_state = 29}, + [760] = {.lex_state = 1, .external_lex_state = 17}, + [761] = {.lex_state = 1, .external_lex_state = 17}, + [762] = {.lex_state = 1, .external_lex_state = 17}, [763] = {.lex_state = 1, .external_lex_state = 17}, [764] = {.lex_state = 1, .external_lex_state = 17}, - [765] = {.lex_state = 1, .external_lex_state = 17}, - [766] = {.lex_state = 1, .external_lex_state = 17}, - [767] = {.lex_state = 1, .external_lex_state = 17}, - [768] = {.lex_state = 1, .external_lex_state = 17}, - [769] = {.lex_state = 1, .external_lex_state = 17}, + [765] = {.lex_state = 4, .external_lex_state = 28}, + [766] = {.lex_state = 4, .external_lex_state = 29}, + [767] = {.lex_state = 4, .external_lex_state = 28}, + [768] = {.lex_state = 4, .external_lex_state = 29}, + [769] = {.lex_state = 4, .external_lex_state = 28}, [770] = {.lex_state = 1, .external_lex_state = 17}, - [771] = {.lex_state = 4, .external_lex_state = 29}, + [771] = {.lex_state = 1, .external_lex_state = 17}, [772] = {.lex_state = 1, .external_lex_state = 17}, [773] = {.lex_state = 1, .external_lex_state = 17}, - [774] = {.lex_state = 1, .external_lex_state = 17}, - [775] = {.lex_state = 1, .external_lex_state = 17}, - [776] = {.lex_state = 4, .external_lex_state = 28}, - [777] = {.lex_state = 4, .external_lex_state = 29}, - [778] = {.lex_state = 4, .external_lex_state = 28}, - [779] = {.lex_state = 4, .external_lex_state = 29}, - [780] = {.lex_state = 1, .external_lex_state = 17}, + [774] = {.lex_state = 4, .external_lex_state = 14}, + [775] = {.lex_state = 4, .external_lex_state = 28}, + [776] = {.lex_state = 4, .external_lex_state = 29}, + [777] = {.lex_state = 1, .external_lex_state = 17}, + [778] = {.lex_state = 1, .external_lex_state = 17}, + [779] = {.lex_state = 4, .external_lex_state = 28}, + [780] = {.lex_state = 4, .external_lex_state = 29}, [781] = {.lex_state = 1, .external_lex_state = 17}, [782] = {.lex_state = 1, .external_lex_state = 17}, [783] = {.lex_state = 1, .external_lex_state = 17}, @@ -18048,32 +18055,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [975] = {.lex_state = 4, .external_lex_state = 8}, [976] = {.lex_state = 4, .external_lex_state = 8}, [977] = {.lex_state = 4, .external_lex_state = 8}, - [978] = {.lex_state = 2, .external_lex_state = 9}, - [979] = {.lex_state = 2, .external_lex_state = 9}, + [978] = {.lex_state = 2, .external_lex_state = 10}, + [979] = {.lex_state = 2, .external_lex_state = 10}, [980] = {.lex_state = 4, .external_lex_state = 8}, [981] = {.lex_state = 4, .external_lex_state = 18}, [982] = {.lex_state = 4, .external_lex_state = 18}, [983] = {.lex_state = 4, .external_lex_state = 18}, - [984] = {.lex_state = 2, .external_lex_state = 9}, + [984] = {.lex_state = 2, .external_lex_state = 10}, [985] = {.lex_state = 4, .external_lex_state = 8}, [986] = {.lex_state = 4, .external_lex_state = 8}, [987] = {.lex_state = 4, .external_lex_state = 8}, [988] = {.lex_state = 4, .external_lex_state = 8}, - [989] = {.lex_state = 2, .external_lex_state = 9}, - [990] = {.lex_state = 2, .external_lex_state = 9}, - [991] = {.lex_state = 2, .external_lex_state = 9}, + [989] = {.lex_state = 2, .external_lex_state = 10}, + [990] = {.lex_state = 2, .external_lex_state = 10}, + [991] = {.lex_state = 2, .external_lex_state = 10}, [992] = {.lex_state = 4, .external_lex_state = 8}, - [993] = {.lex_state = 2, .external_lex_state = 9}, - [994] = {.lex_state = 2, .external_lex_state = 9}, + [993] = {.lex_state = 2, .external_lex_state = 10}, + [994] = {.lex_state = 2, .external_lex_state = 10}, [995] = {.lex_state = 4, .external_lex_state = 8}, - [996] = {.lex_state = 2, .external_lex_state = 9}, - [997] = {.lex_state = 2, .external_lex_state = 9}, + [996] = {.lex_state = 2, .external_lex_state = 10}, + [997] = {.lex_state = 2, .external_lex_state = 10}, [998] = {.lex_state = 4, .external_lex_state = 8}, - [999] = {.lex_state = 2, .external_lex_state = 9}, - [1000] = {.lex_state = 2, .external_lex_state = 9}, + [999] = {.lex_state = 2, .external_lex_state = 10}, + [1000] = {.lex_state = 2, .external_lex_state = 10}, [1001] = {.lex_state = 4, .external_lex_state = 8}, - [1002] = {.lex_state = 2, .external_lex_state = 9}, - [1003] = {.lex_state = 2, .external_lex_state = 9}, + [1002] = {.lex_state = 2, .external_lex_state = 10}, + [1003] = {.lex_state = 2, .external_lex_state = 10}, [1004] = {.lex_state = 4, .external_lex_state = 8}, [1005] = {.lex_state = 4, .external_lex_state = 8}, [1006] = {.lex_state = 4, .external_lex_state = 8}, @@ -18086,35 +18093,35 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1013] = {.lex_state = 4, .external_lex_state = 8}, [1014] = {.lex_state = 4, .external_lex_state = 8}, [1015] = {.lex_state = 4, .external_lex_state = 8}, - [1016] = {.lex_state = 2, .external_lex_state = 9}, - [1017] = {.lex_state = 2, .external_lex_state = 9}, + [1016] = {.lex_state = 2, .external_lex_state = 10}, + [1017] = {.lex_state = 2, .external_lex_state = 10}, [1018] = {.lex_state = 4, .external_lex_state = 8}, - [1019] = {.lex_state = 2, .external_lex_state = 9}, - [1020] = {.lex_state = 2, .external_lex_state = 9}, + [1019] = {.lex_state = 2, .external_lex_state = 10}, + [1020] = {.lex_state = 2, .external_lex_state = 10}, [1021] = {.lex_state = 4, .external_lex_state = 8}, [1022] = {.lex_state = 4, .external_lex_state = 8}, [1023] = {.lex_state = 4, .external_lex_state = 8}, [1024] = {.lex_state = 4, .external_lex_state = 8}, [1025] = {.lex_state = 4, .external_lex_state = 8}, - [1026] = {.lex_state = 2, .external_lex_state = 9}, + [1026] = {.lex_state = 2, .external_lex_state = 10}, [1027] = {.lex_state = 4, .external_lex_state = 8}, [1028] = {.lex_state = 4, .external_lex_state = 8}, - [1029] = {.lex_state = 2, .external_lex_state = 9}, + [1029] = {.lex_state = 2, .external_lex_state = 10}, [1030] = {.lex_state = 4, .external_lex_state = 8}, [1031] = {.lex_state = 4, .external_lex_state = 8}, - [1032] = {.lex_state = 2, .external_lex_state = 9}, + [1032] = {.lex_state = 2, .external_lex_state = 10}, [1033] = {.lex_state = 4, .external_lex_state = 8}, [1034] = {.lex_state = 4, .external_lex_state = 8}, - [1035] = {.lex_state = 2, .external_lex_state = 9}, + [1035] = {.lex_state = 2, .external_lex_state = 10}, [1036] = {.lex_state = 4, .external_lex_state = 8}, [1037] = {.lex_state = 4, .external_lex_state = 18}, [1038] = {.lex_state = 4, .external_lex_state = 8}, [1039] = {.lex_state = 4, .external_lex_state = 8}, [1040] = {.lex_state = 4, .external_lex_state = 8}, - [1041] = {.lex_state = 2, .external_lex_state = 9}, + [1041] = {.lex_state = 2, .external_lex_state = 10}, [1042] = {.lex_state = 4, .external_lex_state = 8}, [1043] = {.lex_state = 4, .external_lex_state = 8}, - [1044] = {.lex_state = 2, .external_lex_state = 9}, + [1044] = {.lex_state = 2, .external_lex_state = 10}, [1045] = {.lex_state = 4, .external_lex_state = 8}, [1046] = {.lex_state = 4, .external_lex_state = 8}, [1047] = {.lex_state = 4, .external_lex_state = 8}, @@ -18140,7 +18147,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1067] = {.lex_state = 4, .external_lex_state = 8}, [1068] = {.lex_state = 4, .external_lex_state = 8}, [1069] = {.lex_state = 4, .external_lex_state = 18}, - [1070] = {.lex_state = 2, .external_lex_state = 9}, + [1070] = {.lex_state = 2, .external_lex_state = 10}, [1071] = {.lex_state = 4, .external_lex_state = 18}, [1072] = {.lex_state = 4, .external_lex_state = 18}, [1073] = {.lex_state = 4, .external_lex_state = 18}, @@ -18163,268 +18170,268 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 4, .external_lex_state = 18}, [1091] = {.lex_state = 4, .external_lex_state = 18}, [1092] = {.lex_state = 4, .external_lex_state = 8}, - [1093] = {.lex_state = 4, .external_lex_state = 23}, - [1094] = {.lex_state = 4, .external_lex_state = 27}, - [1095] = {.lex_state = 4, .external_lex_state = 27}, - [1096] = {.lex_state = 4, .external_lex_state = 27}, - [1097] = {.lex_state = 4, .external_lex_state = 27}, - [1098] = {.lex_state = 4, .external_lex_state = 21}, - [1099] = {.lex_state = 4, .external_lex_state = 21}, - [1100] = {.lex_state = 4, .external_lex_state = 21}, - [1101] = {.lex_state = 4, .external_lex_state = 21}, - [1102] = {.lex_state = 4, .external_lex_state = 21}, - [1103] = {.lex_state = 4, .external_lex_state = 21}, - [1104] = {.lex_state = 4, .external_lex_state = 21}, - [1105] = {.lex_state = 4, .external_lex_state = 21}, - [1106] = {.lex_state = 4, .external_lex_state = 21}, - [1107] = {.lex_state = 4, .external_lex_state = 21}, - [1108] = {.lex_state = 4, .external_lex_state = 21}, - [1109] = {.lex_state = 4, .external_lex_state = 21}, - [1110] = {.lex_state = 4, .external_lex_state = 21}, - [1111] = {.lex_state = 4, .external_lex_state = 21}, - [1112] = {.lex_state = 4, .external_lex_state = 21}, - [1113] = {.lex_state = 4, .external_lex_state = 21}, - [1114] = {.lex_state = 4, .external_lex_state = 21}, - [1115] = {.lex_state = 4, .external_lex_state = 21}, - [1116] = {.lex_state = 4, .external_lex_state = 21}, + [1093] = {.lex_state = 4, .external_lex_state = 20}, + [1094] = {.lex_state = 4, .external_lex_state = 23}, + [1095] = {.lex_state = 4, .external_lex_state = 23}, + [1096] = {.lex_state = 4, .external_lex_state = 23}, + [1097] = {.lex_state = 4, .external_lex_state = 23}, + [1098] = {.lex_state = 4, .external_lex_state = 22}, + [1099] = {.lex_state = 4, .external_lex_state = 22}, + [1100] = {.lex_state = 4, .external_lex_state = 22}, + [1101] = {.lex_state = 4, .external_lex_state = 22}, + [1102] = {.lex_state = 4, .external_lex_state = 22}, + [1103] = {.lex_state = 4, .external_lex_state = 22}, + [1104] = {.lex_state = 4, .external_lex_state = 22}, + [1105] = {.lex_state = 4, .external_lex_state = 22}, + [1106] = {.lex_state = 4, .external_lex_state = 22}, + [1107] = {.lex_state = 4, .external_lex_state = 22}, + [1108] = {.lex_state = 4, .external_lex_state = 22}, + [1109] = {.lex_state = 4, .external_lex_state = 22}, + [1110] = {.lex_state = 4, .external_lex_state = 22}, + [1111] = {.lex_state = 4, .external_lex_state = 22}, + [1112] = {.lex_state = 4, .external_lex_state = 22}, + [1113] = {.lex_state = 4, .external_lex_state = 22}, + [1114] = {.lex_state = 4, .external_lex_state = 22}, + [1115] = {.lex_state = 4, .external_lex_state = 22}, + [1116] = {.lex_state = 4, .external_lex_state = 22}, [1117] = {.lex_state = 4, .external_lex_state = 15}, - [1118] = {.lex_state = 4, .external_lex_state = 21}, - [1119] = {.lex_state = 4, .external_lex_state = 21}, - [1120] = {.lex_state = 4, .external_lex_state = 21}, - [1121] = {.lex_state = 4, .external_lex_state = 21}, - [1122] = {.lex_state = 4, .external_lex_state = 21}, - [1123] = {.lex_state = 4, .external_lex_state = 21}, - [1124] = {.lex_state = 4, .external_lex_state = 22}, - [1125] = {.lex_state = 4, .external_lex_state = 22}, - [1126] = {.lex_state = 4, .external_lex_state = 22}, - [1127] = {.lex_state = 4, .external_lex_state = 22}, - [1128] = {.lex_state = 4, .external_lex_state = 22}, - [1129] = {.lex_state = 4, .external_lex_state = 22}, - [1130] = {.lex_state = 4, .external_lex_state = 22}, - [1131] = {.lex_state = 4, .external_lex_state = 22}, - [1132] = {.lex_state = 4, .external_lex_state = 22}, - [1133] = {.lex_state = 4, .external_lex_state = 22}, - [1134] = {.lex_state = 4, .external_lex_state = 22}, - [1135] = {.lex_state = 4, .external_lex_state = 22}, - [1136] = {.lex_state = 4, .external_lex_state = 22}, - [1137] = {.lex_state = 4, .external_lex_state = 22}, - [1138] = {.lex_state = 4, .external_lex_state = 22}, - [1139] = {.lex_state = 4, .external_lex_state = 22}, - [1140] = {.lex_state = 4, .external_lex_state = 22}, - [1141] = {.lex_state = 4, .external_lex_state = 22}, - [1142] = {.lex_state = 4, .external_lex_state = 22}, + [1118] = {.lex_state = 4, .external_lex_state = 22}, + [1119] = {.lex_state = 4, .external_lex_state = 22}, + [1120] = {.lex_state = 4, .external_lex_state = 22}, + [1121] = {.lex_state = 4, .external_lex_state = 22}, + [1122] = {.lex_state = 4, .external_lex_state = 22}, + [1123] = {.lex_state = 4, .external_lex_state = 22}, + [1124] = {.lex_state = 4, .external_lex_state = 27}, + [1125] = {.lex_state = 4, .external_lex_state = 27}, + [1126] = {.lex_state = 4, .external_lex_state = 27}, + [1127] = {.lex_state = 4, .external_lex_state = 27}, + [1128] = {.lex_state = 4, .external_lex_state = 27}, + [1129] = {.lex_state = 4, .external_lex_state = 27}, + [1130] = {.lex_state = 4, .external_lex_state = 27}, + [1131] = {.lex_state = 4, .external_lex_state = 27}, + [1132] = {.lex_state = 4, .external_lex_state = 27}, + [1133] = {.lex_state = 4, .external_lex_state = 27}, + [1134] = {.lex_state = 4, .external_lex_state = 27}, + [1135] = {.lex_state = 4, .external_lex_state = 27}, + [1136] = {.lex_state = 4, .external_lex_state = 27}, + [1137] = {.lex_state = 4, .external_lex_state = 27}, + [1138] = {.lex_state = 4, .external_lex_state = 27}, + [1139] = {.lex_state = 4, .external_lex_state = 27}, + [1140] = {.lex_state = 4, .external_lex_state = 27}, + [1141] = {.lex_state = 4, .external_lex_state = 27}, + [1142] = {.lex_state = 4, .external_lex_state = 27}, [1143] = {.lex_state = 4, .external_lex_state = 15}, - [1144] = {.lex_state = 4, .external_lex_state = 22}, - [1145] = {.lex_state = 4, .external_lex_state = 22}, - [1146] = {.lex_state = 4, .external_lex_state = 22}, - [1147] = {.lex_state = 4, .external_lex_state = 22}, - [1148] = {.lex_state = 4, .external_lex_state = 22}, - [1149] = {.lex_state = 4, .external_lex_state = 22}, - [1150] = {.lex_state = 4, .external_lex_state = 19}, - [1151] = {.lex_state = 4, .external_lex_state = 19}, - [1152] = {.lex_state = 4, .external_lex_state = 19}, - [1153] = {.lex_state = 4, .external_lex_state = 19}, - [1154] = {.lex_state = 4, .external_lex_state = 19}, - [1155] = {.lex_state = 4, .external_lex_state = 19}, - [1156] = {.lex_state = 4, .external_lex_state = 19}, - [1157] = {.lex_state = 4, .external_lex_state = 19}, - [1158] = {.lex_state = 4, .external_lex_state = 19}, - [1159] = {.lex_state = 4, .external_lex_state = 19}, - [1160] = {.lex_state = 4, .external_lex_state = 19}, - [1161] = {.lex_state = 4, .external_lex_state = 19}, - [1162] = {.lex_state = 4, .external_lex_state = 19}, - [1163] = {.lex_state = 4, .external_lex_state = 19}, - [1164] = {.lex_state = 4, .external_lex_state = 19}, - [1165] = {.lex_state = 4, .external_lex_state = 19}, - [1166] = {.lex_state = 4, .external_lex_state = 19}, - [1167] = {.lex_state = 4, .external_lex_state = 19}, - [1168] = {.lex_state = 4, .external_lex_state = 19}, - [1169] = {.lex_state = 2, .external_lex_state = 9}, + [1144] = {.lex_state = 4, .external_lex_state = 27}, + [1145] = {.lex_state = 4, .external_lex_state = 27}, + [1146] = {.lex_state = 4, .external_lex_state = 27}, + [1147] = {.lex_state = 4, .external_lex_state = 27}, + [1148] = {.lex_state = 4, .external_lex_state = 27}, + [1149] = {.lex_state = 4, .external_lex_state = 27}, + [1150] = {.lex_state = 4, .external_lex_state = 26}, + [1151] = {.lex_state = 4, .external_lex_state = 26}, + [1152] = {.lex_state = 4, .external_lex_state = 26}, + [1153] = {.lex_state = 4, .external_lex_state = 26}, + [1154] = {.lex_state = 4, .external_lex_state = 26}, + [1155] = {.lex_state = 4, .external_lex_state = 26}, + [1156] = {.lex_state = 4, .external_lex_state = 26}, + [1157] = {.lex_state = 4, .external_lex_state = 26}, + [1158] = {.lex_state = 4, .external_lex_state = 26}, + [1159] = {.lex_state = 4, .external_lex_state = 26}, + [1160] = {.lex_state = 4, .external_lex_state = 26}, + [1161] = {.lex_state = 4, .external_lex_state = 26}, + [1162] = {.lex_state = 4, .external_lex_state = 26}, + [1163] = {.lex_state = 4, .external_lex_state = 26}, + [1164] = {.lex_state = 4, .external_lex_state = 26}, + [1165] = {.lex_state = 4, .external_lex_state = 26}, + [1166] = {.lex_state = 4, .external_lex_state = 26}, + [1167] = {.lex_state = 4, .external_lex_state = 26}, + [1168] = {.lex_state = 4, .external_lex_state = 26}, + [1169] = {.lex_state = 2, .external_lex_state = 10}, [1170] = {.lex_state = 4, .external_lex_state = 15}, - [1171] = {.lex_state = 4, .external_lex_state = 19}, - [1172] = {.lex_state = 4, .external_lex_state = 19}, - [1173] = {.lex_state = 4, .external_lex_state = 19}, - [1174] = {.lex_state = 4, .external_lex_state = 19}, - [1175] = {.lex_state = 4, .external_lex_state = 19}, - [1176] = {.lex_state = 4, .external_lex_state = 19}, - [1177] = {.lex_state = 2, .external_lex_state = 9}, - [1178] = {.lex_state = 4, .external_lex_state = 25}, - [1179] = {.lex_state = 4, .external_lex_state = 25}, - [1180] = {.lex_state = 4, .external_lex_state = 25}, - [1181] = {.lex_state = 4, .external_lex_state = 25}, - [1182] = {.lex_state = 2, .external_lex_state = 9}, - [1183] = {.lex_state = 2, .external_lex_state = 9}, - [1184] = {.lex_state = 2, .external_lex_state = 9}, - [1185] = {.lex_state = 2, .external_lex_state = 9}, - [1186] = {.lex_state = 4, .external_lex_state = 25}, - [1187] = {.lex_state = 4, .external_lex_state = 25}, - [1188] = {.lex_state = 4, .external_lex_state = 20}, - [1189] = {.lex_state = 2, .external_lex_state = 9}, - [1190] = {.lex_state = 4, .external_lex_state = 20}, - [1191] = {.lex_state = 4, .external_lex_state = 20}, - [1192] = {.lex_state = 2, .external_lex_state = 9}, - [1193] = {.lex_state = 4, .external_lex_state = 20}, - [1194] = {.lex_state = 4, .external_lex_state = 20}, - [1195] = {.lex_state = 2, .external_lex_state = 9}, - [1196] = {.lex_state = 4, .external_lex_state = 20}, + [1171] = {.lex_state = 4, .external_lex_state = 26}, + [1172] = {.lex_state = 4, .external_lex_state = 26}, + [1173] = {.lex_state = 4, .external_lex_state = 26}, + [1174] = {.lex_state = 4, .external_lex_state = 26}, + [1175] = {.lex_state = 4, .external_lex_state = 26}, + [1176] = {.lex_state = 4, .external_lex_state = 26}, + [1177] = {.lex_state = 2, .external_lex_state = 10}, + [1178] = {.lex_state = 4, .external_lex_state = 19}, + [1179] = {.lex_state = 4, .external_lex_state = 19}, + [1180] = {.lex_state = 4, .external_lex_state = 19}, + [1181] = {.lex_state = 4, .external_lex_state = 19}, + [1182] = {.lex_state = 2, .external_lex_state = 10}, + [1183] = {.lex_state = 2, .external_lex_state = 10}, + [1184] = {.lex_state = 2, .external_lex_state = 10}, + [1185] = {.lex_state = 2, .external_lex_state = 10}, + [1186] = {.lex_state = 4, .external_lex_state = 19}, + [1187] = {.lex_state = 4, .external_lex_state = 19}, + [1188] = {.lex_state = 4, .external_lex_state = 24}, + [1189] = {.lex_state = 2, .external_lex_state = 10}, + [1190] = {.lex_state = 4, .external_lex_state = 24}, + [1191] = {.lex_state = 4, .external_lex_state = 24}, + [1192] = {.lex_state = 2, .external_lex_state = 10}, + [1193] = {.lex_state = 4, .external_lex_state = 24}, + [1194] = {.lex_state = 4, .external_lex_state = 24}, + [1195] = {.lex_state = 2, .external_lex_state = 10}, + [1196] = {.lex_state = 4, .external_lex_state = 24}, [1197] = {.lex_state = 4, .external_lex_state = 18}, - [1198] = {.lex_state = 2, .external_lex_state = 9}, - [1199] = {.lex_state = 4, .external_lex_state = 20}, - [1200] = {.lex_state = 4, .external_lex_state = 20}, - [1201] = {.lex_state = 2, .external_lex_state = 9}, - [1202] = {.lex_state = 2, .external_lex_state = 9}, - [1203] = {.lex_state = 2, .external_lex_state = 9}, - [1204] = {.lex_state = 2, .external_lex_state = 9}, - [1205] = {.lex_state = 2, .external_lex_state = 9}, - [1206] = {.lex_state = 2, .external_lex_state = 9}, - [1207] = {.lex_state = 2, .external_lex_state = 9}, - [1208] = {.lex_state = 2, .external_lex_state = 9}, - [1209] = {.lex_state = 2, .external_lex_state = 9}, - [1210] = {.lex_state = 2, .external_lex_state = 9}, - [1211] = {.lex_state = 2, .external_lex_state = 9}, - [1212] = {.lex_state = 2, .external_lex_state = 9}, - [1213] = {.lex_state = 4, .external_lex_state = 20}, - [1214] = {.lex_state = 4, .external_lex_state = 20}, - [1215] = {.lex_state = 2, .external_lex_state = 9}, - [1216] = {.lex_state = 4, .external_lex_state = 20}, - [1217] = {.lex_state = 4, .external_lex_state = 20}, - [1218] = {.lex_state = 2, .external_lex_state = 9}, - [1219] = {.lex_state = 2, .external_lex_state = 9}, - [1220] = {.lex_state = 2, .external_lex_state = 9}, - [1221] = {.lex_state = 2, .external_lex_state = 9}, - [1222] = {.lex_state = 2, .external_lex_state = 9}, - [1223] = {.lex_state = 4, .external_lex_state = 20}, - [1224] = {.lex_state = 2, .external_lex_state = 9}, - [1225] = {.lex_state = 2, .external_lex_state = 9}, - [1226] = {.lex_state = 4, .external_lex_state = 20}, - [1227] = {.lex_state = 2, .external_lex_state = 9}, - [1228] = {.lex_state = 2, .external_lex_state = 9}, - [1229] = {.lex_state = 4, .external_lex_state = 20}, - [1230] = {.lex_state = 2, .external_lex_state = 9}, - [1231] = {.lex_state = 2, .external_lex_state = 9}, - [1232] = {.lex_state = 4, .external_lex_state = 20}, - [1233] = {.lex_state = 2, .external_lex_state = 9}, - [1234] = {.lex_state = 2, .external_lex_state = 9}, - [1235] = {.lex_state = 2, .external_lex_state = 9}, - [1236] = {.lex_state = 2, .external_lex_state = 9}, - [1237] = {.lex_state = 2, .external_lex_state = 9}, - [1238] = {.lex_state = 4, .external_lex_state = 20}, - [1239] = {.lex_state = 2, .external_lex_state = 9}, - [1240] = {.lex_state = 2, .external_lex_state = 9}, - [1241] = {.lex_state = 4, .external_lex_state = 20}, - [1242] = {.lex_state = 2, .external_lex_state = 9}, - [1243] = {.lex_state = 2, .external_lex_state = 9}, - [1244] = {.lex_state = 2, .external_lex_state = 9}, - [1245] = {.lex_state = 2, .external_lex_state = 9}, - [1246] = {.lex_state = 2, .external_lex_state = 9}, - [1247] = {.lex_state = 2, .external_lex_state = 9}, - [1248] = {.lex_state = 2, .external_lex_state = 9}, - [1249] = {.lex_state = 2, .external_lex_state = 9}, - [1250] = {.lex_state = 2, .external_lex_state = 9}, - [1251] = {.lex_state = 2, .external_lex_state = 9}, - [1252] = {.lex_state = 2, .external_lex_state = 9}, - [1253] = {.lex_state = 2, .external_lex_state = 9}, - [1254] = {.lex_state = 2, .external_lex_state = 9}, - [1255] = {.lex_state = 2, .external_lex_state = 9}, - [1256] = {.lex_state = 2, .external_lex_state = 9}, - [1257] = {.lex_state = 2, .external_lex_state = 9}, - [1258] = {.lex_state = 2, .external_lex_state = 9}, - [1259] = {.lex_state = 2, .external_lex_state = 9}, - [1260] = {.lex_state = 2, .external_lex_state = 9}, - [1261] = {.lex_state = 2, .external_lex_state = 9}, - [1262] = {.lex_state = 2, .external_lex_state = 9}, - [1263] = {.lex_state = 2, .external_lex_state = 9}, - [1264] = {.lex_state = 2, .external_lex_state = 9}, - [1265] = {.lex_state = 2, .external_lex_state = 9}, - [1266] = {.lex_state = 4, .external_lex_state = 20}, - [1267] = {.lex_state = 4, .external_lex_state = 25}, - [1268] = {.lex_state = 4, .external_lex_state = 20}, - [1269] = {.lex_state = 4, .external_lex_state = 20}, - [1270] = {.lex_state = 4, .external_lex_state = 20}, - [1271] = {.lex_state = 4, .external_lex_state = 20}, - [1272] = {.lex_state = 4, .external_lex_state = 20}, - [1273] = {.lex_state = 4, .external_lex_state = 20}, - [1274] = {.lex_state = 4, .external_lex_state = 25}, - [1275] = {.lex_state = 4, .external_lex_state = 24}, - [1276] = {.lex_state = 4, .external_lex_state = 24}, - [1277] = {.lex_state = 4, .external_lex_state = 24}, - [1278] = {.lex_state = 4, .external_lex_state = 24}, - [1279] = {.lex_state = 4, .external_lex_state = 24}, - [1280] = {.lex_state = 4, .external_lex_state = 24}, + [1198] = {.lex_state = 2, .external_lex_state = 10}, + [1199] = {.lex_state = 4, .external_lex_state = 24}, + [1200] = {.lex_state = 4, .external_lex_state = 24}, + [1201] = {.lex_state = 2, .external_lex_state = 10}, + [1202] = {.lex_state = 2, .external_lex_state = 10}, + [1203] = {.lex_state = 2, .external_lex_state = 10}, + [1204] = {.lex_state = 2, .external_lex_state = 10}, + [1205] = {.lex_state = 2, .external_lex_state = 10}, + [1206] = {.lex_state = 2, .external_lex_state = 10}, + [1207] = {.lex_state = 2, .external_lex_state = 10}, + [1208] = {.lex_state = 2, .external_lex_state = 10}, + [1209] = {.lex_state = 2, .external_lex_state = 10}, + [1210] = {.lex_state = 2, .external_lex_state = 10}, + [1211] = {.lex_state = 2, .external_lex_state = 10}, + [1212] = {.lex_state = 2, .external_lex_state = 10}, + [1213] = {.lex_state = 4, .external_lex_state = 24}, + [1214] = {.lex_state = 4, .external_lex_state = 24}, + [1215] = {.lex_state = 2, .external_lex_state = 10}, + [1216] = {.lex_state = 4, .external_lex_state = 24}, + [1217] = {.lex_state = 4, .external_lex_state = 24}, + [1218] = {.lex_state = 2, .external_lex_state = 10}, + [1219] = {.lex_state = 2, .external_lex_state = 10}, + [1220] = {.lex_state = 2, .external_lex_state = 10}, + [1221] = {.lex_state = 2, .external_lex_state = 10}, + [1222] = {.lex_state = 2, .external_lex_state = 10}, + [1223] = {.lex_state = 4, .external_lex_state = 24}, + [1224] = {.lex_state = 2, .external_lex_state = 10}, + [1225] = {.lex_state = 2, .external_lex_state = 10}, + [1226] = {.lex_state = 4, .external_lex_state = 24}, + [1227] = {.lex_state = 2, .external_lex_state = 10}, + [1228] = {.lex_state = 2, .external_lex_state = 10}, + [1229] = {.lex_state = 4, .external_lex_state = 24}, + [1230] = {.lex_state = 2, .external_lex_state = 10}, + [1231] = {.lex_state = 2, .external_lex_state = 10}, + [1232] = {.lex_state = 4, .external_lex_state = 24}, + [1233] = {.lex_state = 2, .external_lex_state = 10}, + [1234] = {.lex_state = 2, .external_lex_state = 10}, + [1235] = {.lex_state = 2, .external_lex_state = 10}, + [1236] = {.lex_state = 2, .external_lex_state = 10}, + [1237] = {.lex_state = 2, .external_lex_state = 10}, + [1238] = {.lex_state = 4, .external_lex_state = 24}, + [1239] = {.lex_state = 2, .external_lex_state = 10}, + [1240] = {.lex_state = 2, .external_lex_state = 10}, + [1241] = {.lex_state = 4, .external_lex_state = 24}, + [1242] = {.lex_state = 2, .external_lex_state = 10}, + [1243] = {.lex_state = 2, .external_lex_state = 10}, + [1244] = {.lex_state = 2, .external_lex_state = 10}, + [1245] = {.lex_state = 2, .external_lex_state = 10}, + [1246] = {.lex_state = 2, .external_lex_state = 10}, + [1247] = {.lex_state = 2, .external_lex_state = 10}, + [1248] = {.lex_state = 2, .external_lex_state = 10}, + [1249] = {.lex_state = 2, .external_lex_state = 10}, + [1250] = {.lex_state = 2, .external_lex_state = 10}, + [1251] = {.lex_state = 2, .external_lex_state = 10}, + [1252] = {.lex_state = 2, .external_lex_state = 10}, + [1253] = {.lex_state = 2, .external_lex_state = 10}, + [1254] = {.lex_state = 2, .external_lex_state = 10}, + [1255] = {.lex_state = 2, .external_lex_state = 10}, + [1256] = {.lex_state = 2, .external_lex_state = 10}, + [1257] = {.lex_state = 2, .external_lex_state = 10}, + [1258] = {.lex_state = 2, .external_lex_state = 10}, + [1259] = {.lex_state = 2, .external_lex_state = 10}, + [1260] = {.lex_state = 2, .external_lex_state = 10}, + [1261] = {.lex_state = 2, .external_lex_state = 10}, + [1262] = {.lex_state = 2, .external_lex_state = 10}, + [1263] = {.lex_state = 2, .external_lex_state = 10}, + [1264] = {.lex_state = 2, .external_lex_state = 10}, + [1265] = {.lex_state = 2, .external_lex_state = 10}, + [1266] = {.lex_state = 4, .external_lex_state = 24}, + [1267] = {.lex_state = 4, .external_lex_state = 19}, + [1268] = {.lex_state = 4, .external_lex_state = 24}, + [1269] = {.lex_state = 4, .external_lex_state = 24}, + [1270] = {.lex_state = 4, .external_lex_state = 24}, + [1271] = {.lex_state = 4, .external_lex_state = 24}, + [1272] = {.lex_state = 4, .external_lex_state = 24}, + [1273] = {.lex_state = 4, .external_lex_state = 24}, + [1274] = {.lex_state = 4, .external_lex_state = 19}, + [1275] = {.lex_state = 4, .external_lex_state = 21}, + [1276] = {.lex_state = 4, .external_lex_state = 21}, + [1277] = {.lex_state = 4, .external_lex_state = 21}, + [1278] = {.lex_state = 4, .external_lex_state = 21}, + [1279] = {.lex_state = 4, .external_lex_state = 21}, + [1280] = {.lex_state = 4, .external_lex_state = 21}, [1281] = {.lex_state = 4, .external_lex_state = 18}, - [1282] = {.lex_state = 4, .external_lex_state = 24}, - [1283] = {.lex_state = 4, .external_lex_state = 24}, - [1284] = {.lex_state = 4, .external_lex_state = 24}, - [1285] = {.lex_state = 4, .external_lex_state = 24}, - [1286] = {.lex_state = 4, .external_lex_state = 24}, - [1287] = {.lex_state = 4, .external_lex_state = 24}, - [1288] = {.lex_state = 4, .external_lex_state = 24}, - [1289] = {.lex_state = 4, .external_lex_state = 24}, - [1290] = {.lex_state = 4, .external_lex_state = 24}, - [1291] = {.lex_state = 4, .external_lex_state = 24}, - [1292] = {.lex_state = 4, .external_lex_state = 24}, - [1293] = {.lex_state = 4, .external_lex_state = 24}, - [1294] = {.lex_state = 4, .external_lex_state = 24}, + [1282] = {.lex_state = 4, .external_lex_state = 21}, + [1283] = {.lex_state = 4, .external_lex_state = 21}, + [1284] = {.lex_state = 4, .external_lex_state = 21}, + [1285] = {.lex_state = 4, .external_lex_state = 21}, + [1286] = {.lex_state = 4, .external_lex_state = 21}, + [1287] = {.lex_state = 4, .external_lex_state = 21}, + [1288] = {.lex_state = 4, .external_lex_state = 21}, + [1289] = {.lex_state = 4, .external_lex_state = 21}, + [1290] = {.lex_state = 4, .external_lex_state = 21}, + [1291] = {.lex_state = 4, .external_lex_state = 21}, + [1292] = {.lex_state = 4, .external_lex_state = 21}, + [1293] = {.lex_state = 4, .external_lex_state = 21}, + [1294] = {.lex_state = 4, .external_lex_state = 21}, [1295] = {.lex_state = 4, .external_lex_state = 18}, - [1296] = {.lex_state = 4, .external_lex_state = 24}, - [1297] = {.lex_state = 4, .external_lex_state = 24}, - [1298] = {.lex_state = 4, .external_lex_state = 24}, - [1299] = {.lex_state = 4, .external_lex_state = 24}, - [1300] = {.lex_state = 4, .external_lex_state = 24}, - [1301] = {.lex_state = 4, .external_lex_state = 24}, + [1296] = {.lex_state = 4, .external_lex_state = 21}, + [1297] = {.lex_state = 4, .external_lex_state = 21}, + [1298] = {.lex_state = 4, .external_lex_state = 21}, + [1299] = {.lex_state = 4, .external_lex_state = 21}, + [1300] = {.lex_state = 4, .external_lex_state = 21}, + [1301] = {.lex_state = 4, .external_lex_state = 21}, [1302] = {.lex_state = 4, .external_lex_state = 18}, - [1303] = {.lex_state = 4, .external_lex_state = 26}, - [1304] = {.lex_state = 4, .external_lex_state = 26}, - [1305] = {.lex_state = 4, .external_lex_state = 26}, - [1306] = {.lex_state = 4, .external_lex_state = 26}, - [1307] = {.lex_state = 4, .external_lex_state = 26}, - [1308] = {.lex_state = 4, .external_lex_state = 26}, - [1309] = {.lex_state = 4, .external_lex_state = 26}, - [1310] = {.lex_state = 4, .external_lex_state = 26}, - [1311] = {.lex_state = 4, .external_lex_state = 26}, - [1312] = {.lex_state = 4, .external_lex_state = 26}, - [1313] = {.lex_state = 4, .external_lex_state = 26}, - [1314] = {.lex_state = 4, .external_lex_state = 26}, - [1315] = {.lex_state = 4, .external_lex_state = 26}, - [1316] = {.lex_state = 4, .external_lex_state = 26}, - [1317] = {.lex_state = 4, .external_lex_state = 26}, - [1318] = {.lex_state = 4, .external_lex_state = 26}, - [1319] = {.lex_state = 4, .external_lex_state = 26}, - [1320] = {.lex_state = 4, .external_lex_state = 26}, - [1321] = {.lex_state = 4, .external_lex_state = 26}, + [1303] = {.lex_state = 4, .external_lex_state = 25}, + [1304] = {.lex_state = 4, .external_lex_state = 25}, + [1305] = {.lex_state = 4, .external_lex_state = 25}, + [1306] = {.lex_state = 4, .external_lex_state = 25}, + [1307] = {.lex_state = 4, .external_lex_state = 25}, + [1308] = {.lex_state = 4, .external_lex_state = 25}, + [1309] = {.lex_state = 4, .external_lex_state = 25}, + [1310] = {.lex_state = 4, .external_lex_state = 25}, + [1311] = {.lex_state = 4, .external_lex_state = 25}, + [1312] = {.lex_state = 4, .external_lex_state = 25}, + [1313] = {.lex_state = 4, .external_lex_state = 25}, + [1314] = {.lex_state = 4, .external_lex_state = 25}, + [1315] = {.lex_state = 4, .external_lex_state = 25}, + [1316] = {.lex_state = 4, .external_lex_state = 25}, + [1317] = {.lex_state = 4, .external_lex_state = 25}, + [1318] = {.lex_state = 4, .external_lex_state = 25}, + [1319] = {.lex_state = 4, .external_lex_state = 25}, + [1320] = {.lex_state = 4, .external_lex_state = 25}, + [1321] = {.lex_state = 4, .external_lex_state = 25}, [1322] = {.lex_state = 4, .external_lex_state = 12}, - [1323] = {.lex_state = 4, .external_lex_state = 26}, - [1324] = {.lex_state = 4, .external_lex_state = 26}, - [1325] = {.lex_state = 4, .external_lex_state = 26}, - [1326] = {.lex_state = 4, .external_lex_state = 26}, - [1327] = {.lex_state = 4, .external_lex_state = 26}, - [1328] = {.lex_state = 4, .external_lex_state = 26}, - [1329] = {.lex_state = 3, .external_lex_state = 9}, - [1330] = {.lex_state = 3, .external_lex_state = 9}, - [1331] = {.lex_state = 3, .external_lex_state = 9}, - [1332] = {.lex_state = 3, .external_lex_state = 9}, - [1333] = {.lex_state = 4, .external_lex_state = 25}, - [1334] = {.lex_state = 3, .external_lex_state = 9}, - [1335] = {.lex_state = 4, .external_lex_state = 25}, - [1336] = {.lex_state = 3, .external_lex_state = 9}, - [1337] = {.lex_state = 3, .external_lex_state = 9}, - [1338] = {.lex_state = 3, .external_lex_state = 9}, - [1339] = {.lex_state = 3, .external_lex_state = 9}, - [1340] = {.lex_state = 3, .external_lex_state = 9}, - [1341] = {.lex_state = 3, .external_lex_state = 9}, - [1342] = {.lex_state = 3, .external_lex_state = 9}, - [1343] = {.lex_state = 3, .external_lex_state = 9}, - [1344] = {.lex_state = 3, .external_lex_state = 9}, - [1345] = {.lex_state = 3, .external_lex_state = 9}, - [1346] = {.lex_state = 3, .external_lex_state = 9}, - [1347] = {.lex_state = 3, .external_lex_state = 9}, - [1348] = {.lex_state = 3, .external_lex_state = 9}, + [1323] = {.lex_state = 4, .external_lex_state = 25}, + [1324] = {.lex_state = 4, .external_lex_state = 25}, + [1325] = {.lex_state = 4, .external_lex_state = 25}, + [1326] = {.lex_state = 4, .external_lex_state = 25}, + [1327] = {.lex_state = 4, .external_lex_state = 25}, + [1328] = {.lex_state = 4, .external_lex_state = 25}, + [1329] = {.lex_state = 3, .external_lex_state = 10}, + [1330] = {.lex_state = 3, .external_lex_state = 10}, + [1331] = {.lex_state = 3, .external_lex_state = 10}, + [1332] = {.lex_state = 3, .external_lex_state = 10}, + [1333] = {.lex_state = 4, .external_lex_state = 19}, + [1334] = {.lex_state = 3, .external_lex_state = 10}, + [1335] = {.lex_state = 4, .external_lex_state = 19}, + [1336] = {.lex_state = 3, .external_lex_state = 10}, + [1337] = {.lex_state = 3, .external_lex_state = 10}, + [1338] = {.lex_state = 3, .external_lex_state = 10}, + [1339] = {.lex_state = 3, .external_lex_state = 10}, + [1340] = {.lex_state = 3, .external_lex_state = 10}, + [1341] = {.lex_state = 3, .external_lex_state = 10}, + [1342] = {.lex_state = 3, .external_lex_state = 10}, + [1343] = {.lex_state = 3, .external_lex_state = 10}, + [1344] = {.lex_state = 3, .external_lex_state = 10}, + [1345] = {.lex_state = 3, .external_lex_state = 10}, + [1346] = {.lex_state = 3, .external_lex_state = 10}, + [1347] = {.lex_state = 3, .external_lex_state = 10}, + [1348] = {.lex_state = 3, .external_lex_state = 10}, [1349] = {.lex_state = 4, .external_lex_state = 18}, - [1350] = {.lex_state = 3, .external_lex_state = 9}, - [1351] = {.lex_state = 3, .external_lex_state = 9}, - [1352] = {.lex_state = 3, .external_lex_state = 9}, - [1353] = {.lex_state = 3, .external_lex_state = 9}, - [1354] = {.lex_state = 3, .external_lex_state = 9}, + [1350] = {.lex_state = 3, .external_lex_state = 10}, + [1351] = {.lex_state = 3, .external_lex_state = 10}, + [1352] = {.lex_state = 3, .external_lex_state = 10}, + [1353] = {.lex_state = 3, .external_lex_state = 10}, + [1354] = {.lex_state = 3, .external_lex_state = 10}, [1355] = {.lex_state = 4, .external_lex_state = 15}, [1356] = {.lex_state = 4, .external_lex_state = 18}, [1357] = {.lex_state = 4, .external_lex_state = 15}, @@ -18433,20 +18440,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1360] = {.lex_state = 4, .external_lex_state = 18}, [1361] = {.lex_state = 4, .external_lex_state = 18}, [1362] = {.lex_state = 4, .external_lex_state = 18}, - [1363] = {.lex_state = 3, .external_lex_state = 9}, + [1363] = {.lex_state = 3, .external_lex_state = 10}, [1364] = {.lex_state = 4, .external_lex_state = 18}, [1365] = {.lex_state = 4, .external_lex_state = 18}, [1366] = {.lex_state = 4, .external_lex_state = 12}, [1367] = {.lex_state = 4, .external_lex_state = 18}, [1368] = {.lex_state = 4, .external_lex_state = 12}, - [1369] = {.lex_state = 4, .external_lex_state = 27}, + [1369] = {.lex_state = 4, .external_lex_state = 23}, [1370] = {.lex_state = 4, .external_lex_state = 18}, - [1371] = {.lex_state = 4, .external_lex_state = 27}, + [1371] = {.lex_state = 4, .external_lex_state = 23}, [1372] = {.lex_state = 4, .external_lex_state = 18}, - [1373] = {.lex_state = 4, .external_lex_state = 27}, - [1374] = {.lex_state = 4, .external_lex_state = 27}, - [1375] = {.lex_state = 4, .external_lex_state = 27}, - [1376] = {.lex_state = 4, .external_lex_state = 27}, + [1373] = {.lex_state = 4, .external_lex_state = 23}, + [1374] = {.lex_state = 4, .external_lex_state = 23}, + [1375] = {.lex_state = 4, .external_lex_state = 23}, + [1376] = {.lex_state = 4, .external_lex_state = 23}, [1377] = {.lex_state = 4, .external_lex_state = 18}, [1378] = {.lex_state = 4, .external_lex_state = 18}, [1379] = {.lex_state = 4, .external_lex_state = 18}, @@ -18457,65 +18464,65 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1384] = {.lex_state = 4, .external_lex_state = 18}, [1385] = {.lex_state = 4, .external_lex_state = 18}, [1386] = {.lex_state = 4, .external_lex_state = 18}, - [1387] = {.lex_state = 4, .external_lex_state = 27}, + [1387] = {.lex_state = 4, .external_lex_state = 23}, [1388] = {.lex_state = 4, .external_lex_state = 18}, [1389] = {.lex_state = 4, .external_lex_state = 18}, - [1390] = {.lex_state = 4, .external_lex_state = 27}, + [1390] = {.lex_state = 4, .external_lex_state = 23}, [1391] = {.lex_state = 4, .external_lex_state = 18}, [1392] = {.lex_state = 4, .external_lex_state = 18}, - [1393] = {.lex_state = 4, .external_lex_state = 27}, + [1393] = {.lex_state = 4, .external_lex_state = 23}, [1394] = {.lex_state = 4, .external_lex_state = 18}, [1395] = {.lex_state = 4, .external_lex_state = 18}, [1396] = {.lex_state = 4, .external_lex_state = 15}, [1397] = {.lex_state = 4, .external_lex_state = 15}, [1398] = {.lex_state = 4, .external_lex_state = 15}, [1399] = {.lex_state = 4, .external_lex_state = 15}, - [1400] = {.lex_state = 1, .external_lex_state = 9}, - [1401] = {.lex_state = 1, .external_lex_state = 9}, - [1402] = {.lex_state = 1, .external_lex_state = 9}, - [1403] = {.lex_state = 1, .external_lex_state = 9}, - [1404] = {.lex_state = 1, .external_lex_state = 9}, - [1405] = {.lex_state = 1, .external_lex_state = 9}, + [1400] = {.lex_state = 1, .external_lex_state = 10}, + [1401] = {.lex_state = 1, .external_lex_state = 10}, + [1402] = {.lex_state = 1, .external_lex_state = 10}, + [1403] = {.lex_state = 1, .external_lex_state = 10}, + [1404] = {.lex_state = 1, .external_lex_state = 10}, + [1405] = {.lex_state = 1, .external_lex_state = 10}, [1406] = {.lex_state = 4, .external_lex_state = 15}, [1407] = {.lex_state = 4, .external_lex_state = 15}, - [1408] = {.lex_state = 4, .external_lex_state = 27}, + [1408] = {.lex_state = 4, .external_lex_state = 23}, [1409] = {.lex_state = 4, .external_lex_state = 18}, - [1410] = {.lex_state = 4, .external_lex_state = 27}, + [1410] = {.lex_state = 4, .external_lex_state = 23}, [1411] = {.lex_state = 4, .external_lex_state = 18}, [1412] = {.lex_state = 4, .external_lex_state = 18}, [1413] = {.lex_state = 4, .external_lex_state = 18}, [1414] = {.lex_state = 4, .external_lex_state = 18}, - [1415] = {.lex_state = 4, .external_lex_state = 27}, + [1415] = {.lex_state = 4, .external_lex_state = 23}, [1416] = {.lex_state = 4, .external_lex_state = 18}, [1417] = {.lex_state = 4, .external_lex_state = 18}, - [1418] = {.lex_state = 4, .external_lex_state = 27}, - [1419] = {.lex_state = 4, .external_lex_state = 27}, + [1418] = {.lex_state = 4, .external_lex_state = 23}, + [1419] = {.lex_state = 4, .external_lex_state = 23}, [1420] = {.lex_state = 4, .external_lex_state = 18}, - [1421] = {.lex_state = 4, .external_lex_state = 27}, - [1422] = {.lex_state = 4, .external_lex_state = 27}, + [1421] = {.lex_state = 4, .external_lex_state = 23}, + [1422] = {.lex_state = 4, .external_lex_state = 23}, [1423] = {.lex_state = 4, .external_lex_state = 18}, - [1424] = {.lex_state = 4, .external_lex_state = 27}, - [1425] = {.lex_state = 4, .external_lex_state = 27}, + [1424] = {.lex_state = 4, .external_lex_state = 23}, + [1425] = {.lex_state = 4, .external_lex_state = 23}, [1426] = {.lex_state = 4, .external_lex_state = 18}, - [1427] = {.lex_state = 4, .external_lex_state = 27}, - [1428] = {.lex_state = 4, .external_lex_state = 27}, + [1427] = {.lex_state = 4, .external_lex_state = 23}, + [1428] = {.lex_state = 4, .external_lex_state = 23}, [1429] = {.lex_state = 4, .external_lex_state = 18}, - [1430] = {.lex_state = 4, .external_lex_state = 27}, + [1430] = {.lex_state = 4, .external_lex_state = 23}, [1431] = {.lex_state = 4, .external_lex_state = 18}, [1432] = {.lex_state = 4, .external_lex_state = 18}, - [1433] = {.lex_state = 1, .external_lex_state = 9}, - [1434] = {.lex_state = 1, .external_lex_state = 9}, - [1435] = {.lex_state = 1, .external_lex_state = 9}, - [1436] = {.lex_state = 1, .external_lex_state = 9}, - [1437] = {.lex_state = 1, .external_lex_state = 9}, - [1438] = {.lex_state = 1, .external_lex_state = 9}, - [1439] = {.lex_state = 1, .external_lex_state = 9}, - [1440] = {.lex_state = 1, .external_lex_state = 9}, - [1441] = {.lex_state = 1, .external_lex_state = 9}, - [1442] = {.lex_state = 1, .external_lex_state = 9}, - [1443] = {.lex_state = 1, .external_lex_state = 9}, - [1444] = {.lex_state = 1, .external_lex_state = 9}, - [1445] = {.lex_state = 1, .external_lex_state = 9}, + [1433] = {.lex_state = 1, .external_lex_state = 10}, + [1434] = {.lex_state = 1, .external_lex_state = 10}, + [1435] = {.lex_state = 1, .external_lex_state = 10}, + [1436] = {.lex_state = 1, .external_lex_state = 10}, + [1437] = {.lex_state = 1, .external_lex_state = 10}, + [1438] = {.lex_state = 1, .external_lex_state = 10}, + [1439] = {.lex_state = 1, .external_lex_state = 10}, + [1440] = {.lex_state = 1, .external_lex_state = 10}, + [1441] = {.lex_state = 1, .external_lex_state = 10}, + [1442] = {.lex_state = 1, .external_lex_state = 10}, + [1443] = {.lex_state = 1, .external_lex_state = 10}, + [1444] = {.lex_state = 1, .external_lex_state = 10}, + [1445] = {.lex_state = 1, .external_lex_state = 10}, [1446] = {.lex_state = 4, .external_lex_state = 18}, [1447] = {.lex_state = 4, .external_lex_state = 18}, [1448] = {.lex_state = 4, .external_lex_state = 18}, @@ -18532,13 +18539,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1459] = {.lex_state = 4, .external_lex_state = 15}, [1460] = {.lex_state = 4, .external_lex_state = 15}, [1461] = {.lex_state = 4, .external_lex_state = 15}, - [1462] = {.lex_state = 1, .external_lex_state = 9}, - [1463] = {.lex_state = 1, .external_lex_state = 9}, - [1464] = {.lex_state = 1, .external_lex_state = 9}, - [1465] = {.lex_state = 1, .external_lex_state = 9}, + [1462] = {.lex_state = 1, .external_lex_state = 10}, + [1463] = {.lex_state = 1, .external_lex_state = 10}, + [1464] = {.lex_state = 1, .external_lex_state = 10}, + [1465] = {.lex_state = 1, .external_lex_state = 10}, [1466] = {.lex_state = 4, .external_lex_state = 15}, - [1467] = {.lex_state = 1, .external_lex_state = 9}, - [1468] = {.lex_state = 1, .external_lex_state = 9}, + [1467] = {.lex_state = 1, .external_lex_state = 10}, + [1468] = {.lex_state = 1, .external_lex_state = 10}, [1469] = {.lex_state = 4, .external_lex_state = 15}, [1470] = {.lex_state = 4, .external_lex_state = 15}, [1471] = {.lex_state = 4, .external_lex_state = 15}, @@ -18554,380 +18561,380 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1481] = {.lex_state = 4, .external_lex_state = 18}, [1482] = {.lex_state = 4, .external_lex_state = 18}, [1483] = {.lex_state = 4, .external_lex_state = 18}, - [1484] = {.lex_state = 4, .external_lex_state = 23}, - [1485] = {.lex_state = 4, .external_lex_state = 23}, - [1486] = {.lex_state = 4, .external_lex_state = 23}, - [1487] = {.lex_state = 4, .external_lex_state = 23}, - [1488] = {.lex_state = 4, .external_lex_state = 23}, - [1489] = {.lex_state = 4, .external_lex_state = 23}, + [1484] = {.lex_state = 4, .external_lex_state = 20}, + [1485] = {.lex_state = 4, .external_lex_state = 20}, + [1486] = {.lex_state = 4, .external_lex_state = 20}, + [1487] = {.lex_state = 4, .external_lex_state = 20}, + [1488] = {.lex_state = 4, .external_lex_state = 20}, + [1489] = {.lex_state = 4, .external_lex_state = 20}, [1490] = {.lex_state = 4, .external_lex_state = 18}, - [1491] = {.lex_state = 4, .external_lex_state = 23}, - [1492] = {.lex_state = 4, .external_lex_state = 23}, - [1493] = {.lex_state = 4, .external_lex_state = 25}, - [1494] = {.lex_state = 4, .external_lex_state = 23}, - [1495] = {.lex_state = 4, .external_lex_state = 23}, - [1496] = {.lex_state = 4, .external_lex_state = 23}, - [1497] = {.lex_state = 4, .external_lex_state = 23}, - [1498] = {.lex_state = 4, .external_lex_state = 23}, - [1499] = {.lex_state = 4, .external_lex_state = 23}, - [1500] = {.lex_state = 4, .external_lex_state = 23}, - [1501] = {.lex_state = 4, .external_lex_state = 23}, - [1502] = {.lex_state = 4, .external_lex_state = 23}, - [1503] = {.lex_state = 4, .external_lex_state = 23}, + [1491] = {.lex_state = 4, .external_lex_state = 20}, + [1492] = {.lex_state = 4, .external_lex_state = 20}, + [1493] = {.lex_state = 4, .external_lex_state = 19}, + [1494] = {.lex_state = 4, .external_lex_state = 20}, + [1495] = {.lex_state = 4, .external_lex_state = 20}, + [1496] = {.lex_state = 4, .external_lex_state = 20}, + [1497] = {.lex_state = 4, .external_lex_state = 20}, + [1498] = {.lex_state = 4, .external_lex_state = 20}, + [1499] = {.lex_state = 4, .external_lex_state = 20}, + [1500] = {.lex_state = 4, .external_lex_state = 20}, + [1501] = {.lex_state = 4, .external_lex_state = 20}, + [1502] = {.lex_state = 4, .external_lex_state = 20}, + [1503] = {.lex_state = 4, .external_lex_state = 20}, [1504] = {.lex_state = 4, .external_lex_state = 18}, - [1505] = {.lex_state = 4, .external_lex_state = 23}, - [1506] = {.lex_state = 4, .external_lex_state = 23}, - [1507] = {.lex_state = 4, .external_lex_state = 23}, - [1508] = {.lex_state = 4, .external_lex_state = 23}, - [1509] = {.lex_state = 4, .external_lex_state = 23}, - [1510] = {.lex_state = 4, .external_lex_state = 23}, + [1505] = {.lex_state = 4, .external_lex_state = 20}, + [1506] = {.lex_state = 4, .external_lex_state = 20}, + [1507] = {.lex_state = 4, .external_lex_state = 20}, + [1508] = {.lex_state = 4, .external_lex_state = 20}, + [1509] = {.lex_state = 4, .external_lex_state = 20}, + [1510] = {.lex_state = 4, .external_lex_state = 20}, [1511] = {.lex_state = 4, .external_lex_state = 18}, - [1512] = {.lex_state = 4, .external_lex_state = 25}, - [1513] = {.lex_state = 4, .external_lex_state = 25}, - [1514] = {.lex_state = 4, .external_lex_state = 25}, - [1515] = {.lex_state = 4, .external_lex_state = 25}, - [1516] = {.lex_state = 4, .external_lex_state = 25}, - [1517] = {.lex_state = 4, .external_lex_state = 25}, - [1518] = {.lex_state = 4, .external_lex_state = 25}, - [1519] = {.lex_state = 4, .external_lex_state = 25}, - [1520] = {.lex_state = 4, .external_lex_state = 25}, - [1521] = {.lex_state = 4, .external_lex_state = 25}, - [1522] = {.lex_state = 4, .external_lex_state = 25}, - [1523] = {.lex_state = 4, .external_lex_state = 25}, - [1524] = {.lex_state = 4, .external_lex_state = 25}, - [1525] = {.lex_state = 4, .external_lex_state = 25}, - [1526] = {.lex_state = 3, .external_lex_state = 9}, - [1527] = {.lex_state = 4, .external_lex_state = 23}, - [1528] = {.lex_state = 4, .external_lex_state = 24}, - [1529] = {.lex_state = 4, .external_lex_state = 24}, - [1530] = {.lex_state = 4, .external_lex_state = 21}, - [1531] = {.lex_state = 4, .external_lex_state = 21}, - [1532] = {.lex_state = 4, .external_lex_state = 27}, - [1533] = {.lex_state = 4, .external_lex_state = 27}, - [1534] = {.lex_state = 4, .external_lex_state = 22}, - [1535] = {.lex_state = 4, .external_lex_state = 24}, - [1536] = {.lex_state = 4, .external_lex_state = 27}, - [1537] = {.lex_state = 4, .external_lex_state = 27}, - [1538] = {.lex_state = 4, .external_lex_state = 21}, - [1539] = {.lex_state = 4, .external_lex_state = 21}, - [1540] = {.lex_state = 4, .external_lex_state = 21}, - [1541] = {.lex_state = 4, .external_lex_state = 25}, - [1542] = {.lex_state = 4, .external_lex_state = 21}, - [1543] = {.lex_state = 4, .external_lex_state = 21}, - [1544] = {.lex_state = 4, .external_lex_state = 25}, - [1545] = {.lex_state = 4, .external_lex_state = 21}, - [1546] = {.lex_state = 4, .external_lex_state = 21}, - [1547] = {.lex_state = 4, .external_lex_state = 20}, - [1548] = {.lex_state = 4, .external_lex_state = 21}, - [1549] = {.lex_state = 4, .external_lex_state = 21}, - [1550] = {.lex_state = 4, .external_lex_state = 25}, - [1551] = {.lex_state = 4, .external_lex_state = 21}, - [1552] = {.lex_state = 4, .external_lex_state = 21}, - [1553] = {.lex_state = 4, .external_lex_state = 21}, - [1554] = {.lex_state = 4, .external_lex_state = 21}, - [1555] = {.lex_state = 4, .external_lex_state = 21}, - [1556] = {.lex_state = 4, .external_lex_state = 20}, - [1557] = {.lex_state = 4, .external_lex_state = 21}, - [1558] = {.lex_state = 4, .external_lex_state = 21}, - [1559] = {.lex_state = 4, .external_lex_state = 25}, - [1560] = {.lex_state = 4, .external_lex_state = 21}, - [1561] = {.lex_state = 4, .external_lex_state = 21}, - [1562] = {.lex_state = 4, .external_lex_state = 21}, - [1563] = {.lex_state = 4, .external_lex_state = 21}, - [1564] = {.lex_state = 4, .external_lex_state = 21}, - [1565] = {.lex_state = 4, .external_lex_state = 21}, - [1566] = {.lex_state = 4, .external_lex_state = 21}, - [1567] = {.lex_state = 4, .external_lex_state = 21}, - [1568] = {.lex_state = 4, .external_lex_state = 21}, - [1569] = {.lex_state = 4, .external_lex_state = 21}, - [1570] = {.lex_state = 4, .external_lex_state = 21}, - [1571] = {.lex_state = 4, .external_lex_state = 21}, - [1572] = {.lex_state = 4, .external_lex_state = 21}, - [1573] = {.lex_state = 4, .external_lex_state = 21}, - [1574] = {.lex_state = 4, .external_lex_state = 21}, - [1575] = {.lex_state = 4, .external_lex_state = 21}, - [1576] = {.lex_state = 4, .external_lex_state = 21}, - [1577] = {.lex_state = 4, .external_lex_state = 21}, - [1578] = {.lex_state = 4, .external_lex_state = 22}, + [1512] = {.lex_state = 4, .external_lex_state = 19}, + [1513] = {.lex_state = 4, .external_lex_state = 19}, + [1514] = {.lex_state = 4, .external_lex_state = 19}, + [1515] = {.lex_state = 4, .external_lex_state = 19}, + [1516] = {.lex_state = 4, .external_lex_state = 19}, + [1517] = {.lex_state = 4, .external_lex_state = 19}, + [1518] = {.lex_state = 4, .external_lex_state = 19}, + [1519] = {.lex_state = 4, .external_lex_state = 19}, + [1520] = {.lex_state = 4, .external_lex_state = 19}, + [1521] = {.lex_state = 4, .external_lex_state = 19}, + [1522] = {.lex_state = 4, .external_lex_state = 19}, + [1523] = {.lex_state = 4, .external_lex_state = 19}, + [1524] = {.lex_state = 4, .external_lex_state = 19}, + [1525] = {.lex_state = 4, .external_lex_state = 19}, + [1526] = {.lex_state = 3, .external_lex_state = 10}, + [1527] = {.lex_state = 4, .external_lex_state = 20}, + [1528] = {.lex_state = 4, .external_lex_state = 21}, + [1529] = {.lex_state = 4, .external_lex_state = 21}, + [1530] = {.lex_state = 4, .external_lex_state = 22}, + [1531] = {.lex_state = 4, .external_lex_state = 22}, + [1532] = {.lex_state = 4, .external_lex_state = 23}, + [1533] = {.lex_state = 4, .external_lex_state = 23}, + [1534] = {.lex_state = 4, .external_lex_state = 27}, + [1535] = {.lex_state = 4, .external_lex_state = 21}, + [1536] = {.lex_state = 4, .external_lex_state = 23}, + [1537] = {.lex_state = 4, .external_lex_state = 23}, + [1538] = {.lex_state = 4, .external_lex_state = 22}, + [1539] = {.lex_state = 4, .external_lex_state = 22}, + [1540] = {.lex_state = 4, .external_lex_state = 22}, + [1541] = {.lex_state = 4, .external_lex_state = 19}, + [1542] = {.lex_state = 4, .external_lex_state = 22}, + [1543] = {.lex_state = 4, .external_lex_state = 22}, + [1544] = {.lex_state = 4, .external_lex_state = 19}, + [1545] = {.lex_state = 4, .external_lex_state = 22}, + [1546] = {.lex_state = 4, .external_lex_state = 22}, + [1547] = {.lex_state = 4, .external_lex_state = 24}, + [1548] = {.lex_state = 4, .external_lex_state = 22}, + [1549] = {.lex_state = 4, .external_lex_state = 22}, + [1550] = {.lex_state = 4, .external_lex_state = 19}, + [1551] = {.lex_state = 4, .external_lex_state = 22}, + [1552] = {.lex_state = 4, .external_lex_state = 22}, + [1553] = {.lex_state = 4, .external_lex_state = 22}, + [1554] = {.lex_state = 4, .external_lex_state = 22}, + [1555] = {.lex_state = 4, .external_lex_state = 22}, + [1556] = {.lex_state = 4, .external_lex_state = 24}, + [1557] = {.lex_state = 4, .external_lex_state = 22}, + [1558] = {.lex_state = 4, .external_lex_state = 22}, + [1559] = {.lex_state = 4, .external_lex_state = 19}, + [1560] = {.lex_state = 4, .external_lex_state = 22}, + [1561] = {.lex_state = 4, .external_lex_state = 22}, + [1562] = {.lex_state = 4, .external_lex_state = 22}, + [1563] = {.lex_state = 4, .external_lex_state = 22}, + [1564] = {.lex_state = 4, .external_lex_state = 22}, + [1565] = {.lex_state = 4, .external_lex_state = 22}, + [1566] = {.lex_state = 4, .external_lex_state = 22}, + [1567] = {.lex_state = 4, .external_lex_state = 22}, + [1568] = {.lex_state = 4, .external_lex_state = 22}, + [1569] = {.lex_state = 4, .external_lex_state = 22}, + [1570] = {.lex_state = 4, .external_lex_state = 22}, + [1571] = {.lex_state = 4, .external_lex_state = 22}, + [1572] = {.lex_state = 4, .external_lex_state = 22}, + [1573] = {.lex_state = 4, .external_lex_state = 22}, + [1574] = {.lex_state = 4, .external_lex_state = 22}, + [1575] = {.lex_state = 4, .external_lex_state = 22}, + [1576] = {.lex_state = 4, .external_lex_state = 22}, + [1577] = {.lex_state = 4, .external_lex_state = 22}, + [1578] = {.lex_state = 4, .external_lex_state = 27}, [1579] = {.lex_state = 4, .external_lex_state = 15}, - [1580] = {.lex_state = 4, .external_lex_state = 24}, - [1581] = {.lex_state = 4, .external_lex_state = 25}, - [1582] = {.lex_state = 4, .external_lex_state = 25}, - [1583] = {.lex_state = 4, .external_lex_state = 24}, - [1584] = {.lex_state = 4, .external_lex_state = 22}, - [1585] = {.lex_state = 4, .external_lex_state = 22}, - [1586] = {.lex_state = 4, .external_lex_state = 22}, - [1587] = {.lex_state = 4, .external_lex_state = 22}, - [1588] = {.lex_state = 4, .external_lex_state = 25}, - [1589] = {.lex_state = 4, .external_lex_state = 25}, - [1590] = {.lex_state = 4, .external_lex_state = 21}, + [1580] = {.lex_state = 4, .external_lex_state = 21}, + [1581] = {.lex_state = 4, .external_lex_state = 19}, + [1582] = {.lex_state = 4, .external_lex_state = 19}, + [1583] = {.lex_state = 4, .external_lex_state = 21}, + [1584] = {.lex_state = 4, .external_lex_state = 27}, + [1585] = {.lex_state = 4, .external_lex_state = 27}, + [1586] = {.lex_state = 4, .external_lex_state = 27}, + [1587] = {.lex_state = 4, .external_lex_state = 27}, + [1588] = {.lex_state = 4, .external_lex_state = 19}, + [1589] = {.lex_state = 4, .external_lex_state = 19}, + [1590] = {.lex_state = 4, .external_lex_state = 22}, [1591] = {.lex_state = 4, .external_lex_state = 15}, - [1592] = {.lex_state = 4, .external_lex_state = 21}, - [1593] = {.lex_state = 4, .external_lex_state = 24}, - [1594] = {.lex_state = 4, .external_lex_state = 22}, - [1595] = {.lex_state = 4, .external_lex_state = 25}, - [1596] = {.lex_state = 4, .external_lex_state = 25}, - [1597] = {.lex_state = 4, .external_lex_state = 22}, - [1598] = {.lex_state = 4, .external_lex_state = 24}, - [1599] = {.lex_state = 4, .external_lex_state = 25}, - [1600] = {.lex_state = 4, .external_lex_state = 22}, - [1601] = {.lex_state = 4, .external_lex_state = 25}, - [1602] = {.lex_state = 4, .external_lex_state = 24}, - [1603] = {.lex_state = 4, .external_lex_state = 22}, - [1604] = {.lex_state = 4, .external_lex_state = 24}, - [1605] = {.lex_state = 4, .external_lex_state = 24}, - [1606] = {.lex_state = 4, .external_lex_state = 22}, - [1607] = {.lex_state = 4, .external_lex_state = 22}, - [1608] = {.lex_state = 4, .external_lex_state = 22}, - [1609] = {.lex_state = 4, .external_lex_state = 22}, - [1610] = {.lex_state = 4, .external_lex_state = 22}, - [1611] = {.lex_state = 4, .external_lex_state = 22}, - [1612] = {.lex_state = 4, .external_lex_state = 22}, - [1613] = {.lex_state = 4, .external_lex_state = 22}, - [1614] = {.lex_state = 4, .external_lex_state = 22}, - [1615] = {.lex_state = 4, .external_lex_state = 22}, - [1616] = {.lex_state = 4, .external_lex_state = 22}, - [1617] = {.lex_state = 4, .external_lex_state = 22}, - [1618] = {.lex_state = 4, .external_lex_state = 24}, - [1619] = {.lex_state = 4, .external_lex_state = 24}, - [1620] = {.lex_state = 4, .external_lex_state = 22}, - [1621] = {.lex_state = 4, .external_lex_state = 24}, - [1622] = {.lex_state = 4, .external_lex_state = 24}, - [1623] = {.lex_state = 4, .external_lex_state = 22}, - [1624] = {.lex_state = 4, .external_lex_state = 22}, - [1625] = {.lex_state = 4, .external_lex_state = 21}, - [1626] = {.lex_state = 4, .external_lex_state = 21}, - [1627] = {.lex_state = 4, .external_lex_state = 19}, - [1628] = {.lex_state = 4, .external_lex_state = 24}, - [1629] = {.lex_state = 4, .external_lex_state = 21}, - [1630] = {.lex_state = 4, .external_lex_state = 21}, - [1631] = {.lex_state = 4, .external_lex_state = 22}, - [1632] = {.lex_state = 4, .external_lex_state = 22}, - [1633] = {.lex_state = 4, .external_lex_state = 22}, - [1634] = {.lex_state = 4, .external_lex_state = 24}, - [1635] = {.lex_state = 4, .external_lex_state = 22}, - [1636] = {.lex_state = 4, .external_lex_state = 22}, - [1637] = {.lex_state = 4, .external_lex_state = 24}, - [1638] = {.lex_state = 4, .external_lex_state = 22}, - [1639] = {.lex_state = 4, .external_lex_state = 22}, - [1640] = {.lex_state = 4, .external_lex_state = 24}, - [1641] = {.lex_state = 4, .external_lex_state = 22}, - [1642] = {.lex_state = 4, .external_lex_state = 22}, - [1643] = {.lex_state = 4, .external_lex_state = 24}, - [1644] = {.lex_state = 4, .external_lex_state = 22}, - [1645] = {.lex_state = 4, .external_lex_state = 22}, - [1646] = {.lex_state = 4, .external_lex_state = 22}, - [1647] = {.lex_state = 4, .external_lex_state = 22}, - [1648] = {.lex_state = 4, .external_lex_state = 22}, - [1649] = {.lex_state = 4, .external_lex_state = 25}, - [1650] = {.lex_state = 4, .external_lex_state = 22}, - [1651] = {.lex_state = 4, .external_lex_state = 22}, - [1652] = {.lex_state = 4, .external_lex_state = 25}, - [1653] = {.lex_state = 4, .external_lex_state = 22}, - [1654] = {.lex_state = 4, .external_lex_state = 22}, - [1655] = {.lex_state = 4, .external_lex_state = 22}, - [1656] = {.lex_state = 4, .external_lex_state = 22}, - [1657] = {.lex_state = 4, .external_lex_state = 22}, - [1658] = {.lex_state = 4, .external_lex_state = 22}, - [1659] = {.lex_state = 4, .external_lex_state = 22}, - [1660] = {.lex_state = 4, .external_lex_state = 22}, - [1661] = {.lex_state = 4, .external_lex_state = 22}, - [1662] = {.lex_state = 4, .external_lex_state = 22}, - [1663] = {.lex_state = 4, .external_lex_state = 22}, - [1664] = {.lex_state = 4, .external_lex_state = 22}, - [1665] = {.lex_state = 4, .external_lex_state = 22}, - [1666] = {.lex_state = 4, .external_lex_state = 22}, - [1667] = {.lex_state = 4, .external_lex_state = 22}, - [1668] = {.lex_state = 4, .external_lex_state = 22}, - [1669] = {.lex_state = 4, .external_lex_state = 22}, - [1670] = {.lex_state = 4, .external_lex_state = 22}, - [1671] = {.lex_state = 4, .external_lex_state = 19}, + [1592] = {.lex_state = 4, .external_lex_state = 22}, + [1593] = {.lex_state = 4, .external_lex_state = 21}, + [1594] = {.lex_state = 4, .external_lex_state = 27}, + [1595] = {.lex_state = 4, .external_lex_state = 19}, + [1596] = {.lex_state = 4, .external_lex_state = 19}, + [1597] = {.lex_state = 4, .external_lex_state = 27}, + [1598] = {.lex_state = 4, .external_lex_state = 21}, + [1599] = {.lex_state = 4, .external_lex_state = 19}, + [1600] = {.lex_state = 4, .external_lex_state = 27}, + [1601] = {.lex_state = 4, .external_lex_state = 19}, + [1602] = {.lex_state = 4, .external_lex_state = 21}, + [1603] = {.lex_state = 4, .external_lex_state = 27}, + [1604] = {.lex_state = 4, .external_lex_state = 21}, + [1605] = {.lex_state = 4, .external_lex_state = 21}, + [1606] = {.lex_state = 4, .external_lex_state = 27}, + [1607] = {.lex_state = 4, .external_lex_state = 27}, + [1608] = {.lex_state = 4, .external_lex_state = 27}, + [1609] = {.lex_state = 4, .external_lex_state = 27}, + [1610] = {.lex_state = 4, .external_lex_state = 27}, + [1611] = {.lex_state = 4, .external_lex_state = 27}, + [1612] = {.lex_state = 4, .external_lex_state = 27}, + [1613] = {.lex_state = 4, .external_lex_state = 27}, + [1614] = {.lex_state = 4, .external_lex_state = 27}, + [1615] = {.lex_state = 4, .external_lex_state = 27}, + [1616] = {.lex_state = 4, .external_lex_state = 27}, + [1617] = {.lex_state = 4, .external_lex_state = 27}, + [1618] = {.lex_state = 4, .external_lex_state = 21}, + [1619] = {.lex_state = 4, .external_lex_state = 21}, + [1620] = {.lex_state = 4, .external_lex_state = 27}, + [1621] = {.lex_state = 4, .external_lex_state = 21}, + [1622] = {.lex_state = 4, .external_lex_state = 21}, + [1623] = {.lex_state = 4, .external_lex_state = 27}, + [1624] = {.lex_state = 4, .external_lex_state = 27}, + [1625] = {.lex_state = 4, .external_lex_state = 22}, + [1626] = {.lex_state = 4, .external_lex_state = 22}, + [1627] = {.lex_state = 4, .external_lex_state = 26}, + [1628] = {.lex_state = 4, .external_lex_state = 21}, + [1629] = {.lex_state = 4, .external_lex_state = 22}, + [1630] = {.lex_state = 4, .external_lex_state = 22}, + [1631] = {.lex_state = 4, .external_lex_state = 27}, + [1632] = {.lex_state = 4, .external_lex_state = 27}, + [1633] = {.lex_state = 4, .external_lex_state = 27}, + [1634] = {.lex_state = 4, .external_lex_state = 21}, + [1635] = {.lex_state = 4, .external_lex_state = 27}, + [1636] = {.lex_state = 4, .external_lex_state = 27}, + [1637] = {.lex_state = 4, .external_lex_state = 21}, + [1638] = {.lex_state = 4, .external_lex_state = 27}, + [1639] = {.lex_state = 4, .external_lex_state = 27}, + [1640] = {.lex_state = 4, .external_lex_state = 21}, + [1641] = {.lex_state = 4, .external_lex_state = 27}, + [1642] = {.lex_state = 4, .external_lex_state = 27}, + [1643] = {.lex_state = 4, .external_lex_state = 21}, + [1644] = {.lex_state = 4, .external_lex_state = 27}, + [1645] = {.lex_state = 4, .external_lex_state = 27}, + [1646] = {.lex_state = 4, .external_lex_state = 27}, + [1647] = {.lex_state = 4, .external_lex_state = 27}, + [1648] = {.lex_state = 4, .external_lex_state = 27}, + [1649] = {.lex_state = 4, .external_lex_state = 19}, + [1650] = {.lex_state = 4, .external_lex_state = 27}, + [1651] = {.lex_state = 4, .external_lex_state = 27}, + [1652] = {.lex_state = 4, .external_lex_state = 19}, + [1653] = {.lex_state = 4, .external_lex_state = 27}, + [1654] = {.lex_state = 4, .external_lex_state = 27}, + [1655] = {.lex_state = 4, .external_lex_state = 27}, + [1656] = {.lex_state = 4, .external_lex_state = 27}, + [1657] = {.lex_state = 4, .external_lex_state = 27}, + [1658] = {.lex_state = 4, .external_lex_state = 27}, + [1659] = {.lex_state = 4, .external_lex_state = 27}, + [1660] = {.lex_state = 4, .external_lex_state = 27}, + [1661] = {.lex_state = 4, .external_lex_state = 27}, + [1662] = {.lex_state = 4, .external_lex_state = 27}, + [1663] = {.lex_state = 4, .external_lex_state = 27}, + [1664] = {.lex_state = 4, .external_lex_state = 27}, + [1665] = {.lex_state = 4, .external_lex_state = 27}, + [1666] = {.lex_state = 4, .external_lex_state = 27}, + [1667] = {.lex_state = 4, .external_lex_state = 27}, + [1668] = {.lex_state = 4, .external_lex_state = 27}, + [1669] = {.lex_state = 4, .external_lex_state = 27}, + [1670] = {.lex_state = 4, .external_lex_state = 27}, + [1671] = {.lex_state = 4, .external_lex_state = 26}, [1672] = {.lex_state = 4, .external_lex_state = 15}, - [1673] = {.lex_state = 4, .external_lex_state = 24}, - [1674] = {.lex_state = 4, .external_lex_state = 25}, - [1675] = {.lex_state = 4, .external_lex_state = 25}, - [1676] = {.lex_state = 4, .external_lex_state = 24}, - [1677] = {.lex_state = 4, .external_lex_state = 19}, - [1678] = {.lex_state = 4, .external_lex_state = 19}, - [1679] = {.lex_state = 4, .external_lex_state = 19}, - [1680] = {.lex_state = 4, .external_lex_state = 19}, - [1681] = {.lex_state = 4, .external_lex_state = 24}, - [1682] = {.lex_state = 4, .external_lex_state = 20}, - [1683] = {.lex_state = 4, .external_lex_state = 22}, + [1673] = {.lex_state = 4, .external_lex_state = 21}, + [1674] = {.lex_state = 4, .external_lex_state = 19}, + [1675] = {.lex_state = 4, .external_lex_state = 19}, + [1676] = {.lex_state = 4, .external_lex_state = 21}, + [1677] = {.lex_state = 4, .external_lex_state = 26}, + [1678] = {.lex_state = 4, .external_lex_state = 26}, + [1679] = {.lex_state = 4, .external_lex_state = 26}, + [1680] = {.lex_state = 4, .external_lex_state = 26}, + [1681] = {.lex_state = 4, .external_lex_state = 21}, + [1682] = {.lex_state = 4, .external_lex_state = 24}, + [1683] = {.lex_state = 4, .external_lex_state = 27}, [1684] = {.lex_state = 4, .external_lex_state = 15}, - [1685] = {.lex_state = 4, .external_lex_state = 22}, - [1686] = {.lex_state = 4, .external_lex_state = 20}, - [1687] = {.lex_state = 4, .external_lex_state = 19}, - [1688] = {.lex_state = 4, .external_lex_state = 26}, - [1689] = {.lex_state = 4, .external_lex_state = 25}, - [1690] = {.lex_state = 4, .external_lex_state = 19}, - [1691] = {.lex_state = 4, .external_lex_state = 20}, - [1692] = {.lex_state = 4, .external_lex_state = 20}, - [1693] = {.lex_state = 4, .external_lex_state = 19}, - [1694] = {.lex_state = 4, .external_lex_state = 24}, - [1695] = {.lex_state = 4, .external_lex_state = 24}, - [1696] = {.lex_state = 4, .external_lex_state = 19}, - [1697] = {.lex_state = 4, .external_lex_state = 24}, - [1698] = {.lex_state = 4, .external_lex_state = 20}, - [1699] = {.lex_state = 4, .external_lex_state = 19}, - [1700] = {.lex_state = 4, .external_lex_state = 19}, - [1701] = {.lex_state = 4, .external_lex_state = 19}, - [1702] = {.lex_state = 4, .external_lex_state = 19}, - [1703] = {.lex_state = 4, .external_lex_state = 19}, - [1704] = {.lex_state = 4, .external_lex_state = 19}, - [1705] = {.lex_state = 4, .external_lex_state = 19}, - [1706] = {.lex_state = 4, .external_lex_state = 19}, - [1707] = {.lex_state = 4, .external_lex_state = 19}, - [1708] = {.lex_state = 4, .external_lex_state = 19}, - [1709] = {.lex_state = 4, .external_lex_state = 19}, - [1710] = {.lex_state = 4, .external_lex_state = 19}, - [1711] = {.lex_state = 4, .external_lex_state = 24}, - [1712] = {.lex_state = 4, .external_lex_state = 24}, - [1713] = {.lex_state = 4, .external_lex_state = 19}, - [1714] = {.lex_state = 4, .external_lex_state = 25}, - [1715] = {.lex_state = 4, .external_lex_state = 24}, - [1716] = {.lex_state = 4, .external_lex_state = 19}, - [1717] = {.lex_state = 4, .external_lex_state = 19}, - [1718] = {.lex_state = 4, .external_lex_state = 22}, - [1719] = {.lex_state = 4, .external_lex_state = 22}, - [1720] = {.lex_state = 4, .external_lex_state = 24}, - [1721] = {.lex_state = 4, .external_lex_state = 25}, - [1722] = {.lex_state = 4, .external_lex_state = 22}, - [1723] = {.lex_state = 4, .external_lex_state = 22}, - [1724] = {.lex_state = 4, .external_lex_state = 19}, - [1725] = {.lex_state = 4, .external_lex_state = 19}, - [1726] = {.lex_state = 4, .external_lex_state = 19}, - [1727] = {.lex_state = 4, .external_lex_state = 24}, - [1728] = {.lex_state = 4, .external_lex_state = 19}, - [1729] = {.lex_state = 4, .external_lex_state = 19}, - [1730] = {.lex_state = 4, .external_lex_state = 24}, - [1731] = {.lex_state = 4, .external_lex_state = 19}, - [1732] = {.lex_state = 4, .external_lex_state = 19}, - [1733] = {.lex_state = 4, .external_lex_state = 25}, - [1734] = {.lex_state = 4, .external_lex_state = 19}, - [1735] = {.lex_state = 4, .external_lex_state = 19}, - [1736] = {.lex_state = 4, .external_lex_state = 24}, - [1737] = {.lex_state = 4, .external_lex_state = 19}, - [1738] = {.lex_state = 4, .external_lex_state = 19}, - [1739] = {.lex_state = 4, .external_lex_state = 19}, - [1740] = {.lex_state = 4, .external_lex_state = 19}, - [1741] = {.lex_state = 4, .external_lex_state = 19}, - [1742] = {.lex_state = 4, .external_lex_state = 24}, - [1743] = {.lex_state = 4, .external_lex_state = 19}, - [1744] = {.lex_state = 4, .external_lex_state = 19}, - [1745] = {.lex_state = 4, .external_lex_state = 24}, - [1746] = {.lex_state = 4, .external_lex_state = 19}, - [1747] = {.lex_state = 4, .external_lex_state = 19}, - [1748] = {.lex_state = 4, .external_lex_state = 19}, - [1749] = {.lex_state = 4, .external_lex_state = 19}, - [1750] = {.lex_state = 4, .external_lex_state = 19}, - [1751] = {.lex_state = 4, .external_lex_state = 19}, - [1752] = {.lex_state = 4, .external_lex_state = 19}, - [1753] = {.lex_state = 4, .external_lex_state = 19}, - [1754] = {.lex_state = 4, .external_lex_state = 19}, - [1755] = {.lex_state = 4, .external_lex_state = 19}, - [1756] = {.lex_state = 4, .external_lex_state = 19}, - [1757] = {.lex_state = 4, .external_lex_state = 19}, - [1758] = {.lex_state = 4, .external_lex_state = 19}, - [1759] = {.lex_state = 4, .external_lex_state = 19}, - [1760] = {.lex_state = 4, .external_lex_state = 19}, - [1761] = {.lex_state = 4, .external_lex_state = 19}, - [1762] = {.lex_state = 4, .external_lex_state = 19}, - [1763] = {.lex_state = 4, .external_lex_state = 19}, - [1764] = {.lex_state = 4, .external_lex_state = 24}, - [1765] = {.lex_state = 4, .external_lex_state = 24}, - [1766] = {.lex_state = 4, .external_lex_state = 25}, - [1767] = {.lex_state = 4, .external_lex_state = 24}, - [1768] = {.lex_state = 4, .external_lex_state = 24}, - [1769] = {.lex_state = 4, .external_lex_state = 23}, - [1770] = {.lex_state = 4, .external_lex_state = 24}, - [1771] = {.lex_state = 4, .external_lex_state = 24}, - [1772] = {.lex_state = 4, .external_lex_state = 24}, - [1773] = {.lex_state = 4, .external_lex_state = 24}, - [1774] = {.lex_state = 4, .external_lex_state = 24}, - [1775] = {.lex_state = 4, .external_lex_state = 19}, - [1776] = {.lex_state = 4, .external_lex_state = 19}, - [1777] = {.lex_state = 4, .external_lex_state = 24}, - [1778] = {.lex_state = 4, .external_lex_state = 24}, - [1779] = {.lex_state = 4, .external_lex_state = 24}, - [1780] = {.lex_state = 4, .external_lex_state = 24}, - [1781] = {.lex_state = 4, .external_lex_state = 24}, - [1782] = {.lex_state = 4, .external_lex_state = 24}, - [1783] = {.lex_state = 4, .external_lex_state = 24}, - [1784] = {.lex_state = 4, .external_lex_state = 24}, - [1785] = {.lex_state = 4, .external_lex_state = 24}, - [1786] = {.lex_state = 4, .external_lex_state = 24}, - [1787] = {.lex_state = 4, .external_lex_state = 24}, - [1788] = {.lex_state = 4, .external_lex_state = 24}, - [1789] = {.lex_state = 4, .external_lex_state = 24}, - [1790] = {.lex_state = 4, .external_lex_state = 26}, - [1791] = {.lex_state = 4, .external_lex_state = 20}, - [1792] = {.lex_state = 4, .external_lex_state = 20}, - [1793] = {.lex_state = 4, .external_lex_state = 20}, - [1794] = {.lex_state = 4, .external_lex_state = 26}, - [1795] = {.lex_state = 4, .external_lex_state = 26}, - [1796] = {.lex_state = 4, .external_lex_state = 26}, - [1797] = {.lex_state = 4, .external_lex_state = 26}, - [1798] = {.lex_state = 4, .external_lex_state = 20}, - [1799] = {.lex_state = 4, .external_lex_state = 23}, - [1800] = {.lex_state = 4, .external_lex_state = 24}, - [1801] = {.lex_state = 4, .external_lex_state = 24}, - [1802] = {.lex_state = 4, .external_lex_state = 20}, - [1803] = {.lex_state = 4, .external_lex_state = 26}, - [1804] = {.lex_state = 4, .external_lex_state = 25}, - [1805] = {.lex_state = 4, .external_lex_state = 25}, - [1806] = {.lex_state = 4, .external_lex_state = 19}, - [1807] = {.lex_state = 4, .external_lex_state = 19}, - [1808] = {.lex_state = 4, .external_lex_state = 19}, - [1809] = {.lex_state = 4, .external_lex_state = 19}, - [1810] = {.lex_state = 4, .external_lex_state = 26}, - [1811] = {.lex_state = 4, .external_lex_state = 25}, - [1812] = {.lex_state = 4, .external_lex_state = 23}, - [1813] = {.lex_state = 4, .external_lex_state = 26}, - [1814] = {.lex_state = 4, .external_lex_state = 20}, - [1815] = {.lex_state = 4, .external_lex_state = 23}, - [1816] = {.lex_state = 4, .external_lex_state = 26}, - [1817] = {.lex_state = 4, .external_lex_state = 25}, - [1818] = {.lex_state = 4, .external_lex_state = 20}, - [1819] = {.lex_state = 4, .external_lex_state = 26}, - [1820] = {.lex_state = 4, .external_lex_state = 26}, - [1821] = {.lex_state = 4, .external_lex_state = 26}, - [1822] = {.lex_state = 4, .external_lex_state = 26}, - [1823] = {.lex_state = 4, .external_lex_state = 26}, - [1824] = {.lex_state = 4, .external_lex_state = 26}, - [1825] = {.lex_state = 4, .external_lex_state = 26}, - [1826] = {.lex_state = 4, .external_lex_state = 26}, - [1827] = {.lex_state = 4, .external_lex_state = 26}, - [1828] = {.lex_state = 4, .external_lex_state = 26}, - [1829] = {.lex_state = 4, .external_lex_state = 26}, - [1830] = {.lex_state = 4, .external_lex_state = 26}, - [1831] = {.lex_state = 4, .external_lex_state = 25}, - [1832] = {.lex_state = 4, .external_lex_state = 25}, - [1833] = {.lex_state = 4, .external_lex_state = 26}, - [1834] = {.lex_state = 4, .external_lex_state = 20}, - [1835] = {.lex_state = 4, .external_lex_state = 25}, - [1836] = {.lex_state = 4, .external_lex_state = 26}, - [1837] = {.lex_state = 4, .external_lex_state = 26}, - [1838] = {.lex_state = 4, .external_lex_state = 24}, - [1839] = {.lex_state = 4, .external_lex_state = 24}, - [1840] = {.lex_state = 3, .external_lex_state = 9}, - [1841] = {.lex_state = 4, .external_lex_state = 25}, - [1842] = {.lex_state = 4, .external_lex_state = 24}, - [1843] = {.lex_state = 4, .external_lex_state = 24}, - [1844] = {.lex_state = 4, .external_lex_state = 26}, - [1845] = {.lex_state = 4, .external_lex_state = 26}, - [1846] = {.lex_state = 4, .external_lex_state = 26}, - [1847] = {.lex_state = 4, .external_lex_state = 20}, - [1848] = {.lex_state = 4, .external_lex_state = 26}, - [1849] = {.lex_state = 4, .external_lex_state = 26}, + [1685] = {.lex_state = 4, .external_lex_state = 27}, + [1686] = {.lex_state = 4, .external_lex_state = 24}, + [1687] = {.lex_state = 4, .external_lex_state = 26}, + [1688] = {.lex_state = 4, .external_lex_state = 25}, + [1689] = {.lex_state = 4, .external_lex_state = 19}, + [1690] = {.lex_state = 4, .external_lex_state = 26}, + [1691] = {.lex_state = 4, .external_lex_state = 24}, + [1692] = {.lex_state = 4, .external_lex_state = 24}, + [1693] = {.lex_state = 4, .external_lex_state = 26}, + [1694] = {.lex_state = 4, .external_lex_state = 21}, + [1695] = {.lex_state = 4, .external_lex_state = 21}, + [1696] = {.lex_state = 4, .external_lex_state = 26}, + [1697] = {.lex_state = 4, .external_lex_state = 21}, + [1698] = {.lex_state = 4, .external_lex_state = 24}, + [1699] = {.lex_state = 4, .external_lex_state = 26}, + [1700] = {.lex_state = 4, .external_lex_state = 26}, + [1701] = {.lex_state = 4, .external_lex_state = 26}, + [1702] = {.lex_state = 4, .external_lex_state = 26}, + [1703] = {.lex_state = 4, .external_lex_state = 26}, + [1704] = {.lex_state = 4, .external_lex_state = 26}, + [1705] = {.lex_state = 4, .external_lex_state = 26}, + [1706] = {.lex_state = 4, .external_lex_state = 26}, + [1707] = {.lex_state = 4, .external_lex_state = 26}, + [1708] = {.lex_state = 4, .external_lex_state = 26}, + [1709] = {.lex_state = 4, .external_lex_state = 26}, + [1710] = {.lex_state = 4, .external_lex_state = 26}, + [1711] = {.lex_state = 4, .external_lex_state = 21}, + [1712] = {.lex_state = 4, .external_lex_state = 21}, + [1713] = {.lex_state = 4, .external_lex_state = 26}, + [1714] = {.lex_state = 4, .external_lex_state = 19}, + [1715] = {.lex_state = 4, .external_lex_state = 21}, + [1716] = {.lex_state = 4, .external_lex_state = 26}, + [1717] = {.lex_state = 4, .external_lex_state = 26}, + [1718] = {.lex_state = 4, .external_lex_state = 27}, + [1719] = {.lex_state = 4, .external_lex_state = 27}, + [1720] = {.lex_state = 4, .external_lex_state = 21}, + [1721] = {.lex_state = 4, .external_lex_state = 19}, + [1722] = {.lex_state = 4, .external_lex_state = 27}, + [1723] = {.lex_state = 4, .external_lex_state = 27}, + [1724] = {.lex_state = 4, .external_lex_state = 26}, + [1725] = {.lex_state = 4, .external_lex_state = 26}, + [1726] = {.lex_state = 4, .external_lex_state = 26}, + [1727] = {.lex_state = 4, .external_lex_state = 21}, + [1728] = {.lex_state = 4, .external_lex_state = 26}, + [1729] = {.lex_state = 4, .external_lex_state = 26}, + [1730] = {.lex_state = 4, .external_lex_state = 21}, + [1731] = {.lex_state = 4, .external_lex_state = 26}, + [1732] = {.lex_state = 4, .external_lex_state = 26}, + [1733] = {.lex_state = 4, .external_lex_state = 19}, + [1734] = {.lex_state = 4, .external_lex_state = 26}, + [1735] = {.lex_state = 4, .external_lex_state = 26}, + [1736] = {.lex_state = 4, .external_lex_state = 21}, + [1737] = {.lex_state = 4, .external_lex_state = 26}, + [1738] = {.lex_state = 4, .external_lex_state = 26}, + [1739] = {.lex_state = 4, .external_lex_state = 26}, + [1740] = {.lex_state = 4, .external_lex_state = 26}, + [1741] = {.lex_state = 4, .external_lex_state = 26}, + [1742] = {.lex_state = 4, .external_lex_state = 21}, + [1743] = {.lex_state = 4, .external_lex_state = 26}, + [1744] = {.lex_state = 4, .external_lex_state = 26}, + [1745] = {.lex_state = 4, .external_lex_state = 21}, + [1746] = {.lex_state = 4, .external_lex_state = 26}, + [1747] = {.lex_state = 4, .external_lex_state = 26}, + [1748] = {.lex_state = 4, .external_lex_state = 26}, + [1749] = {.lex_state = 4, .external_lex_state = 26}, + [1750] = {.lex_state = 4, .external_lex_state = 26}, + [1751] = {.lex_state = 4, .external_lex_state = 26}, + [1752] = {.lex_state = 4, .external_lex_state = 26}, + [1753] = {.lex_state = 4, .external_lex_state = 26}, + [1754] = {.lex_state = 4, .external_lex_state = 26}, + [1755] = {.lex_state = 4, .external_lex_state = 26}, + [1756] = {.lex_state = 4, .external_lex_state = 26}, + [1757] = {.lex_state = 4, .external_lex_state = 26}, + [1758] = {.lex_state = 4, .external_lex_state = 26}, + [1759] = {.lex_state = 4, .external_lex_state = 26}, + [1760] = {.lex_state = 4, .external_lex_state = 26}, + [1761] = {.lex_state = 4, .external_lex_state = 26}, + [1762] = {.lex_state = 4, .external_lex_state = 26}, + [1763] = {.lex_state = 4, .external_lex_state = 26}, + [1764] = {.lex_state = 4, .external_lex_state = 21}, + [1765] = {.lex_state = 4, .external_lex_state = 21}, + [1766] = {.lex_state = 4, .external_lex_state = 19}, + [1767] = {.lex_state = 4, .external_lex_state = 21}, + [1768] = {.lex_state = 4, .external_lex_state = 21}, + [1769] = {.lex_state = 4, .external_lex_state = 20}, + [1770] = {.lex_state = 4, .external_lex_state = 21}, + [1771] = {.lex_state = 4, .external_lex_state = 21}, + [1772] = {.lex_state = 4, .external_lex_state = 21}, + [1773] = {.lex_state = 4, .external_lex_state = 21}, + [1774] = {.lex_state = 4, .external_lex_state = 21}, + [1775] = {.lex_state = 4, .external_lex_state = 26}, + [1776] = {.lex_state = 4, .external_lex_state = 26}, + [1777] = {.lex_state = 4, .external_lex_state = 21}, + [1778] = {.lex_state = 4, .external_lex_state = 21}, + [1779] = {.lex_state = 4, .external_lex_state = 21}, + [1780] = {.lex_state = 4, .external_lex_state = 21}, + [1781] = {.lex_state = 4, .external_lex_state = 21}, + [1782] = {.lex_state = 4, .external_lex_state = 21}, + [1783] = {.lex_state = 4, .external_lex_state = 21}, + [1784] = {.lex_state = 4, .external_lex_state = 21}, + [1785] = {.lex_state = 4, .external_lex_state = 21}, + [1786] = {.lex_state = 4, .external_lex_state = 21}, + [1787] = {.lex_state = 4, .external_lex_state = 21}, + [1788] = {.lex_state = 4, .external_lex_state = 21}, + [1789] = {.lex_state = 4, .external_lex_state = 21}, + [1790] = {.lex_state = 4, .external_lex_state = 25}, + [1791] = {.lex_state = 4, .external_lex_state = 24}, + [1792] = {.lex_state = 4, .external_lex_state = 24}, + [1793] = {.lex_state = 4, .external_lex_state = 24}, + [1794] = {.lex_state = 4, .external_lex_state = 25}, + [1795] = {.lex_state = 4, .external_lex_state = 25}, + [1796] = {.lex_state = 4, .external_lex_state = 25}, + [1797] = {.lex_state = 4, .external_lex_state = 25}, + [1798] = {.lex_state = 4, .external_lex_state = 24}, + [1799] = {.lex_state = 4, .external_lex_state = 20}, + [1800] = {.lex_state = 4, .external_lex_state = 21}, + [1801] = {.lex_state = 4, .external_lex_state = 21}, + [1802] = {.lex_state = 4, .external_lex_state = 24}, + [1803] = {.lex_state = 4, .external_lex_state = 25}, + [1804] = {.lex_state = 4, .external_lex_state = 19}, + [1805] = {.lex_state = 4, .external_lex_state = 19}, + [1806] = {.lex_state = 4, .external_lex_state = 26}, + [1807] = {.lex_state = 4, .external_lex_state = 26}, + [1808] = {.lex_state = 4, .external_lex_state = 26}, + [1809] = {.lex_state = 4, .external_lex_state = 26}, + [1810] = {.lex_state = 4, .external_lex_state = 25}, + [1811] = {.lex_state = 4, .external_lex_state = 19}, + [1812] = {.lex_state = 4, .external_lex_state = 20}, + [1813] = {.lex_state = 4, .external_lex_state = 25}, + [1814] = {.lex_state = 4, .external_lex_state = 24}, + [1815] = {.lex_state = 4, .external_lex_state = 20}, + [1816] = {.lex_state = 4, .external_lex_state = 25}, + [1817] = {.lex_state = 4, .external_lex_state = 19}, + [1818] = {.lex_state = 4, .external_lex_state = 24}, + [1819] = {.lex_state = 4, .external_lex_state = 25}, + [1820] = {.lex_state = 4, .external_lex_state = 25}, + [1821] = {.lex_state = 4, .external_lex_state = 25}, + [1822] = {.lex_state = 4, .external_lex_state = 25}, + [1823] = {.lex_state = 4, .external_lex_state = 25}, + [1824] = {.lex_state = 4, .external_lex_state = 25}, + [1825] = {.lex_state = 4, .external_lex_state = 25}, + [1826] = {.lex_state = 4, .external_lex_state = 25}, + [1827] = {.lex_state = 4, .external_lex_state = 25}, + [1828] = {.lex_state = 4, .external_lex_state = 25}, + [1829] = {.lex_state = 4, .external_lex_state = 25}, + [1830] = {.lex_state = 4, .external_lex_state = 25}, + [1831] = {.lex_state = 4, .external_lex_state = 19}, + [1832] = {.lex_state = 4, .external_lex_state = 19}, + [1833] = {.lex_state = 4, .external_lex_state = 25}, + [1834] = {.lex_state = 4, .external_lex_state = 24}, + [1835] = {.lex_state = 4, .external_lex_state = 19}, + [1836] = {.lex_state = 4, .external_lex_state = 25}, + [1837] = {.lex_state = 4, .external_lex_state = 25}, + [1838] = {.lex_state = 4, .external_lex_state = 21}, + [1839] = {.lex_state = 4, .external_lex_state = 21}, + [1840] = {.lex_state = 3, .external_lex_state = 10}, + [1841] = {.lex_state = 4, .external_lex_state = 19}, + [1842] = {.lex_state = 4, .external_lex_state = 21}, + [1843] = {.lex_state = 4, .external_lex_state = 21}, + [1844] = {.lex_state = 4, .external_lex_state = 25}, + [1845] = {.lex_state = 4, .external_lex_state = 25}, + [1846] = {.lex_state = 4, .external_lex_state = 25}, + [1847] = {.lex_state = 4, .external_lex_state = 24}, + [1848] = {.lex_state = 4, .external_lex_state = 25}, + [1849] = {.lex_state = 4, .external_lex_state = 25}, [1850] = {.lex_state = 4, .external_lex_state = 14}, [1851] = {.lex_state = 4, .external_lex_state = 14}, [1852] = {.lex_state = 4, .external_lex_state = 14}, [1853] = {.lex_state = 4, .external_lex_state = 14}, [1854] = {.lex_state = 4, .external_lex_state = 14}, [1855] = {.lex_state = 4, .external_lex_state = 14}, - [1856] = {.lex_state = 4, .external_lex_state = 25}, - [1857] = {.lex_state = 4, .external_lex_state = 26}, + [1856] = {.lex_state = 4, .external_lex_state = 19}, + [1857] = {.lex_state = 4, .external_lex_state = 25}, [1858] = {.lex_state = 4, .external_lex_state = 14}, [1859] = {.lex_state = 4, .external_lex_state = 14}, [1860] = {.lex_state = 4, .external_lex_state = 14}, @@ -18941,127 +18948,127 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1868] = {.lex_state = 4, .external_lex_state = 14}, [1869] = {.lex_state = 4, .external_lex_state = 14}, [1870] = {.lex_state = 4, .external_lex_state = 14}, - [1871] = {.lex_state = 4, .external_lex_state = 26}, - [1872] = {.lex_state = 4, .external_lex_state = 25}, - [1873] = {.lex_state = 4, .external_lex_state = 26}, - [1874] = {.lex_state = 4, .external_lex_state = 26}, + [1871] = {.lex_state = 4, .external_lex_state = 25}, + [1872] = {.lex_state = 4, .external_lex_state = 19}, + [1873] = {.lex_state = 4, .external_lex_state = 25}, + [1874] = {.lex_state = 4, .external_lex_state = 25}, [1875] = {.lex_state = 4, .external_lex_state = 14}, [1876] = {.lex_state = 4, .external_lex_state = 14}, [1877] = {.lex_state = 4, .external_lex_state = 14}, [1878] = {.lex_state = 4, .external_lex_state = 14}, [1879] = {.lex_state = 4, .external_lex_state = 14}, [1880] = {.lex_state = 4, .external_lex_state = 14}, - [1881] = {.lex_state = 4, .external_lex_state = 20}, - [1882] = {.lex_state = 4, .external_lex_state = 26}, - [1883] = {.lex_state = 4, .external_lex_state = 26}, - [1884] = {.lex_state = 4, .external_lex_state = 26}, - [1885] = {.lex_state = 4, .external_lex_state = 26}, - [1886] = {.lex_state = 4, .external_lex_state = 26}, - [1887] = {.lex_state = 4, .external_lex_state = 20}, - [1888] = {.lex_state = 4, .external_lex_state = 26}, - [1889] = {.lex_state = 4, .external_lex_state = 26}, - [1890] = {.lex_state = 4, .external_lex_state = 26}, - [1891] = {.lex_state = 4, .external_lex_state = 26}, - [1892] = {.lex_state = 4, .external_lex_state = 26}, - [1893] = {.lex_state = 4, .external_lex_state = 26}, - [1894] = {.lex_state = 4, .external_lex_state = 26}, - [1895] = {.lex_state = 4, .external_lex_state = 26}, - [1896] = {.lex_state = 4, .external_lex_state = 26}, - [1897] = {.lex_state = 4, .external_lex_state = 26}, - [1898] = {.lex_state = 4, .external_lex_state = 26}, - [1899] = {.lex_state = 4, .external_lex_state = 26}, - [1900] = {.lex_state = 4, .external_lex_state = 26}, - [1901] = {.lex_state = 4, .external_lex_state = 26}, - [1902] = {.lex_state = 4, .external_lex_state = 26}, - [1903] = {.lex_state = 4, .external_lex_state = 26}, - [1904] = {.lex_state = 4, .external_lex_state = 26}, - [1905] = {.lex_state = 4, .external_lex_state = 26}, - [1906] = {.lex_state = 4, .external_lex_state = 26}, - [1907] = {.lex_state = 4, .external_lex_state = 26}, - [1908] = {.lex_state = 3, .external_lex_state = 9}, - [1909] = {.lex_state = 4, .external_lex_state = 20}, - [1910] = {.lex_state = 4, .external_lex_state = 20}, - [1911] = {.lex_state = 4, .external_lex_state = 20}, - [1912] = {.lex_state = 4, .external_lex_state = 20}, - [1913] = {.lex_state = 3, .external_lex_state = 9}, - [1914] = {.lex_state = 3, .external_lex_state = 9}, - [1915] = {.lex_state = 3, .external_lex_state = 9}, - [1916] = {.lex_state = 3, .external_lex_state = 9}, - [1917] = {.lex_state = 4, .external_lex_state = 20}, - [1918] = {.lex_state = 4, .external_lex_state = 20}, - [1919] = {.lex_state = 4, .external_lex_state = 26}, - [1920] = {.lex_state = 4, .external_lex_state = 20}, - [1921] = {.lex_state = 4, .external_lex_state = 26}, - [1922] = {.lex_state = 4, .external_lex_state = 20}, - [1923] = {.lex_state = 3, .external_lex_state = 9}, - [1924] = {.lex_state = 4, .external_lex_state = 20}, - [1925] = {.lex_state = 4, .external_lex_state = 20}, - [1926] = {.lex_state = 3, .external_lex_state = 9}, - [1927] = {.lex_state = 4, .external_lex_state = 25}, - [1928] = {.lex_state = 4, .external_lex_state = 25}, - [1929] = {.lex_state = 3, .external_lex_state = 9}, - [1930] = {.lex_state = 4, .external_lex_state = 20}, - [1931] = {.lex_state = 4, .external_lex_state = 25}, - [1932] = {.lex_state = 3, .external_lex_state = 9}, - [1933] = {.lex_state = 4, .external_lex_state = 25}, - [1934] = {.lex_state = 4, .external_lex_state = 20}, - [1935] = {.lex_state = 3, .external_lex_state = 9}, - [1936] = {.lex_state = 3, .external_lex_state = 9}, - [1937] = {.lex_state = 3, .external_lex_state = 9}, - [1938] = {.lex_state = 3, .external_lex_state = 9}, - [1939] = {.lex_state = 3, .external_lex_state = 9}, - [1940] = {.lex_state = 3, .external_lex_state = 9}, - [1941] = {.lex_state = 3, .external_lex_state = 9}, - [1942] = {.lex_state = 3, .external_lex_state = 9}, - [1943] = {.lex_state = 3, .external_lex_state = 9}, - [1944] = {.lex_state = 3, .external_lex_state = 9}, - [1945] = {.lex_state = 3, .external_lex_state = 9}, - [1946] = {.lex_state = 3, .external_lex_state = 9}, - [1947] = {.lex_state = 4, .external_lex_state = 20}, - [1948] = {.lex_state = 4, .external_lex_state = 25}, - [1949] = {.lex_state = 3, .external_lex_state = 9}, - [1950] = {.lex_state = 4, .external_lex_state = 25}, - [1951] = {.lex_state = 4, .external_lex_state = 24}, - [1952] = {.lex_state = 3, .external_lex_state = 9}, - [1953] = {.lex_state = 3, .external_lex_state = 9}, - [1954] = {.lex_state = 4, .external_lex_state = 26}, - [1955] = {.lex_state = 4, .external_lex_state = 26}, - [1956] = {.lex_state = 4, .external_lex_state = 27}, - [1957] = {.lex_state = 4, .external_lex_state = 25}, - [1958] = {.lex_state = 4, .external_lex_state = 26}, - [1959] = {.lex_state = 4, .external_lex_state = 26}, - [1960] = {.lex_state = 3, .external_lex_state = 9}, - [1961] = {.lex_state = 3, .external_lex_state = 9}, - [1962] = {.lex_state = 3, .external_lex_state = 9}, - [1963] = {.lex_state = 4, .external_lex_state = 25}, - [1964] = {.lex_state = 3, .external_lex_state = 9}, - [1965] = {.lex_state = 3, .external_lex_state = 9}, - [1966] = {.lex_state = 4, .external_lex_state = 25}, - [1967] = {.lex_state = 3, .external_lex_state = 9}, + [1881] = {.lex_state = 4, .external_lex_state = 24}, + [1882] = {.lex_state = 4, .external_lex_state = 25}, + [1883] = {.lex_state = 4, .external_lex_state = 25}, + [1884] = {.lex_state = 4, .external_lex_state = 25}, + [1885] = {.lex_state = 4, .external_lex_state = 25}, + [1886] = {.lex_state = 4, .external_lex_state = 25}, + [1887] = {.lex_state = 4, .external_lex_state = 24}, + [1888] = {.lex_state = 4, .external_lex_state = 25}, + [1889] = {.lex_state = 4, .external_lex_state = 25}, + [1890] = {.lex_state = 4, .external_lex_state = 25}, + [1891] = {.lex_state = 4, .external_lex_state = 25}, + [1892] = {.lex_state = 4, .external_lex_state = 25}, + [1893] = {.lex_state = 4, .external_lex_state = 25}, + [1894] = {.lex_state = 4, .external_lex_state = 25}, + [1895] = {.lex_state = 4, .external_lex_state = 25}, + [1896] = {.lex_state = 4, .external_lex_state = 25}, + [1897] = {.lex_state = 4, .external_lex_state = 25}, + [1898] = {.lex_state = 4, .external_lex_state = 25}, + [1899] = {.lex_state = 4, .external_lex_state = 25}, + [1900] = {.lex_state = 4, .external_lex_state = 25}, + [1901] = {.lex_state = 4, .external_lex_state = 25}, + [1902] = {.lex_state = 4, .external_lex_state = 25}, + [1903] = {.lex_state = 4, .external_lex_state = 25}, + [1904] = {.lex_state = 4, .external_lex_state = 25}, + [1905] = {.lex_state = 4, .external_lex_state = 25}, + [1906] = {.lex_state = 4, .external_lex_state = 25}, + [1907] = {.lex_state = 4, .external_lex_state = 25}, + [1908] = {.lex_state = 3, .external_lex_state = 10}, + [1909] = {.lex_state = 4, .external_lex_state = 24}, + [1910] = {.lex_state = 4, .external_lex_state = 24}, + [1911] = {.lex_state = 4, .external_lex_state = 24}, + [1912] = {.lex_state = 4, .external_lex_state = 24}, + [1913] = {.lex_state = 3, .external_lex_state = 10}, + [1914] = {.lex_state = 3, .external_lex_state = 10}, + [1915] = {.lex_state = 3, .external_lex_state = 10}, + [1916] = {.lex_state = 3, .external_lex_state = 10}, + [1917] = {.lex_state = 4, .external_lex_state = 24}, + [1918] = {.lex_state = 4, .external_lex_state = 24}, + [1919] = {.lex_state = 4, .external_lex_state = 25}, + [1920] = {.lex_state = 4, .external_lex_state = 24}, + [1921] = {.lex_state = 4, .external_lex_state = 25}, + [1922] = {.lex_state = 4, .external_lex_state = 24}, + [1923] = {.lex_state = 3, .external_lex_state = 10}, + [1924] = {.lex_state = 4, .external_lex_state = 24}, + [1925] = {.lex_state = 4, .external_lex_state = 24}, + [1926] = {.lex_state = 3, .external_lex_state = 10}, + [1927] = {.lex_state = 4, .external_lex_state = 19}, + [1928] = {.lex_state = 4, .external_lex_state = 19}, + [1929] = {.lex_state = 3, .external_lex_state = 10}, + [1930] = {.lex_state = 4, .external_lex_state = 24}, + [1931] = {.lex_state = 4, .external_lex_state = 19}, + [1932] = {.lex_state = 3, .external_lex_state = 10}, + [1933] = {.lex_state = 4, .external_lex_state = 19}, + [1934] = {.lex_state = 4, .external_lex_state = 24}, + [1935] = {.lex_state = 3, .external_lex_state = 10}, + [1936] = {.lex_state = 3, .external_lex_state = 10}, + [1937] = {.lex_state = 3, .external_lex_state = 10}, + [1938] = {.lex_state = 3, .external_lex_state = 10}, + [1939] = {.lex_state = 3, .external_lex_state = 10}, + [1940] = {.lex_state = 3, .external_lex_state = 10}, + [1941] = {.lex_state = 3, .external_lex_state = 10}, + [1942] = {.lex_state = 3, .external_lex_state = 10}, + [1943] = {.lex_state = 3, .external_lex_state = 10}, + [1944] = {.lex_state = 3, .external_lex_state = 10}, + [1945] = {.lex_state = 3, .external_lex_state = 10}, + [1946] = {.lex_state = 3, .external_lex_state = 10}, + [1947] = {.lex_state = 4, .external_lex_state = 24}, + [1948] = {.lex_state = 4, .external_lex_state = 19}, + [1949] = {.lex_state = 3, .external_lex_state = 10}, + [1950] = {.lex_state = 4, .external_lex_state = 19}, + [1951] = {.lex_state = 4, .external_lex_state = 21}, + [1952] = {.lex_state = 3, .external_lex_state = 10}, + [1953] = {.lex_state = 3, .external_lex_state = 10}, + [1954] = {.lex_state = 4, .external_lex_state = 25}, + [1955] = {.lex_state = 4, .external_lex_state = 25}, + [1956] = {.lex_state = 4, .external_lex_state = 23}, + [1957] = {.lex_state = 4, .external_lex_state = 19}, + [1958] = {.lex_state = 4, .external_lex_state = 25}, + [1959] = {.lex_state = 4, .external_lex_state = 25}, + [1960] = {.lex_state = 3, .external_lex_state = 10}, + [1961] = {.lex_state = 3, .external_lex_state = 10}, + [1962] = {.lex_state = 3, .external_lex_state = 10}, + [1963] = {.lex_state = 4, .external_lex_state = 19}, + [1964] = {.lex_state = 3, .external_lex_state = 10}, + [1965] = {.lex_state = 3, .external_lex_state = 10}, + [1966] = {.lex_state = 4, .external_lex_state = 19}, + [1967] = {.lex_state = 3, .external_lex_state = 10}, [1968] = {.lex_state = 4, .external_lex_state = 15}, [1969] = {.lex_state = 4, .external_lex_state = 15}, - [1970] = {.lex_state = 3, .external_lex_state = 9}, + [1970] = {.lex_state = 3, .external_lex_state = 10}, [1971] = {.lex_state = 4, .external_lex_state = 15}, - [1972] = {.lex_state = 4, .external_lex_state = 20}, + [1972] = {.lex_state = 4, .external_lex_state = 24}, [1973] = {.lex_state = 4, .external_lex_state = 15}, [1974] = {.lex_state = 4, .external_lex_state = 15}, [1975] = {.lex_state = 4, .external_lex_state = 15}, [1976] = {.lex_state = 4, .external_lex_state = 15}, - [1977] = {.lex_state = 3, .external_lex_state = 9}, + [1977] = {.lex_state = 3, .external_lex_state = 10}, [1978] = {.lex_state = 4, .external_lex_state = 15}, [1979] = {.lex_state = 4, .external_lex_state = 15}, - [1980] = {.lex_state = 3, .external_lex_state = 9}, - [1981] = {.lex_state = 4, .external_lex_state = 20}, - [1982] = {.lex_state = 3, .external_lex_state = 9}, - [1983] = {.lex_state = 3, .external_lex_state = 9}, - [1984] = {.lex_state = 3, .external_lex_state = 9}, - [1985] = {.lex_state = 3, .external_lex_state = 9}, - [1986] = {.lex_state = 3, .external_lex_state = 9}, - [1987] = {.lex_state = 4, .external_lex_state = 20}, - [1988] = {.lex_state = 3, .external_lex_state = 9}, - [1989] = {.lex_state = 3, .external_lex_state = 9}, - [1990] = {.lex_state = 4, .external_lex_state = 25}, - [1991] = {.lex_state = 3, .external_lex_state = 9}, + [1980] = {.lex_state = 3, .external_lex_state = 10}, + [1981] = {.lex_state = 4, .external_lex_state = 24}, + [1982] = {.lex_state = 3, .external_lex_state = 10}, + [1983] = {.lex_state = 3, .external_lex_state = 10}, + [1984] = {.lex_state = 3, .external_lex_state = 10}, + [1985] = {.lex_state = 3, .external_lex_state = 10}, + [1986] = {.lex_state = 3, .external_lex_state = 10}, + [1987] = {.lex_state = 4, .external_lex_state = 24}, + [1988] = {.lex_state = 3, .external_lex_state = 10}, + [1989] = {.lex_state = 3, .external_lex_state = 10}, + [1990] = {.lex_state = 4, .external_lex_state = 19}, + [1991] = {.lex_state = 3, .external_lex_state = 10}, [1992] = {.lex_state = 4, .external_lex_state = 15}, [1993] = {.lex_state = 4, .external_lex_state = 15}, [1994] = {.lex_state = 4, .external_lex_state = 15}, @@ -19073,169 +19080,169 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2000] = {.lex_state = 4, .external_lex_state = 15}, [2001] = {.lex_state = 4, .external_lex_state = 15}, [2002] = {.lex_state = 4, .external_lex_state = 15}, - [2003] = {.lex_state = 3, .external_lex_state = 9}, - [2004] = {.lex_state = 3, .external_lex_state = 9}, - [2005] = {.lex_state = 3, .external_lex_state = 9}, - [2006] = {.lex_state = 3, .external_lex_state = 9}, - [2007] = {.lex_state = 3, .external_lex_state = 9}, - [2008] = {.lex_state = 3, .external_lex_state = 9}, + [2003] = {.lex_state = 3, .external_lex_state = 10}, + [2004] = {.lex_state = 3, .external_lex_state = 10}, + [2005] = {.lex_state = 3, .external_lex_state = 10}, + [2006] = {.lex_state = 3, .external_lex_state = 10}, + [2007] = {.lex_state = 3, .external_lex_state = 10}, + [2008] = {.lex_state = 3, .external_lex_state = 10}, [2009] = {.lex_state = 4, .external_lex_state = 15}, [2010] = {.lex_state = 4, .external_lex_state = 15}, [2011] = {.lex_state = 4, .external_lex_state = 15}, [2012] = {.lex_state = 4, .external_lex_state = 15}, - [2013] = {.lex_state = 3, .external_lex_state = 9}, + [2013] = {.lex_state = 3, .external_lex_state = 10}, [2014] = {.lex_state = 4, .external_lex_state = 15}, [2015] = {.lex_state = 4, .external_lex_state = 15}, [2016] = {.lex_state = 4, .external_lex_state = 15}, [2017] = {.lex_state = 4, .external_lex_state = 15}, - [2018] = {.lex_state = 3, .external_lex_state = 9}, - [2019] = {.lex_state = 3, .external_lex_state = 9}, + [2018] = {.lex_state = 3, .external_lex_state = 10}, + [2019] = {.lex_state = 3, .external_lex_state = 10}, [2020] = {.lex_state = 4, .external_lex_state = 15}, - [2021] = {.lex_state = 1, .external_lex_state = 9}, - [2022] = {.lex_state = 3, .external_lex_state = 9}, - [2023] = {.lex_state = 3, .external_lex_state = 9}, - [2024] = {.lex_state = 3, .external_lex_state = 9}, - [2025] = {.lex_state = 3, .external_lex_state = 9}, - [2026] = {.lex_state = 3, .external_lex_state = 9}, - [2027] = {.lex_state = 3, .external_lex_state = 9}, - [2028] = {.lex_state = 3, .external_lex_state = 9}, - [2029] = {.lex_state = 3, .external_lex_state = 9}, - [2030] = {.lex_state = 4, .external_lex_state = 20}, - [2031] = {.lex_state = 4, .external_lex_state = 27}, - [2032] = {.lex_state = 4, .external_lex_state = 20}, - [2033] = {.lex_state = 4, .external_lex_state = 25}, - [2034] = {.lex_state = 4, .external_lex_state = 20}, - [2035] = {.lex_state = 4, .external_lex_state = 20}, - [2036] = {.lex_state = 4, .external_lex_state = 27}, - [2037] = {.lex_state = 4, .external_lex_state = 27}, - [2038] = {.lex_state = 4, .external_lex_state = 27}, - [2039] = {.lex_state = 4, .external_lex_state = 27}, - [2040] = {.lex_state = 4, .external_lex_state = 25}, + [2021] = {.lex_state = 1, .external_lex_state = 10}, + [2022] = {.lex_state = 3, .external_lex_state = 10}, + [2023] = {.lex_state = 3, .external_lex_state = 10}, + [2024] = {.lex_state = 3, .external_lex_state = 10}, + [2025] = {.lex_state = 3, .external_lex_state = 10}, + [2026] = {.lex_state = 3, .external_lex_state = 10}, + [2027] = {.lex_state = 3, .external_lex_state = 10}, + [2028] = {.lex_state = 3, .external_lex_state = 10}, + [2029] = {.lex_state = 3, .external_lex_state = 10}, + [2030] = {.lex_state = 4, .external_lex_state = 24}, + [2031] = {.lex_state = 4, .external_lex_state = 23}, + [2032] = {.lex_state = 4, .external_lex_state = 24}, + [2033] = {.lex_state = 4, .external_lex_state = 19}, + [2034] = {.lex_state = 4, .external_lex_state = 24}, + [2035] = {.lex_state = 4, .external_lex_state = 24}, + [2036] = {.lex_state = 4, .external_lex_state = 23}, + [2037] = {.lex_state = 4, .external_lex_state = 23}, + [2038] = {.lex_state = 4, .external_lex_state = 23}, + [2039] = {.lex_state = 4, .external_lex_state = 23}, + [2040] = {.lex_state = 4, .external_lex_state = 19}, [2041] = {.lex_state = 4, .external_lex_state = 15}, [2042] = {.lex_state = 4, .external_lex_state = 15}, - [2043] = {.lex_state = 4, .external_lex_state = 20}, - [2044] = {.lex_state = 3, .external_lex_state = 9}, - [2045] = {.lex_state = 4, .external_lex_state = 20}, - [2046] = {.lex_state = 3, .external_lex_state = 9}, - [2047] = {.lex_state = 1, .external_lex_state = 9}, - [2048] = {.lex_state = 1, .external_lex_state = 9}, - [2049] = {.lex_state = 1, .external_lex_state = 9}, - [2050] = {.lex_state = 1, .external_lex_state = 9}, - [2051] = {.lex_state = 4, .external_lex_state = 25}, - [2052] = {.lex_state = 4, .external_lex_state = 27}, + [2043] = {.lex_state = 4, .external_lex_state = 24}, + [2044] = {.lex_state = 3, .external_lex_state = 10}, + [2045] = {.lex_state = 4, .external_lex_state = 24}, + [2046] = {.lex_state = 3, .external_lex_state = 10}, + [2047] = {.lex_state = 1, .external_lex_state = 10}, + [2048] = {.lex_state = 1, .external_lex_state = 10}, + [2049] = {.lex_state = 1, .external_lex_state = 10}, + [2050] = {.lex_state = 1, .external_lex_state = 10}, + [2051] = {.lex_state = 4, .external_lex_state = 19}, + [2052] = {.lex_state = 4, .external_lex_state = 23}, [2053] = {.lex_state = 4, .external_lex_state = 15}, [2054] = {.lex_state = 4, .external_lex_state = 15}, - [2055] = {.lex_state = 4, .external_lex_state = 20}, - [2056] = {.lex_state = 4, .external_lex_state = 20}, + [2055] = {.lex_state = 4, .external_lex_state = 24}, + [2056] = {.lex_state = 4, .external_lex_state = 24}, [2057] = {.lex_state = 4, .external_lex_state = 15}, - [2058] = {.lex_state = 4, .external_lex_state = 27}, - [2059] = {.lex_state = 4, .external_lex_state = 20}, - [2060] = {.lex_state = 4, .external_lex_state = 20}, - [2061] = {.lex_state = 4, .external_lex_state = 27}, - [2062] = {.lex_state = 4, .external_lex_state = 20}, - [2063] = {.lex_state = 4, .external_lex_state = 25}, - [2064] = {.lex_state = 4, .external_lex_state = 27}, - [2065] = {.lex_state = 4, .external_lex_state = 20}, - [2066] = {.lex_state = 4, .external_lex_state = 20}, - [2067] = {.lex_state = 4, .external_lex_state = 27}, - [2068] = {.lex_state = 4, .external_lex_state = 27}, - [2069] = {.lex_state = 4, .external_lex_state = 27}, - [2070] = {.lex_state = 4, .external_lex_state = 27}, - [2071] = {.lex_state = 4, .external_lex_state = 27}, - [2072] = {.lex_state = 4, .external_lex_state = 27}, - [2073] = {.lex_state = 4, .external_lex_state = 27}, - [2074] = {.lex_state = 4, .external_lex_state = 27}, - [2075] = {.lex_state = 4, .external_lex_state = 27}, - [2076] = {.lex_state = 4, .external_lex_state = 27}, - [2077] = {.lex_state = 4, .external_lex_state = 27}, - [2078] = {.lex_state = 4, .external_lex_state = 27}, + [2058] = {.lex_state = 4, .external_lex_state = 23}, + [2059] = {.lex_state = 4, .external_lex_state = 24}, + [2060] = {.lex_state = 4, .external_lex_state = 24}, + [2061] = {.lex_state = 4, .external_lex_state = 23}, + [2062] = {.lex_state = 4, .external_lex_state = 24}, + [2063] = {.lex_state = 4, .external_lex_state = 19}, + [2064] = {.lex_state = 4, .external_lex_state = 23}, + [2065] = {.lex_state = 4, .external_lex_state = 24}, + [2066] = {.lex_state = 4, .external_lex_state = 24}, + [2067] = {.lex_state = 4, .external_lex_state = 23}, + [2068] = {.lex_state = 4, .external_lex_state = 23}, + [2069] = {.lex_state = 4, .external_lex_state = 23}, + [2070] = {.lex_state = 4, .external_lex_state = 23}, + [2071] = {.lex_state = 4, .external_lex_state = 23}, + [2072] = {.lex_state = 4, .external_lex_state = 23}, + [2073] = {.lex_state = 4, .external_lex_state = 23}, + [2074] = {.lex_state = 4, .external_lex_state = 23}, + [2075] = {.lex_state = 4, .external_lex_state = 23}, + [2076] = {.lex_state = 4, .external_lex_state = 23}, + [2077] = {.lex_state = 4, .external_lex_state = 23}, + [2078] = {.lex_state = 4, .external_lex_state = 23}, [2079] = {.lex_state = 4, .external_lex_state = 15}, - [2080] = {.lex_state = 4, .external_lex_state = 25}, - [2081] = {.lex_state = 4, .external_lex_state = 20}, - [2082] = {.lex_state = 4, .external_lex_state = 27}, - [2083] = {.lex_state = 4, .external_lex_state = 20}, - [2084] = {.lex_state = 4, .external_lex_state = 20}, - [2085] = {.lex_state = 1, .external_lex_state = 9}, - [2086] = {.lex_state = 4, .external_lex_state = 27}, - [2087] = {.lex_state = 4, .external_lex_state = 27}, - [2088] = {.lex_state = 1, .external_lex_state = 9}, - [2089] = {.lex_state = 3, .external_lex_state = 9}, - [2090] = {.lex_state = 3, .external_lex_state = 9}, - [2091] = {.lex_state = 1, .external_lex_state = 9}, - [2092] = {.lex_state = 4, .external_lex_state = 21}, + [2080] = {.lex_state = 4, .external_lex_state = 19}, + [2081] = {.lex_state = 4, .external_lex_state = 24}, + [2082] = {.lex_state = 4, .external_lex_state = 23}, + [2083] = {.lex_state = 4, .external_lex_state = 24}, + [2084] = {.lex_state = 4, .external_lex_state = 24}, + [2085] = {.lex_state = 1, .external_lex_state = 10}, + [2086] = {.lex_state = 4, .external_lex_state = 23}, + [2087] = {.lex_state = 4, .external_lex_state = 23}, + [2088] = {.lex_state = 1, .external_lex_state = 10}, + [2089] = {.lex_state = 3, .external_lex_state = 10}, + [2090] = {.lex_state = 3, .external_lex_state = 10}, + [2091] = {.lex_state = 1, .external_lex_state = 10}, + [2092] = {.lex_state = 4, .external_lex_state = 22}, [2093] = {.lex_state = 4, .external_lex_state = 15}, - [2094] = {.lex_state = 1, .external_lex_state = 9}, - [2095] = {.lex_state = 3, .external_lex_state = 9}, - [2096] = {.lex_state = 3, .external_lex_state = 9}, - [2097] = {.lex_state = 1, .external_lex_state = 9}, - [2098] = {.lex_state = 1, .external_lex_state = 9}, - [2099] = {.lex_state = 1, .external_lex_state = 9}, - [2100] = {.lex_state = 1, .external_lex_state = 9}, - [2101] = {.lex_state = 1, .external_lex_state = 9}, - [2102] = {.lex_state = 1, .external_lex_state = 9}, - [2103] = {.lex_state = 1, .external_lex_state = 9}, - [2104] = {.lex_state = 1, .external_lex_state = 9}, - [2105] = {.lex_state = 1, .external_lex_state = 9}, - [2106] = {.lex_state = 1, .external_lex_state = 9}, - [2107] = {.lex_state = 1, .external_lex_state = 9}, - [2108] = {.lex_state = 1, .external_lex_state = 9}, - [2109] = {.lex_state = 4, .external_lex_state = 27}, - [2110] = {.lex_state = 4, .external_lex_state = 27}, - [2111] = {.lex_state = 1, .external_lex_state = 9}, - [2112] = {.lex_state = 4, .external_lex_state = 27}, - [2113] = {.lex_state = 4, .external_lex_state = 20}, - [2114] = {.lex_state = 1, .external_lex_state = 9}, - [2115] = {.lex_state = 1, .external_lex_state = 9}, - [2116] = {.lex_state = 4, .external_lex_state = 27}, - [2117] = {.lex_state = 4, .external_lex_state = 27}, - [2118] = {.lex_state = 4, .external_lex_state = 20}, - [2119] = {.lex_state = 4, .external_lex_state = 23}, - [2120] = {.lex_state = 4, .external_lex_state = 27}, - [2121] = {.lex_state = 4, .external_lex_state = 27}, - [2122] = {.lex_state = 4, .external_lex_state = 20}, - [2123] = {.lex_state = 4, .external_lex_state = 27}, - [2124] = {.lex_state = 4, .external_lex_state = 27}, - [2125] = {.lex_state = 4, .external_lex_state = 20}, - [2126] = {.lex_state = 4, .external_lex_state = 27}, - [2127] = {.lex_state = 4, .external_lex_state = 27}, - [2128] = {.lex_state = 4, .external_lex_state = 27}, - [2129] = {.lex_state = 4, .external_lex_state = 27}, + [2094] = {.lex_state = 1, .external_lex_state = 10}, + [2095] = {.lex_state = 3, .external_lex_state = 10}, + [2096] = {.lex_state = 3, .external_lex_state = 10}, + [2097] = {.lex_state = 1, .external_lex_state = 10}, + [2098] = {.lex_state = 1, .external_lex_state = 10}, + [2099] = {.lex_state = 1, .external_lex_state = 10}, + [2100] = {.lex_state = 1, .external_lex_state = 10}, + [2101] = {.lex_state = 1, .external_lex_state = 10}, + [2102] = {.lex_state = 1, .external_lex_state = 10}, + [2103] = {.lex_state = 1, .external_lex_state = 10}, + [2104] = {.lex_state = 1, .external_lex_state = 10}, + [2105] = {.lex_state = 1, .external_lex_state = 10}, + [2106] = {.lex_state = 1, .external_lex_state = 10}, + [2107] = {.lex_state = 1, .external_lex_state = 10}, + [2108] = {.lex_state = 1, .external_lex_state = 10}, + [2109] = {.lex_state = 4, .external_lex_state = 23}, + [2110] = {.lex_state = 4, .external_lex_state = 23}, + [2111] = {.lex_state = 1, .external_lex_state = 10}, + [2112] = {.lex_state = 4, .external_lex_state = 23}, + [2113] = {.lex_state = 4, .external_lex_state = 24}, + [2114] = {.lex_state = 1, .external_lex_state = 10}, + [2115] = {.lex_state = 1, .external_lex_state = 10}, + [2116] = {.lex_state = 4, .external_lex_state = 23}, + [2117] = {.lex_state = 4, .external_lex_state = 23}, + [2118] = {.lex_state = 4, .external_lex_state = 24}, + [2119] = {.lex_state = 4, .external_lex_state = 20}, + [2120] = {.lex_state = 4, .external_lex_state = 23}, + [2121] = {.lex_state = 4, .external_lex_state = 23}, + [2122] = {.lex_state = 4, .external_lex_state = 24}, + [2123] = {.lex_state = 4, .external_lex_state = 23}, + [2124] = {.lex_state = 4, .external_lex_state = 23}, + [2125] = {.lex_state = 4, .external_lex_state = 24}, + [2126] = {.lex_state = 4, .external_lex_state = 23}, + [2127] = {.lex_state = 4, .external_lex_state = 23}, + [2128] = {.lex_state = 4, .external_lex_state = 23}, + [2129] = {.lex_state = 4, .external_lex_state = 23}, [2130] = {.lex_state = 4, .external_lex_state = 15}, - [2131] = {.lex_state = 4, .external_lex_state = 27}, - [2132] = {.lex_state = 4, .external_lex_state = 20}, + [2131] = {.lex_state = 4, .external_lex_state = 23}, + [2132] = {.lex_state = 4, .external_lex_state = 24}, [2133] = {.lex_state = 4, .external_lex_state = 15}, [2134] = {.lex_state = 4, .external_lex_state = 15}, [2135] = {.lex_state = 4, .external_lex_state = 15}, - [2136] = {.lex_state = 4, .external_lex_state = 27}, - [2137] = {.lex_state = 1, .external_lex_state = 9}, - [2138] = {.lex_state = 1, .external_lex_state = 9}, - [2139] = {.lex_state = 1, .external_lex_state = 9}, - [2140] = {.lex_state = 4, .external_lex_state = 27}, - [2141] = {.lex_state = 1, .external_lex_state = 9}, - [2142] = {.lex_state = 1, .external_lex_state = 9}, - [2143] = {.lex_state = 4, .external_lex_state = 20}, - [2144] = {.lex_state = 1, .external_lex_state = 9}, - [2145] = {.lex_state = 1, .external_lex_state = 9}, - [2146] = {.lex_state = 4, .external_lex_state = 27}, - [2147] = {.lex_state = 1, .external_lex_state = 9}, - [2148] = {.lex_state = 1, .external_lex_state = 9}, - [2149] = {.lex_state = 4, .external_lex_state = 27}, - [2150] = {.lex_state = 1, .external_lex_state = 9}, - [2151] = {.lex_state = 4, .external_lex_state = 27}, - [2152] = {.lex_state = 1, .external_lex_state = 9}, - [2153] = {.lex_state = 1, .external_lex_state = 9}, - [2154] = {.lex_state = 1, .external_lex_state = 9}, - [2155] = {.lex_state = 1, .external_lex_state = 9}, - [2156] = {.lex_state = 4, .external_lex_state = 27}, - [2157] = {.lex_state = 1, .external_lex_state = 9}, - [2158] = {.lex_state = 1, .external_lex_state = 9}, - [2159] = {.lex_state = 4, .external_lex_state = 27}, + [2136] = {.lex_state = 4, .external_lex_state = 23}, + [2137] = {.lex_state = 1, .external_lex_state = 10}, + [2138] = {.lex_state = 1, .external_lex_state = 10}, + [2139] = {.lex_state = 1, .external_lex_state = 10}, + [2140] = {.lex_state = 4, .external_lex_state = 23}, + [2141] = {.lex_state = 1, .external_lex_state = 10}, + [2142] = {.lex_state = 1, .external_lex_state = 10}, + [2143] = {.lex_state = 4, .external_lex_state = 24}, + [2144] = {.lex_state = 1, .external_lex_state = 10}, + [2145] = {.lex_state = 1, .external_lex_state = 10}, + [2146] = {.lex_state = 4, .external_lex_state = 23}, + [2147] = {.lex_state = 1, .external_lex_state = 10}, + [2148] = {.lex_state = 1, .external_lex_state = 10}, + [2149] = {.lex_state = 4, .external_lex_state = 23}, + [2150] = {.lex_state = 1, .external_lex_state = 10}, + [2151] = {.lex_state = 4, .external_lex_state = 23}, + [2152] = {.lex_state = 1, .external_lex_state = 10}, + [2153] = {.lex_state = 1, .external_lex_state = 10}, + [2154] = {.lex_state = 1, .external_lex_state = 10}, + [2155] = {.lex_state = 1, .external_lex_state = 10}, + [2156] = {.lex_state = 4, .external_lex_state = 23}, + [2157] = {.lex_state = 1, .external_lex_state = 10}, + [2158] = {.lex_state = 1, .external_lex_state = 10}, + [2159] = {.lex_state = 4, .external_lex_state = 23}, [2160] = {.lex_state = 4, .external_lex_state = 15}, - [2161] = {.lex_state = 4, .external_lex_state = 27}, - [2162] = {.lex_state = 4, .external_lex_state = 27}, + [2161] = {.lex_state = 4, .external_lex_state = 23}, + [2162] = {.lex_state = 4, .external_lex_state = 23}, [2163] = {.lex_state = 4, .external_lex_state = 15}, - [2164] = {.lex_state = 4, .external_lex_state = 27}, - [2165] = {.lex_state = 4, .external_lex_state = 27}, + [2164] = {.lex_state = 4, .external_lex_state = 23}, + [2165] = {.lex_state = 4, .external_lex_state = 23}, [2166] = {.lex_state = 4, .external_lex_state = 15}, [2167] = {.lex_state = 4, .external_lex_state = 15}, [2168] = {.lex_state = 4, .external_lex_state = 15}, @@ -19246,163 +19253,163 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2173] = {.lex_state = 4, .external_lex_state = 15}, [2174] = {.lex_state = 4, .external_lex_state = 15}, [2175] = {.lex_state = 4, .external_lex_state = 15}, - [2176] = {.lex_state = 1, .external_lex_state = 9}, - [2177] = {.lex_state = 1, .external_lex_state = 9}, - [2178] = {.lex_state = 1, .external_lex_state = 9}, - [2179] = {.lex_state = 1, .external_lex_state = 9}, - [2180] = {.lex_state = 1, .external_lex_state = 9}, - [2181] = {.lex_state = 1, .external_lex_state = 9}, - [2182] = {.lex_state = 1, .external_lex_state = 9}, - [2183] = {.lex_state = 1, .external_lex_state = 9}, - [2184] = {.lex_state = 1, .external_lex_state = 9}, - [2185] = {.lex_state = 1, .external_lex_state = 9}, - [2186] = {.lex_state = 1, .external_lex_state = 9}, + [2176] = {.lex_state = 1, .external_lex_state = 10}, + [2177] = {.lex_state = 1, .external_lex_state = 10}, + [2178] = {.lex_state = 1, .external_lex_state = 10}, + [2179] = {.lex_state = 1, .external_lex_state = 10}, + [2180] = {.lex_state = 1, .external_lex_state = 10}, + [2181] = {.lex_state = 1, .external_lex_state = 10}, + [2182] = {.lex_state = 1, .external_lex_state = 10}, + [2183] = {.lex_state = 1, .external_lex_state = 10}, + [2184] = {.lex_state = 1, .external_lex_state = 10}, + [2185] = {.lex_state = 1, .external_lex_state = 10}, + [2186] = {.lex_state = 1, .external_lex_state = 10}, [2187] = {.lex_state = 4, .external_lex_state = 15}, [2188] = {.lex_state = 4, .external_lex_state = 15}, - [2189] = {.lex_state = 4, .external_lex_state = 27}, - [2190] = {.lex_state = 4, .external_lex_state = 27}, + [2189] = {.lex_state = 4, .external_lex_state = 23}, + [2190] = {.lex_state = 4, .external_lex_state = 23}, [2191] = {.lex_state = 4, .external_lex_state = 15}, - [2192] = {.lex_state = 4, .external_lex_state = 27}, - [2193] = {.lex_state = 4, .external_lex_state = 27}, + [2192] = {.lex_state = 4, .external_lex_state = 23}, + [2193] = {.lex_state = 4, .external_lex_state = 23}, [2194] = {.lex_state = 4, .external_lex_state = 15}, [2195] = {.lex_state = 4, .external_lex_state = 15}, [2196] = {.lex_state = 4, .external_lex_state = 15}, - [2197] = {.lex_state = 1, .external_lex_state = 9}, - [2198] = {.lex_state = 1, .external_lex_state = 9}, - [2199] = {.lex_state = 1, .external_lex_state = 9}, - [2200] = {.lex_state = 1, .external_lex_state = 9}, + [2197] = {.lex_state = 1, .external_lex_state = 10}, + [2198] = {.lex_state = 1, .external_lex_state = 10}, + [2199] = {.lex_state = 1, .external_lex_state = 10}, + [2200] = {.lex_state = 1, .external_lex_state = 10}, [2201] = {.lex_state = 4, .external_lex_state = 15}, - [2202] = {.lex_state = 4, .external_lex_state = 27}, - [2203] = {.lex_state = 4, .external_lex_state = 27}, - [2204] = {.lex_state = 1, .external_lex_state = 9}, - [2205] = {.lex_state = 1, .external_lex_state = 9}, - [2206] = {.lex_state = 1, .external_lex_state = 9}, - [2207] = {.lex_state = 4, .external_lex_state = 27}, - [2208] = {.lex_state = 4, .external_lex_state = 27}, - [2209] = {.lex_state = 1, .external_lex_state = 9}, - [2210] = {.lex_state = 4, .external_lex_state = 27}, - [2211] = {.lex_state = 4, .external_lex_state = 23}, - [2212] = {.lex_state = 4, .external_lex_state = 21}, + [2202] = {.lex_state = 4, .external_lex_state = 23}, + [2203] = {.lex_state = 4, .external_lex_state = 23}, + [2204] = {.lex_state = 1, .external_lex_state = 10}, + [2205] = {.lex_state = 1, .external_lex_state = 10}, + [2206] = {.lex_state = 1, .external_lex_state = 10}, + [2207] = {.lex_state = 4, .external_lex_state = 23}, + [2208] = {.lex_state = 4, .external_lex_state = 23}, + [2209] = {.lex_state = 1, .external_lex_state = 10}, + [2210] = {.lex_state = 4, .external_lex_state = 23}, + [2211] = {.lex_state = 4, .external_lex_state = 20}, + [2212] = {.lex_state = 4, .external_lex_state = 22}, [2213] = {.lex_state = 4, .external_lex_state = 15}, - [2214] = {.lex_state = 4, .external_lex_state = 20}, - [2215] = {.lex_state = 4, .external_lex_state = 20}, - [2216] = {.lex_state = 4, .external_lex_state = 23}, - [2217] = {.lex_state = 4, .external_lex_state = 23}, - [2218] = {.lex_state = 4, .external_lex_state = 23}, - [2219] = {.lex_state = 4, .external_lex_state = 23}, - [2220] = {.lex_state = 4, .external_lex_state = 20}, - [2221] = {.lex_state = 4, .external_lex_state = 20}, - [2222] = {.lex_state = 1, .external_lex_state = 9}, - [2223] = {.lex_state = 4, .external_lex_state = 21}, - [2224] = {.lex_state = 1, .external_lex_state = 9}, - [2225] = {.lex_state = 4, .external_lex_state = 21}, - [2226] = {.lex_state = 4, .external_lex_state = 23}, - [2227] = {.lex_state = 4, .external_lex_state = 21}, - [2228] = {.lex_state = 4, .external_lex_state = 21}, - [2229] = {.lex_state = 4, .external_lex_state = 23}, - [2230] = {.lex_state = 4, .external_lex_state = 20}, - [2231] = {.lex_state = 4, .external_lex_state = 20}, - [2232] = {.lex_state = 4, .external_lex_state = 23}, - [2233] = {.lex_state = 4, .external_lex_state = 27}, + [2214] = {.lex_state = 4, .external_lex_state = 24}, + [2215] = {.lex_state = 4, .external_lex_state = 24}, + [2216] = {.lex_state = 4, .external_lex_state = 20}, + [2217] = {.lex_state = 4, .external_lex_state = 20}, + [2218] = {.lex_state = 4, .external_lex_state = 20}, + [2219] = {.lex_state = 4, .external_lex_state = 20}, + [2220] = {.lex_state = 4, .external_lex_state = 24}, + [2221] = {.lex_state = 4, .external_lex_state = 24}, + [2222] = {.lex_state = 1, .external_lex_state = 10}, + [2223] = {.lex_state = 4, .external_lex_state = 22}, + [2224] = {.lex_state = 1, .external_lex_state = 10}, + [2225] = {.lex_state = 4, .external_lex_state = 22}, + [2226] = {.lex_state = 4, .external_lex_state = 20}, + [2227] = {.lex_state = 4, .external_lex_state = 22}, + [2228] = {.lex_state = 4, .external_lex_state = 22}, + [2229] = {.lex_state = 4, .external_lex_state = 20}, + [2230] = {.lex_state = 4, .external_lex_state = 24}, + [2231] = {.lex_state = 4, .external_lex_state = 24}, + [2232] = {.lex_state = 4, .external_lex_state = 20}, + [2233] = {.lex_state = 4, .external_lex_state = 23}, [2234] = {.lex_state = 4, .external_lex_state = 15}, - [2235] = {.lex_state = 4, .external_lex_state = 23}, - [2236] = {.lex_state = 4, .external_lex_state = 27}, - [2237] = {.lex_state = 4, .external_lex_state = 20}, - [2238] = {.lex_state = 4, .external_lex_state = 23}, - [2239] = {.lex_state = 4, .external_lex_state = 23}, - [2240] = {.lex_state = 4, .external_lex_state = 23}, - [2241] = {.lex_state = 4, .external_lex_state = 23}, - [2242] = {.lex_state = 4, .external_lex_state = 23}, - [2243] = {.lex_state = 4, .external_lex_state = 23}, - [2244] = {.lex_state = 4, .external_lex_state = 23}, - [2245] = {.lex_state = 4, .external_lex_state = 23}, - [2246] = {.lex_state = 4, .external_lex_state = 23}, - [2247] = {.lex_state = 4, .external_lex_state = 23}, - [2248] = {.lex_state = 4, .external_lex_state = 25}, - [2249] = {.lex_state = 4, .external_lex_state = 23}, - [2250] = {.lex_state = 4, .external_lex_state = 21}, - [2251] = {.lex_state = 4, .external_lex_state = 20}, - [2252] = {.lex_state = 4, .external_lex_state = 23}, - [2253] = {.lex_state = 4, .external_lex_state = 20}, - [2254] = {.lex_state = 4, .external_lex_state = 21}, - [2255] = {.lex_state = 4, .external_lex_state = 23}, - [2256] = {.lex_state = 4, .external_lex_state = 23}, - [2257] = {.lex_state = 1, .external_lex_state = 9}, - [2258] = {.lex_state = 1, .external_lex_state = 9}, - [2259] = {.lex_state = 4, .external_lex_state = 25}, - [2260] = {.lex_state = 1, .external_lex_state = 9}, - [2261] = {.lex_state = 1, .external_lex_state = 9}, - [2262] = {.lex_state = 4, .external_lex_state = 23}, - [2263] = {.lex_state = 4, .external_lex_state = 23}, - [2264] = {.lex_state = 4, .external_lex_state = 23}, - [2265] = {.lex_state = 4, .external_lex_state = 24}, - [2266] = {.lex_state = 4, .external_lex_state = 23}, - [2267] = {.lex_state = 4, .external_lex_state = 23}, - [2268] = {.lex_state = 4, .external_lex_state = 21}, - [2269] = {.lex_state = 4, .external_lex_state = 23}, - [2270] = {.lex_state = 4, .external_lex_state = 23}, - [2271] = {.lex_state = 4, .external_lex_state = 25}, - [2272] = {.lex_state = 4, .external_lex_state = 23}, - [2273] = {.lex_state = 4, .external_lex_state = 23}, - [2274] = {.lex_state = 4, .external_lex_state = 25}, - [2275] = {.lex_state = 4, .external_lex_state = 23}, - [2276] = {.lex_state = 4, .external_lex_state = 23}, - [2277] = {.lex_state = 4, .external_lex_state = 23}, - [2278] = {.lex_state = 4, .external_lex_state = 23}, - [2279] = {.lex_state = 4, .external_lex_state = 23}, - [2280] = {.lex_state = 4, .external_lex_state = 21}, - [2281] = {.lex_state = 4, .external_lex_state = 23}, - [2282] = {.lex_state = 4, .external_lex_state = 23}, - [2283] = {.lex_state = 4, .external_lex_state = 25}, - [2284] = {.lex_state = 4, .external_lex_state = 23}, - [2285] = {.lex_state = 4, .external_lex_state = 23}, - [2286] = {.lex_state = 4, .external_lex_state = 23}, - [2287] = {.lex_state = 4, .external_lex_state = 23}, - [2288] = {.lex_state = 4, .external_lex_state = 23}, - [2289] = {.lex_state = 4, .external_lex_state = 23}, - [2290] = {.lex_state = 4, .external_lex_state = 23}, - [2291] = {.lex_state = 4, .external_lex_state = 23}, - [2292] = {.lex_state = 4, .external_lex_state = 23}, - [2293] = {.lex_state = 4, .external_lex_state = 23}, - [2294] = {.lex_state = 4, .external_lex_state = 23}, - [2295] = {.lex_state = 4, .external_lex_state = 23}, - [2296] = {.lex_state = 4, .external_lex_state = 23}, - [2297] = {.lex_state = 4, .external_lex_state = 23}, - [2298] = {.lex_state = 4, .external_lex_state = 23}, - [2299] = {.lex_state = 4, .external_lex_state = 23}, - [2300] = {.lex_state = 4, .external_lex_state = 23}, - [2301] = {.lex_state = 4, .external_lex_state = 23}, - [2302] = {.lex_state = 4, .external_lex_state = 25}, + [2235] = {.lex_state = 4, .external_lex_state = 20}, + [2236] = {.lex_state = 4, .external_lex_state = 23}, + [2237] = {.lex_state = 4, .external_lex_state = 24}, + [2238] = {.lex_state = 4, .external_lex_state = 20}, + [2239] = {.lex_state = 4, .external_lex_state = 20}, + [2240] = {.lex_state = 4, .external_lex_state = 20}, + [2241] = {.lex_state = 4, .external_lex_state = 20}, + [2242] = {.lex_state = 4, .external_lex_state = 20}, + [2243] = {.lex_state = 4, .external_lex_state = 20}, + [2244] = {.lex_state = 4, .external_lex_state = 20}, + [2245] = {.lex_state = 4, .external_lex_state = 20}, + [2246] = {.lex_state = 4, .external_lex_state = 20}, + [2247] = {.lex_state = 4, .external_lex_state = 20}, + [2248] = {.lex_state = 4, .external_lex_state = 19}, + [2249] = {.lex_state = 4, .external_lex_state = 20}, + [2250] = {.lex_state = 4, .external_lex_state = 22}, + [2251] = {.lex_state = 4, .external_lex_state = 24}, + [2252] = {.lex_state = 4, .external_lex_state = 20}, + [2253] = {.lex_state = 4, .external_lex_state = 24}, + [2254] = {.lex_state = 4, .external_lex_state = 22}, + [2255] = {.lex_state = 4, .external_lex_state = 20}, + [2256] = {.lex_state = 4, .external_lex_state = 20}, + [2257] = {.lex_state = 1, .external_lex_state = 10}, + [2258] = {.lex_state = 1, .external_lex_state = 10}, + [2259] = {.lex_state = 4, .external_lex_state = 19}, + [2260] = {.lex_state = 1, .external_lex_state = 10}, + [2261] = {.lex_state = 1, .external_lex_state = 10}, + [2262] = {.lex_state = 4, .external_lex_state = 20}, + [2263] = {.lex_state = 4, .external_lex_state = 20}, + [2264] = {.lex_state = 4, .external_lex_state = 20}, + [2265] = {.lex_state = 4, .external_lex_state = 21}, + [2266] = {.lex_state = 4, .external_lex_state = 20}, + [2267] = {.lex_state = 4, .external_lex_state = 20}, + [2268] = {.lex_state = 4, .external_lex_state = 22}, + [2269] = {.lex_state = 4, .external_lex_state = 20}, + [2270] = {.lex_state = 4, .external_lex_state = 20}, + [2271] = {.lex_state = 4, .external_lex_state = 19}, + [2272] = {.lex_state = 4, .external_lex_state = 20}, + [2273] = {.lex_state = 4, .external_lex_state = 20}, + [2274] = {.lex_state = 4, .external_lex_state = 19}, + [2275] = {.lex_state = 4, .external_lex_state = 20}, + [2276] = {.lex_state = 4, .external_lex_state = 20}, + [2277] = {.lex_state = 4, .external_lex_state = 20}, + [2278] = {.lex_state = 4, .external_lex_state = 20}, + [2279] = {.lex_state = 4, .external_lex_state = 20}, + [2280] = {.lex_state = 4, .external_lex_state = 22}, + [2281] = {.lex_state = 4, .external_lex_state = 20}, + [2282] = {.lex_state = 4, .external_lex_state = 20}, + [2283] = {.lex_state = 4, .external_lex_state = 19}, + [2284] = {.lex_state = 4, .external_lex_state = 20}, + [2285] = {.lex_state = 4, .external_lex_state = 20}, + [2286] = {.lex_state = 4, .external_lex_state = 20}, + [2287] = {.lex_state = 4, .external_lex_state = 20}, + [2288] = {.lex_state = 4, .external_lex_state = 20}, + [2289] = {.lex_state = 4, .external_lex_state = 20}, + [2290] = {.lex_state = 4, .external_lex_state = 20}, + [2291] = {.lex_state = 4, .external_lex_state = 20}, + [2292] = {.lex_state = 4, .external_lex_state = 20}, + [2293] = {.lex_state = 4, .external_lex_state = 20}, + [2294] = {.lex_state = 4, .external_lex_state = 20}, + [2295] = {.lex_state = 4, .external_lex_state = 20}, + [2296] = {.lex_state = 4, .external_lex_state = 20}, + [2297] = {.lex_state = 4, .external_lex_state = 20}, + [2298] = {.lex_state = 4, .external_lex_state = 20}, + [2299] = {.lex_state = 4, .external_lex_state = 20}, + [2300] = {.lex_state = 4, .external_lex_state = 20}, + [2301] = {.lex_state = 4, .external_lex_state = 20}, + [2302] = {.lex_state = 4, .external_lex_state = 19}, [2303] = {.lex_state = 2, .external_lex_state = 31}, - [2304] = {.lex_state = 4, .external_lex_state = 25}, - [2305] = {.lex_state = 4, .external_lex_state = 21}, - [2306] = {.lex_state = 4, .external_lex_state = 21}, - [2307] = {.lex_state = 4, .external_lex_state = 21}, - [2308] = {.lex_state = 4, .external_lex_state = 21}, - [2309] = {.lex_state = 4, .external_lex_state = 25}, - [2310] = {.lex_state = 4, .external_lex_state = 25}, - [2311] = {.lex_state = 4, .external_lex_state = 25}, - [2312] = {.lex_state = 4, .external_lex_state = 25}, - [2313] = {.lex_state = 4, .external_lex_state = 21}, - [2314] = {.lex_state = 4, .external_lex_state = 21}, - [2315] = {.lex_state = 4, .external_lex_state = 23}, - [2316] = {.lex_state = 4, .external_lex_state = 23}, - [2317] = {.lex_state = 4, .external_lex_state = 21}, - [2318] = {.lex_state = 4, .external_lex_state = 25}, - [2319] = {.lex_state = 4, .external_lex_state = 21}, - [2320] = {.lex_state = 4, .external_lex_state = 21}, - [2321] = {.lex_state = 4, .external_lex_state = 25}, - [2322] = {.lex_state = 4, .external_lex_state = 21}, - [2323] = {.lex_state = 4, .external_lex_state = 21}, - [2324] = {.lex_state = 4, .external_lex_state = 25}, - [2325] = {.lex_state = 4, .external_lex_state = 21}, - [2326] = {.lex_state = 4, .external_lex_state = 25}, - [2327] = {.lex_state = 4, .external_lex_state = 25}, - [2328] = {.lex_state = 4, .external_lex_state = 24}, - [2329] = {.lex_state = 4, .external_lex_state = 21}, - [2330] = {.lex_state = 4, .external_lex_state = 25}, - [2331] = {.lex_state = 4, .external_lex_state = 25}, - [2332] = {.lex_state = 4, .external_lex_state = 25}, + [2304] = {.lex_state = 4, .external_lex_state = 19}, + [2305] = {.lex_state = 4, .external_lex_state = 22}, + [2306] = {.lex_state = 4, .external_lex_state = 22}, + [2307] = {.lex_state = 4, .external_lex_state = 22}, + [2308] = {.lex_state = 4, .external_lex_state = 22}, + [2309] = {.lex_state = 4, .external_lex_state = 19}, + [2310] = {.lex_state = 4, .external_lex_state = 19}, + [2311] = {.lex_state = 4, .external_lex_state = 19}, + [2312] = {.lex_state = 4, .external_lex_state = 19}, + [2313] = {.lex_state = 4, .external_lex_state = 22}, + [2314] = {.lex_state = 4, .external_lex_state = 22}, + [2315] = {.lex_state = 4, .external_lex_state = 20}, + [2316] = {.lex_state = 4, .external_lex_state = 20}, + [2317] = {.lex_state = 4, .external_lex_state = 22}, + [2318] = {.lex_state = 4, .external_lex_state = 19}, + [2319] = {.lex_state = 4, .external_lex_state = 22}, + [2320] = {.lex_state = 4, .external_lex_state = 22}, + [2321] = {.lex_state = 4, .external_lex_state = 19}, + [2322] = {.lex_state = 4, .external_lex_state = 22}, + [2323] = {.lex_state = 4, .external_lex_state = 22}, + [2324] = {.lex_state = 4, .external_lex_state = 19}, + [2325] = {.lex_state = 4, .external_lex_state = 22}, + [2326] = {.lex_state = 4, .external_lex_state = 19}, + [2327] = {.lex_state = 4, .external_lex_state = 19}, + [2328] = {.lex_state = 4, .external_lex_state = 21}, + [2329] = {.lex_state = 4, .external_lex_state = 22}, + [2330] = {.lex_state = 4, .external_lex_state = 19}, + [2331] = {.lex_state = 4, .external_lex_state = 19}, + [2332] = {.lex_state = 4, .external_lex_state = 19}, [2333] = {.lex_state = 4, .external_lex_state = 14}, [2334] = {.lex_state = 4, .external_lex_state = 14}, [2335] = {.lex_state = 4, .external_lex_state = 14}, @@ -21399,10 +21406,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pipe_table_delimiter] = ACTIONS(1), [sym__pandoc_line_break] = ACTIONS(1), [sym__triple_star_error] = ACTIONS(1), + [sym_grid_table] = ACTIONS(1), }, [STATE(1)] = { [sym_document] = STATE(3784), - [sym__block_not_section] = STATE(440), + [sym__block_not_section] = STATE(494), [sym_section] = STATE(2409), [sym__section1] = STATE(2640), [sym__section2] = STATE(2640), @@ -21410,73 +21418,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__section4] = STATE(2640), [sym__section5] = STATE(2640), [sym__section6] = STATE(2640), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), - [aux_sym_document_repeat1] = STATE(66), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), + [aux_sym_document_repeat1] = STATE(73), [aux_sym_document_repeat2] = STATE(2409), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), @@ -21545,89 +21553,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(109), }, [STATE(2)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4222), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3280), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3912), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3095), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21637,19 +21646,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(117), - [sym_block_continuation] = ACTIONS(119), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(119), + [sym_block_continuation] = ACTIONS(121), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21662,12 +21671,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21694,89 +21703,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(3)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3459), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3274), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(4092), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3180), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21786,19 +21796,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(149), - [sym_block_continuation] = ACTIONS(151), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(151), + [sym_block_continuation] = ACTIONS(153), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21811,12 +21821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21843,89 +21853,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(4)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4092), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3180), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(4003), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3302), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21935,19 +21946,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(153), - [sym_block_continuation] = ACTIONS(155), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(155), + [sym_block_continuation] = ACTIONS(157), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21960,12 +21971,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21992,89 +22003,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(5)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3528), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3305), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22084,19 +22096,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(157), - [sym_block_continuation] = ACTIONS(159), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(159), + [sym_block_continuation] = ACTIONS(161), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22109,12 +22121,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22141,89 +22153,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(6)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3599), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3060), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22233,19 +22246,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(161), - [sym_block_continuation] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(163), + [sym_block_continuation] = ACTIONS(165), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22258,12 +22271,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22290,89 +22303,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(7)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4003), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3302), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(4222), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3280), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22382,19 +22396,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(165), - [sym_block_continuation] = ACTIONS(167), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(167), + [sym_block_continuation] = ACTIONS(169), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22407,12 +22421,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22439,89 +22453,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(8)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3847), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3160), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3459), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3274), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22531,19 +22546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(169), - [sym_block_continuation] = ACTIONS(171), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(171), + [sym_block_continuation] = ACTIONS(173), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22556,12 +22571,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22588,89 +22603,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(9)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3849), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3161), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3847), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3160), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22680,19 +22696,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(173), - [sym_block_continuation] = ACTIONS(175), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(175), + [sym_block_continuation] = ACTIONS(177), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22705,12 +22721,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22737,89 +22753,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(10)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3867), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3169), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3849), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3161), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22829,19 +22846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(177), - [sym_block_continuation] = ACTIONS(179), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(179), + [sym_block_continuation] = ACTIONS(181), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22854,12 +22871,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22886,89 +22903,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(11)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3869), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3170), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3867), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3169), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22978,19 +22996,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(181), - [sym_block_continuation] = ACTIONS(183), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(183), + [sym_block_continuation] = ACTIONS(185), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23003,12 +23021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23035,89 +23053,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(12)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3871), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3171), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3869), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3170), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23127,19 +23146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(185), - [sym_block_continuation] = ACTIONS(187), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(187), + [sym_block_continuation] = ACTIONS(189), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23152,12 +23171,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23184,89 +23203,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(13)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3873), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3172), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3871), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3171), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23276,19 +23296,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(189), - [sym_block_continuation] = ACTIONS(191), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(191), + [sym_block_continuation] = ACTIONS(193), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23301,12 +23321,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23333,89 +23353,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(14)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3762), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3291), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3873), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3172), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23425,19 +23446,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(193), - [sym_block_continuation] = ACTIONS(195), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(195), + [sym_block_continuation] = ACTIONS(197), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23450,12 +23471,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23482,89 +23503,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(15)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3799), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3312), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3762), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3291), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23574,19 +23596,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(197), - [sym_block_continuation] = ACTIONS(199), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(199), + [sym_block_continuation] = ACTIONS(201), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23599,12 +23621,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23631,89 +23653,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(16)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3834), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3062), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3799), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3312), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23723,19 +23746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(201), - [sym_block_continuation] = ACTIONS(203), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(203), + [sym_block_continuation] = ACTIONS(205), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23748,12 +23771,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23780,89 +23803,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(17)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3856), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3090), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3834), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3062), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23872,19 +23896,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(205), - [sym_block_continuation] = ACTIONS(207), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(207), + [sym_block_continuation] = ACTIONS(209), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23897,12 +23921,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23929,89 +23953,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(18)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3895), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3093), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3856), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3090), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24021,19 +24046,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(209), - [sym_block_continuation] = ACTIONS(211), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(211), + [sym_block_continuation] = ACTIONS(213), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24046,12 +24071,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24078,89 +24103,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(19)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3912), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__blank_line] = STATE(3095), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3895), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(3093), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24170,19 +24196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(213), - [sym_block_continuation] = ACTIONS(215), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(215), + [sym_block_continuation] = ACTIONS(217), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24195,12 +24221,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(139), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(141), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24227,89 +24253,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(20)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3944), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3945), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24319,17 +24346,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24342,12 +24369,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24374,89 +24401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(21)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3627), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3626), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24466,17 +24494,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24489,12 +24517,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24521,89 +24549,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(22)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3683), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3744), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24613,17 +24642,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24636,12 +24665,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24668,89 +24697,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(23)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3700), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(4094), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24760,17 +24790,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24783,12 +24813,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24815,89 +24845,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(24)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3906), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3627), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24907,17 +24938,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24930,12 +24961,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24962,89 +24993,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(25)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3744), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3683), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25054,17 +25086,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25077,12 +25109,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25109,89 +25141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(26)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4094), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3700), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25201,17 +25234,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25224,12 +25257,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25256,89 +25289,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(27)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3943), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3906), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25348,17 +25382,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25371,12 +25405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25403,89 +25437,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(28)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3626), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3943), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25495,17 +25530,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25518,12 +25553,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25550,89 +25585,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(29)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3945), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym__list_item_content] = STATE(3944), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25642,17 +25678,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25665,12 +25701,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25697,89 +25733,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(30)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3946), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25789,17 +25826,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25812,12 +25849,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25844,89 +25881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(31)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3947), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25936,17 +25974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25959,12 +25997,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25991,89 +26029,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(32)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3948), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26083,17 +26122,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26106,12 +26145,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26138,89 +26177,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(33)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3559), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26230,17 +26270,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26253,12 +26293,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26285,89 +26325,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(34)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3575), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26377,17 +26418,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26400,12 +26441,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26432,89 +26473,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(35)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3576), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26524,17 +26566,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26547,12 +26589,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26579,89 +26621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(36)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3584), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26671,17 +26714,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26694,12 +26737,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26726,89 +26769,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(37)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [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), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [sym__list_item_content] = STATE(3588), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), [sym__blank_line] = STATE(3429), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26818,17 +26862,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26841,12 +26885,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym__blank_line_start] = ACTIONS(217), - [sym_minus_metadata] = ACTIONS(141), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym__blank_line_start] = ACTIONS(219), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26873,87 +26917,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(143), }, [STATE(38)] = { - [sym__block] = STATE(68), - [sym__block_not_section] = STATE(68), - [sym_section] = STATE(68), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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__block] = STATE(67), + [sym__block_not_section] = STATE(67), + [sym_section] = STATE(67), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(68), - [sym_pandoc_list] = STATE(68), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(68), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(67), + [sym_pandoc_list] = STATE(67), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(67), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26963,19 +27008,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(219), - [sym_block_continuation] = ACTIONS(221), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(221), + [sym_block_continuation] = ACTIONS(223), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26988,11 +27033,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(223), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(225), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27019,87 +27064,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(225), }, [STATE(39)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(47), + [sym__block_not_section] = STATE(47), + [sym_section] = STATE(47), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(47), + [sym_pandoc_list] = STATE(47), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(47), + [sym_pandoc_div] = STATE(47), + [sym_note_definition_fenced_block] = STATE(47), + [sym__newline] = STATE(47), + [sym__soft_line_break] = STATE(47), + [sym__inline_whitespace] = STATE(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27109,18 +27155,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(233), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27133,12 +27179,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(259), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(255), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27165,22 +27211,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(255), }, [STATE(40)] = { [sym__block] = STATE(41), [sym__block_not_section] = STATE(41), [sym_section] = STATE(41), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(41), [sym_pandoc_paragraph] = STATE(41), @@ -27188,64 +27235,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(41), [sym_pipe_table] = STATE(41), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(41), [sym_pandoc_list] = STATE(41), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym_pandoc_block_quote_repeat1] = STATE(41), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27255,18 +27302,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(263), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(265), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27279,12 +27326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(265), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(267), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(267), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(269), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27311,87 +27358,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(267), }, [STATE(41)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27401,18 +27449,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(269), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(271), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27425,12 +27473,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(271), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(275), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27457,22 +27505,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, [STATE(42)] = { [sym__block] = STATE(44), [sym__block_not_section] = STATE(44), [sym_section] = STATE(44), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(44), [sym_pandoc_paragraph] = STATE(44), @@ -27480,64 +27529,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(44), [sym_pipe_table] = STATE(44), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(44), [sym_pandoc_list] = STATE(44), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym_pandoc_block_quote_repeat1] = STATE(44), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27547,18 +27596,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(273), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(277), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27571,12 +27620,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(275), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(277), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(279), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(281), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27603,22 +27652,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(279), }, [STATE(43)] = { [sym__block] = STATE(45), [sym__block_not_section] = STATE(45), [sym_section] = STATE(45), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(45), [sym_pandoc_paragraph] = STATE(45), @@ -27626,64 +27676,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(45), [sym_pipe_table] = STATE(45), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(45), [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27693,18 +27743,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(269), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(271), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27717,12 +27767,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(279), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(271), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(283), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(275), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27749,87 +27799,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(283), }, [STATE(44)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27839,18 +27890,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(281), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(285), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27863,12 +27914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(283), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(287), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27895,87 +27946,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, [STATE(45)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27985,18 +28037,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(285), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(289), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28009,12 +28061,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(287), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(291), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28041,233 +28093,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, [STATE(46)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(289), - [sym_entity_reference] = ACTIONS(292), - [sym_numeric_character_reference] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_BANG_LBRACK] = ACTIONS(298), - [anon_sym_DOLLAR] = ACTIONS(301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(307), - [aux_sym_pandoc_str_token1] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(313), - [sym__whitespace] = ACTIONS(316), - [sym__line_ending] = ACTIONS(319), - [sym__soft_line_ending] = ACTIONS(322), - [sym__block_close] = ACTIONS(325), - [sym__block_quote_start] = ACTIONS(327), - [sym_atx_h1_marker] = ACTIONS(330), - [sym_atx_h2_marker] = ACTIONS(333), - [sym_atx_h3_marker] = ACTIONS(336), - [sym_atx_h4_marker] = ACTIONS(339), - [sym_atx_h5_marker] = ACTIONS(342), - [sym_atx_h6_marker] = ACTIONS(345), - [sym__thematic_break] = ACTIONS(348), - [sym__list_marker_minus] = ACTIONS(351), - [sym__list_marker_plus] = ACTIONS(354), - [sym__list_marker_star] = ACTIONS(357), - [sym__list_marker_parenthesis] = ACTIONS(360), - [sym__list_marker_dot] = ACTIONS(363), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(351), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(354), - [sym__list_marker_star_dont_interrupt] = ACTIONS(357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(363), - [sym__list_marker_example] = ACTIONS(366), - [sym__list_marker_example_dont_interrupt] = ACTIONS(366), - [sym__fenced_code_block_start_backtick] = ACTIONS(369), - [sym_minus_metadata] = ACTIONS(372), - [sym__pipe_table_start] = ACTIONS(375), - [sym__fenced_div_start] = ACTIONS(378), - [sym__fenced_div_end] = ACTIONS(325), - [sym_ref_id_specifier] = ACTIONS(381), - [sym__code_span_start] = ACTIONS(384), - [sym__html_comment] = ACTIONS(292), - [sym__autolink] = ACTIONS(292), - [sym__highlight_span_start] = ACTIONS(387), - [sym__insert_span_start] = ACTIONS(390), - [sym__delete_span_start] = ACTIONS(393), - [sym__edit_comment_span_start] = ACTIONS(396), - [sym__single_quote_span_open] = ACTIONS(399), - [sym__double_quote_span_open] = ACTIONS(402), - [sym__shortcode_open_escaped] = ACTIONS(405), - [sym__shortcode_open] = ACTIONS(408), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(414), - [sym__cite_author_in_text] = ACTIONS(417), - [sym__cite_suppress_author] = ACTIONS(420), - [sym__strikeout_open] = ACTIONS(423), - [sym__subscript_open] = ACTIONS(426), - [sym__superscript_open] = ACTIONS(429), - [sym__inline_note_start_token] = ACTIONS(432), - [sym__strong_emphasis_open_star] = ACTIONS(435), - [sym__strong_emphasis_open_underscore] = ACTIONS(438), - [sym__emphasis_open_star] = ACTIONS(441), - [sym__emphasis_open_underscore] = ACTIONS(444), - [sym_inline_note_reference] = ACTIONS(292), - [sym_html_element] = ACTIONS(292), - [sym__pandoc_line_break] = ACTIONS(292), - }, - [STATE(47)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym__inline_whitespace] = STATE(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28277,19 +28184,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(447), - [sym_block_continuation] = ACTIONS(449), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(293), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28302,11 +28208,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(451), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(295), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28333,87 +28240,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, - [STATE(48)] = { - [sym__block] = STATE(49), - [sym__block_not_section] = STATE(49), - [sym_section] = STATE(49), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(47)] = { + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(49), - [sym_pandoc_paragraph] = STATE(49), - [sym_inline_ref_def] = STATE(49), - [sym_caption] = STATE(49), - [sym_pipe_table] = STATE(49), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(49), - [sym_pandoc_list] = STATE(49), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(49), - [sym_pandoc_div] = STATE(49), - [sym_note_definition_fenced_block] = STATE(49), - [sym__newline] = STATE(49), - [sym__soft_line_break] = STATE(49), - [sym__inline_whitespace] = STATE(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(49), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28423,18 +28331,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(453), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(297), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28447,12 +28355,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(455), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(457), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(299), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28479,87 +28387,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, - [STATE(49)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(48)] = { + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28569,18 +28478,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(459), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28593,12 +28502,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(461), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28625,87 +28534,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, - [STATE(50)] = { - [sym__block] = STATE(52), - [sym__block_not_section] = STATE(52), - [sym_section] = STATE(52), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(49)] = { + [sym__block] = STATE(50), + [sym__block_not_section] = STATE(50), + [sym_section] = STATE(50), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [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_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(52), - [sym_pandoc_list] = STATE(52), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(50), + [sym_pandoc_list] = STATE(50), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(50), + [sym_pandoc_div] = STATE(50), + [sym_note_definition_fenced_block] = STATE(50), + [sym__newline] = STATE(50), + [sym__soft_line_break] = STATE(50), + [sym__inline_whitespace] = STATE(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(50), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28715,18 +28625,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(463), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(301), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28739,12 +28649,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(465), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(467), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(303), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(305), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28771,87 +28681,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(303), }, - [STATE(51)] = { - [sym__block] = STATE(53), - [sym__block_not_section] = STATE(53), - [sym_section] = STATE(53), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(50)] = { + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(53), - [sym_pandoc_paragraph] = STATE(53), - [sym_inline_ref_def] = STATE(53), - [sym_caption] = STATE(53), - [sym_pipe_table] = STATE(53), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(53), - [sym_pandoc_list] = STATE(53), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(53), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28861,18 +28772,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(459), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(307), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28885,12 +28796,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(469), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(461), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(309), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28917,87 +28828,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, - [STATE(52)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(51)] = { + [sym__block] = STATE(53), + [sym__block_not_section] = STATE(53), + [sym_section] = STATE(53), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(53), + [sym_pandoc_list] = STATE(53), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(53), + [sym_pandoc_div] = STATE(53), + [sym_note_definition_fenced_block] = STATE(53), + [sym__newline] = STATE(53), + [sym__soft_line_break] = STATE(53), + [sym__inline_whitespace] = STATE(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29007,18 +28919,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(471), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(311), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29031,12 +28943,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(473), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(313), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(315), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29063,87 +28975,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(313), }, - [STATE(53)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(52)] = { + [sym__block] = STATE(54), + [sym__block_not_section] = STATE(54), + [sym_section] = STATE(54), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(54), + [sym_pandoc_list] = STATE(54), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(54), + [sym_pandoc_div] = STATE(54), + [sym_note_definition_fenced_block] = STATE(54), + [sym__newline] = STATE(54), + [sym__soft_line_break] = STATE(54), + [sym__inline_whitespace] = STATE(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(54), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29153,18 +29066,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(475), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(307), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29177,12 +29090,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(477), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(309), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29209,87 +29122,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(317), }, - [STATE(54)] = { - [sym__block] = STATE(71), - [sym__block_not_section] = STATE(71), - [sym_section] = STATE(71), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(53)] = { + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(111), + [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(3206), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(71), - [sym_pandoc_list] = STATE(71), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(71), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(144), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(144), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29299,19 +29213,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(479), - [sym_block_continuation] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(319), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29324,11 +29237,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(483), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(321), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29355,87 +29269,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, - [STATE(55)] = { - [sym__block] = STATE(56), - [sym__block_not_section] = STATE(56), - [sym_section] = STATE(56), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(54)] = { + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(56), - [sym_pandoc_paragraph] = STATE(56), - [sym_inline_ref_def] = STATE(56), - [sym_caption] = STATE(56), - [sym_pipe_table] = STATE(56), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(56), - [sym_pandoc_list] = STATE(56), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29445,18 +29360,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(485), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(323), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29469,12 +29384,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(487), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(489), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(273), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(325), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29501,87 +29416,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(273), }, - [STATE(56)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [STATE(55)] = { + [sym__block] = STATE(55), + [sym__block_not_section] = STATE(55), + [sym_section] = STATE(55), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(55), + [sym_pandoc_list] = STATE(55), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(327), + [sym_entity_reference] = ACTIONS(330), + [sym_numeric_character_reference] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_BANG_LBRACK] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(342), + [anon_sym_LBRACE] = ACTIONS(345), + [aux_sym_pandoc_str_token1] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(351), + [sym__whitespace] = ACTIONS(354), + [sym__line_ending] = ACTIONS(357), + [sym__soft_line_ending] = ACTIONS(360), + [sym__block_close] = ACTIONS(363), + [sym__block_quote_start] = ACTIONS(365), + [sym_atx_h1_marker] = ACTIONS(368), + [sym_atx_h2_marker] = ACTIONS(371), + [sym_atx_h3_marker] = ACTIONS(374), + [sym_atx_h4_marker] = ACTIONS(377), + [sym_atx_h5_marker] = ACTIONS(380), + [sym_atx_h6_marker] = ACTIONS(383), + [sym__thematic_break] = ACTIONS(386), + [sym__list_marker_minus] = ACTIONS(389), + [sym__list_marker_plus] = ACTIONS(392), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(398), + [sym__list_marker_dot] = ACTIONS(401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(392), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(398), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(401), + [sym__list_marker_example] = ACTIONS(404), + [sym__list_marker_example_dont_interrupt] = ACTIONS(404), + [sym__fenced_code_block_start_backtick] = ACTIONS(407), + [sym_minus_metadata] = ACTIONS(410), + [sym__pipe_table_start] = ACTIONS(413), + [sym__fenced_div_start] = ACTIONS(416), + [sym__fenced_div_end] = ACTIONS(363), + [sym_ref_id_specifier] = ACTIONS(419), + [sym__code_span_start] = ACTIONS(422), + [sym__html_comment] = ACTIONS(330), + [sym__autolink] = ACTIONS(330), + [sym__highlight_span_start] = ACTIONS(425), + [sym__insert_span_start] = ACTIONS(428), + [sym__delete_span_start] = ACTIONS(431), + [sym__edit_comment_span_start] = ACTIONS(434), + [sym__single_quote_span_open] = ACTIONS(437), + [sym__double_quote_span_open] = ACTIONS(440), + [sym__shortcode_open_escaped] = ACTIONS(443), + [sym__shortcode_open] = ACTIONS(446), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(449), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(452), + [sym__cite_author_in_text] = ACTIONS(455), + [sym__cite_suppress_author] = ACTIONS(458), + [sym__strikeout_open] = ACTIONS(461), + [sym__subscript_open] = ACTIONS(464), + [sym__superscript_open] = ACTIONS(467), + [sym__inline_note_start_token] = ACTIONS(470), + [sym__strong_emphasis_open_star] = ACTIONS(473), + [sym__strong_emphasis_open_underscore] = ACTIONS(476), + [sym__emphasis_open_star] = ACTIONS(479), + [sym__emphasis_open_underscore] = ACTIONS(482), + [sym_inline_note_reference] = ACTIONS(330), + [sym_html_element] = ACTIONS(330), + [sym__pandoc_line_break] = ACTIONS(330), + [sym_grid_table] = ACTIONS(410), + }, + [STATE(56)] = { + [sym__block] = STATE(66), + [sym__block_not_section] = STATE(66), + [sym_section] = STATE(66), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(66), + [sym_pandoc_paragraph] = STATE(66), + [sym_inline_ref_def] = STATE(66), + [sym_caption] = STATE(66), + [sym_pipe_table] = STATE(66), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(66), + [sym_pandoc_list] = STATE(66), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym_pandoc_code_block] = STATE(66), + [sym_pandoc_div] = STATE(66), + [sym_note_definition_fenced_block] = STATE(66), + [sym__newline] = STATE(66), + [sym__soft_line_break] = STATE(66), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(66), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29591,18 +29654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(491), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(485), + [sym_block_continuation] = ACTIONS(487), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29615,12 +29679,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(493), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(489), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29647,87 +29710,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(489), }, [STATE(57)] = { - [sym__block] = STATE(59), - [sym__block_not_section] = STATE(59), - [sym_section] = STATE(59), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), - [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(59), - [sym_pandoc_paragraph] = STATE(59), - [sym_inline_ref_def] = STATE(59), - [sym_caption] = STATE(59), - [sym_pipe_table] = STATE(59), - [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__block] = STATE(70), + [sym__block_not_section] = STATE(70), + [sym_section] = STATE(70), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(70), + [sym_pandoc_paragraph] = STATE(70), + [sym_inline_ref_def] = STATE(70), + [sym_caption] = STATE(70), + [sym_pipe_table] = STATE(70), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(59), - [sym_pandoc_list] = STATE(59), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), - [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(59), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), - [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [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), + [sym_pandoc_block_quote] = STATE(70), + [sym_pandoc_list] = STATE(70), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym_pandoc_code_block] = STATE(70), + [sym_pandoc_div] = STATE(70), + [sym_note_definition_fenced_block] = STATE(70), + [sym__newline] = STATE(70), + [sym__soft_line_break] = STATE(70), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(70), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29737,18 +29801,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(495), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(491), + [sym_block_continuation] = ACTIONS(493), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29761,12 +29826,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(497), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(499), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(495), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29793,87 +29857,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(495), }, [STATE(58)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [sym__inline_whitespace] = STATE(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29883,18 +29948,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(491), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(497), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29907,12 +29972,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(501), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(493), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(499), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(501), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29939,87 +30004,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(499), }, [STATE(59)] = { - [sym__block] = STATE(46), - [sym__block_not_section] = STATE(46), - [sym_section] = STATE(46), - [sym__section1] = STATE(318), - [sym__section2] = STATE(318), - [sym__section3] = STATE(318), - [sym__section4] = STATE(318), - [sym__section5] = STATE(318), - [sym__section6] = STATE(318), - [sym__atx_heading1] = STATE(74), + [sym__block] = STATE(48), + [sym__block_not_section] = STATE(48), + [sym_section] = STATE(48), + [sym__section1] = STATE(324), + [sym__section2] = STATE(324), + [sym__section3] = STATE(324), + [sym__section4] = STATE(324), + [sym__section5] = STATE(324), + [sym__section6] = STATE(324), + [sym__atx_heading1] = STATE(75), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(46), - [sym_pandoc_paragraph] = STATE(46), - [sym_inline_ref_def] = STATE(46), - [sym_caption] = STATE(46), - [sym_pipe_table] = STATE(46), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(46), - [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(48), + [sym_pandoc_list] = STATE(48), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym_pandoc_block_quote_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30029,18 +30095,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(503), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(237), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(239), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30053,12 +30119,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(253), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(505), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(505), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(507), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30085,87 +30151,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(505), }, [STATE(60)] = { - [sym__block] = STATE(73), - [sym__block_not_section] = STATE(73), - [sym_section] = STATE(73), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(73), - [sym_pandoc_list] = STATE(73), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(73), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30175,18 +30242,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(507), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(509), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30199,11 +30266,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(509), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(511), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30230,87 +30297,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(511), }, [STATE(61)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), + [sym__block] = STATE(62), + [sym__block_not_section] = STATE(62), + [sym_section] = STATE(62), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(62), + [sym_pandoc_paragraph] = STATE(62), + [sym_inline_ref_def] = STATE(62), + [sym_caption] = STATE(62), + [sym_pipe_table] = STATE(62), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(62), + [sym_pandoc_list] = STATE(62), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym_pandoc_code_block] = STATE(62), + [sym_pandoc_div] = STATE(62), + [sym_note_definition_fenced_block] = STATE(62), + [sym__newline] = STATE(62), + [sym__soft_line_break] = STATE(62), + [sym__inline_whitespace] = STATE(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(62), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30320,18 +30388,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(511), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(513), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30344,11 +30412,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(515), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30375,9 +30443,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(515), }, [STATE(62)] = { - [sym__block_not_section] = STATE(440), + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(517), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(51), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(55), + [sym__list_marker_example_dont_interrupt] = ACTIONS(55), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), + }, + [STATE(63)] = { + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(521), + [sym_entity_reference] = ACTIONS(330), + [sym_numeric_character_reference] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_BANG_LBRACK] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(342), + [anon_sym_LBRACE] = ACTIONS(345), + [aux_sym_pandoc_str_token1] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(351), + [sym__whitespace] = ACTIONS(524), + [sym__line_ending] = ACTIONS(527), + [sym__soft_line_ending] = ACTIONS(530), + [sym__block_close] = ACTIONS(363), + [sym__block_quote_start] = ACTIONS(533), + [sym_atx_h1_marker] = ACTIONS(536), + [sym_atx_h2_marker] = ACTIONS(539), + [sym_atx_h3_marker] = ACTIONS(542), + [sym_atx_h4_marker] = ACTIONS(545), + [sym_atx_h5_marker] = ACTIONS(548), + [sym_atx_h6_marker] = ACTIONS(551), + [sym__thematic_break] = ACTIONS(554), + [sym__list_marker_minus] = ACTIONS(389), + [sym__list_marker_plus] = ACTIONS(392), + [sym__list_marker_star] = ACTIONS(395), + [sym__list_marker_parenthesis] = ACTIONS(398), + [sym__list_marker_dot] = ACTIONS(401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(392), + [sym__list_marker_star_dont_interrupt] = ACTIONS(395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(398), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(401), + [sym__list_marker_example] = ACTIONS(404), + [sym__list_marker_example_dont_interrupt] = ACTIONS(404), + [sym__fenced_code_block_start_backtick] = ACTIONS(557), + [sym_minus_metadata] = ACTIONS(560), + [sym__pipe_table_start] = ACTIONS(563), + [sym__fenced_div_start] = ACTIONS(566), + [sym_ref_id_specifier] = ACTIONS(569), + [sym__code_span_start] = ACTIONS(422), + [sym__html_comment] = ACTIONS(330), + [sym__autolink] = ACTIONS(330), + [sym__highlight_span_start] = ACTIONS(425), + [sym__insert_span_start] = ACTIONS(428), + [sym__delete_span_start] = ACTIONS(431), + [sym__edit_comment_span_start] = ACTIONS(434), + [sym__single_quote_span_open] = ACTIONS(437), + [sym__double_quote_span_open] = ACTIONS(440), + [sym__shortcode_open_escaped] = ACTIONS(443), + [sym__shortcode_open] = ACTIONS(446), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(449), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(452), + [sym__cite_author_in_text] = ACTIONS(455), + [sym__cite_suppress_author] = ACTIONS(458), + [sym__strikeout_open] = ACTIONS(461), + [sym__subscript_open] = ACTIONS(464), + [sym__superscript_open] = ACTIONS(467), + [sym__inline_note_start_token] = ACTIONS(470), + [sym__strong_emphasis_open_star] = ACTIONS(473), + [sym__strong_emphasis_open_underscore] = ACTIONS(476), + [sym__emphasis_open_star] = ACTIONS(479), + [sym__emphasis_open_underscore] = ACTIONS(482), + [sym_inline_note_reference] = ACTIONS(330), + [sym_html_element] = ACTIONS(330), + [sym__pandoc_line_break] = ACTIONS(330), + [sym_grid_table] = ACTIONS(560), + }, + [STATE(64)] = { + [sym__block_not_section] = STATE(494), [sym_section] = STATE(2407), [sym__section1] = STATE(2640), [sym__section2] = STATE(2640), @@ -30385,77 +30746,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__section4] = STATE(2640), [sym__section5] = STATE(2640), [sym__section6] = STATE(2640), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), [aux_sym_document_repeat1] = STATE(69), [aux_sym_document_repeat2] = STATE(2407), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(572), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -30490,7 +30851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(517), + [sym_minus_metadata] = ACTIONS(109), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -30520,87 +30881,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(109), }, - [STATE(63)] = { - [sym__block] = STATE(65), - [sym__block_not_section] = STATE(65), - [sym_section] = STATE(65), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(65), - [sym_pandoc_paragraph] = STATE(65), - [sym_inline_ref_def] = STATE(65), - [sym_caption] = STATE(65), - [sym_pipe_table] = STATE(65), + [STATE(65)] = { + [sym__block] = STATE(68), + [sym__block_not_section] = STATE(68), + [sym_section] = STATE(68), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(68), + [sym_pandoc_paragraph] = STATE(68), + [sym_inline_ref_def] = STATE(68), + [sym_caption] = STATE(68), + [sym_pipe_table] = STATE(68), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(65), - [sym_pandoc_list] = STATE(65), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(65), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(68), + [sym_pandoc_list] = STATE(68), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(68), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30610,18 +30972,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(519), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(574), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30634,11 +30996,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(521), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(576), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30665,87 +31027,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(576), }, - [STATE(64)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), + [STATE(66)] = { + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30755,18 +31118,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(519), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(513), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30779,11 +31142,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30810,87 +31173,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), }, - [STATE(65)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), + [STATE(67)] = { + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30900,18 +31264,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(523), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(574), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30924,11 +31288,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30955,88 +31319,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), }, - [STATE(66)] = { - [sym__block_not_section] = STATE(440), - [sym_section] = STATE(2405), - [sym__section1] = STATE(2640), - [sym__section2] = STATE(2640), - [sym__section3] = STATE(2640), - [sym__section4] = STATE(2640), - [sym__section5] = STATE(2640), - [sym__section6] = STATE(2640), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), + [STATE(68)] = { + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), - [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), - [aux_sym_document_repeat1] = STATE(122), - [aux_sym_document_repeat2] = STATE(2405), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(525), - [anon_sym_COLON] = ACTIONS(5), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31046,17 +31410,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(31), - [sym_atx_h2_marker] = ACTIONS(33), - [sym_atx_h3_marker] = ACTIONS(35), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(578), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31069,301 +31434,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(517), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(67)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(292), - [sym_numeric_character_reference] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_BANG_LBRACK] = ACTIONS(298), - [anon_sym_DOLLAR] = ACTIONS(301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(307), - [aux_sym_pandoc_str_token1] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(313), - [sym__whitespace] = ACTIONS(530), - [sym__line_ending] = ACTIONS(533), - [sym__soft_line_ending] = ACTIONS(536), - [sym__block_close] = ACTIONS(325), - [sym__block_quote_start] = ACTIONS(539), - [sym_atx_h1_marker] = ACTIONS(542), - [sym_atx_h2_marker] = ACTIONS(545), - [sym_atx_h3_marker] = ACTIONS(548), - [sym_atx_h4_marker] = ACTIONS(551), - [sym_atx_h5_marker] = ACTIONS(554), - [sym_atx_h6_marker] = ACTIONS(557), - [sym__thematic_break] = ACTIONS(560), - [sym__list_marker_minus] = ACTIONS(351), - [sym__list_marker_plus] = ACTIONS(354), - [sym__list_marker_star] = ACTIONS(357), - [sym__list_marker_parenthesis] = ACTIONS(360), - [sym__list_marker_dot] = ACTIONS(363), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(351), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(354), - [sym__list_marker_star_dont_interrupt] = ACTIONS(357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(363), - [sym__list_marker_example] = ACTIONS(366), - [sym__list_marker_example_dont_interrupt] = ACTIONS(366), - [sym__fenced_code_block_start_backtick] = ACTIONS(563), - [sym_minus_metadata] = ACTIONS(566), - [sym__pipe_table_start] = ACTIONS(569), - [sym__fenced_div_start] = ACTIONS(572), - [sym_ref_id_specifier] = ACTIONS(575), - [sym__code_span_start] = ACTIONS(384), - [sym__html_comment] = ACTIONS(292), - [sym__autolink] = ACTIONS(292), - [sym__highlight_span_start] = ACTIONS(387), - [sym__insert_span_start] = ACTIONS(390), - [sym__delete_span_start] = ACTIONS(393), - [sym__edit_comment_span_start] = ACTIONS(396), - [sym__single_quote_span_open] = ACTIONS(399), - [sym__double_quote_span_open] = ACTIONS(402), - [sym__shortcode_open_escaped] = ACTIONS(405), - [sym__shortcode_open] = ACTIONS(408), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(414), - [sym__cite_author_in_text] = ACTIONS(417), - [sym__cite_suppress_author] = ACTIONS(420), - [sym__strikeout_open] = ACTIONS(423), - [sym__subscript_open] = ACTIONS(426), - [sym__superscript_open] = ACTIONS(429), - [sym__inline_note_start_token] = ACTIONS(432), - [sym__strong_emphasis_open_star] = ACTIONS(435), - [sym__strong_emphasis_open_underscore] = ACTIONS(438), - [sym__emphasis_open_star] = ACTIONS(441), - [sym__emphasis_open_underscore] = ACTIONS(444), - [sym_inline_note_reference] = ACTIONS(292), - [sym_html_element] = ACTIONS(292), - [sym__pandoc_line_break] = ACTIONS(292), - }, - [STATE(68)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(507), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(55), - [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31390,9 +31465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), }, [STATE(69)] = { - [sym__block_not_section] = STATE(440), + [sym__block_not_section] = STATE(494), [sym_section] = STATE(2408), [sym__section1] = STATE(2640), [sym__section2] = STATE(2640), @@ -31400,77 +31476,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__section4] = STATE(2640), [sym__section5] = STATE(2640), [sym__section6] = STATE(2640), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), [aux_sym_document_repeat1] = STATE(122), [aux_sym_document_repeat2] = STATE(2408), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(578), + [ts_builtin_sym_end] = ACTIONS(580), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -31505,7 +31581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(517), + [sym_minus_metadata] = ACTIONS(109), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -31535,87 +31611,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(109), }, [STATE(70)] = { - [sym__block] = STATE(72), - [sym__block_not_section] = STATE(72), - [sym_section] = STATE(72), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(72), - [sym_pandoc_list] = STATE(72), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(72), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31625,18 +31702,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(580), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(509), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31649,11 +31726,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(582), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31680,87 +31757,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), }, [STATE(71)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31770,18 +31848,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(580), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(582), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31794,11 +31872,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31825,87 +31903,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), }, [STATE(72)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(406), + [sym__section2] = STATE(406), + [sym__section3] = STATE(406), + [sym__section4] = STATE(406), + [sym__section5] = STATE(406), + [sym__section6] = STATE(406), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31915,18 +31994,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), [sym__block_close] = ACTIONS(584), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(125), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31939,11 +32018,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31970,87 +32049,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(519), }, [STATE(73)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(417), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading1] = STATE(77), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), + [sym__block_not_section] = STATE(494), + [sym_section] = STATE(2405), + [sym__section1] = STATE(2640), + [sym__section2] = STATE(2640), + [sym__section3] = STATE(2640), + [sym__section4] = STATE(2640), + [sym__section5] = STATE(2640), + [sym__section6] = STATE(2640), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), + [sym__inlines] = STATE(3153), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), + [aux_sym_document_repeat1] = STATE(122), + [aux_sym_document_repeat2] = STATE(2405), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(586), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32060,18 +32141,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(586), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(123), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(31), + [sym_atx_h2_marker] = ACTIONS(33), + [sym_atx_h3_marker] = ACTIONS(35), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32084,11 +32164,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(513), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32115,83 +32195,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(109), }, [STATE(74)] = { - [sym__block_not_section] = STATE(75), - [sym__section2] = STATE(281), - [sym__section3] = STATE(281), - [sym__section4] = STATE(281), - [sym__section5] = STATE(281), - [sym__section6] = STATE(281), + [sym__block_not_section] = STATE(74), + [sym__section2] = STATE(273), + [sym__section3] = STATE(273), + [sym__section4] = STATE(273), + [sym__section5] = STATE(273), + [sym__section6] = STATE(273), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(121), + [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(3206), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(74), + [sym_pandoc_list] = STATE(74), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(144), + [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(803), + [aux_sym__section1_repeat1] = STATE(74), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(144), + [anon_sym_COLON] = ACTIONS(588), + [sym_entity_reference] = ACTIONS(591), + [sym_numeric_character_reference] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_BANG_LBRACK] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(606), + [aux_sym_pandoc_str_token1] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(612), + [sym__whitespace] = ACTIONS(615), + [sym__line_ending] = ACTIONS(618), + [sym__soft_line_ending] = ACTIONS(621), + [sym__block_close] = ACTIONS(624), + [sym__block_quote_start] = ACTIONS(626), + [sym_atx_h1_marker] = ACTIONS(624), + [sym_atx_h2_marker] = ACTIONS(629), + [sym_atx_h3_marker] = ACTIONS(632), + [sym_atx_h4_marker] = ACTIONS(635), + [sym_atx_h5_marker] = ACTIONS(638), + [sym_atx_h6_marker] = ACTIONS(641), + [sym__thematic_break] = ACTIONS(644), + [sym__list_marker_minus] = ACTIONS(647), + [sym__list_marker_plus] = ACTIONS(650), + [sym__list_marker_star] = ACTIONS(653), + [sym__list_marker_parenthesis] = ACTIONS(656), + [sym__list_marker_dot] = ACTIONS(659), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(647), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(659), + [sym__list_marker_example] = ACTIONS(662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(662), + [sym__fenced_code_block_start_backtick] = ACTIONS(665), + [sym_minus_metadata] = ACTIONS(668), + [sym__pipe_table_start] = ACTIONS(671), + [sym__fenced_div_start] = ACTIONS(674), + [sym__fenced_div_end] = ACTIONS(624), + [sym_ref_id_specifier] = ACTIONS(677), + [sym__code_span_start] = ACTIONS(680), + [sym__html_comment] = ACTIONS(591), + [sym__autolink] = ACTIONS(591), + [sym__highlight_span_start] = ACTIONS(683), + [sym__insert_span_start] = ACTIONS(686), + [sym__delete_span_start] = ACTIONS(689), + [sym__edit_comment_span_start] = ACTIONS(692), + [sym__single_quote_span_open] = ACTIONS(695), + [sym__double_quote_span_open] = ACTIONS(698), + [sym__shortcode_open_escaped] = ACTIONS(701), + [sym__shortcode_open] = ACTIONS(704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(710), + [sym__cite_author_in_text] = ACTIONS(713), + [sym__cite_suppress_author] = ACTIONS(716), + [sym__strikeout_open] = ACTIONS(719), + [sym__subscript_open] = ACTIONS(722), + [sym__superscript_open] = ACTIONS(725), + [sym__inline_note_start_token] = ACTIONS(728), + [sym__strong_emphasis_open_star] = ACTIONS(731), + [sym__strong_emphasis_open_underscore] = ACTIONS(734), + [sym__emphasis_open_star] = ACTIONS(737), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym_inline_note_reference] = ACTIONS(591), + [sym_html_element] = ACTIONS(591), + [sym__pandoc_line_break] = ACTIONS(591), + [sym_grid_table] = ACTIONS(668), + }, + [STATE(75)] = { + [sym__block_not_section] = STATE(76), + [sym__section2] = STATE(273), + [sym__section3] = STATE(273), + [sym__section4] = STATE(273), + [sym__section5] = STATE(273), + [sym__section6] = STATE(273), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(75), - [sym_pandoc_paragraph] = STATE(75), - [sym_inline_ref_def] = STATE(75), - [sym_caption] = STATE(75), - [sym_pipe_table] = STATE(75), + [sym_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(75), - [sym_pandoc_list] = STATE(75), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(76), + [sym_pandoc_list] = STATE(76), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym__section1_repeat1] = STATE(75), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [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(803), + [aux_sym__section1_repeat1] = STATE(76), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32201,18 +32425,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(588), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(588), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(743), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(743), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32225,12 +32449,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(590), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(588), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(745), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(743), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32257,83 +32481,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(745), }, - [STATE(75)] = { - [sym__block_not_section] = STATE(76), - [sym__section2] = STATE(281), - [sym__section3] = STATE(281), - [sym__section4] = STATE(281), - [sym__section5] = STATE(281), - [sym__section6] = STATE(281), + [STATE(76)] = { + [sym__block_not_section] = STATE(74), + [sym__section2] = STATE(273), + [sym__section3] = STATE(273), + [sym__section4] = STATE(273), + [sym__section5] = STATE(273), + [sym__section6] = STATE(273), [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [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_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(76), - [sym_pandoc_list] = STATE(76), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(74), + [sym_pandoc_list] = STATE(74), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym__section1_repeat1] = STATE(76), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(74), + [sym_pandoc_div] = STATE(74), + [sym_note_definition_fenced_block] = STATE(74), + [sym__newline] = STATE(74), + [sym__soft_line_break] = STATE(74), + [sym__inline_whitespace] = STATE(803), + [aux_sym__section1_repeat1] = STATE(74), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32343,18 +32568,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(592), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(592), - [sym_atx_h2_marker] = ACTIONS(239), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(747), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(747), + [sym_atx_h2_marker] = ACTIONS(241), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32367,12 +32592,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(594), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(592), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(749), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(747), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32399,225 +32624,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(76)] = { - [sym__block_not_section] = STATE(76), - [sym__section2] = STATE(281), - [sym__section3] = STATE(281), - [sym__section4] = STATE(281), - [sym__section5] = STATE(281), - [sym__section6] = STATE(281), - [sym__atx_heading2] = STATE(83), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(76), - [sym_pandoc_paragraph] = STATE(76), - [sym_inline_ref_def] = STATE(76), - [sym_caption] = STATE(76), - [sym_pipe_table] = STATE(76), - [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(76), - [sym_pandoc_list] = STATE(76), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), - [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym__section1_repeat1] = STATE(76), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), - [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(596), - [sym_entity_reference] = ACTIONS(599), - [sym_numeric_character_reference] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_BANG_LBRACK] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(614), - [aux_sym_pandoc_str_token1] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace] = ACTIONS(623), - [sym__line_ending] = ACTIONS(626), - [sym__soft_line_ending] = ACTIONS(629), - [sym__block_close] = ACTIONS(632), - [sym__block_quote_start] = ACTIONS(634), - [sym_atx_h1_marker] = ACTIONS(632), - [sym_atx_h2_marker] = ACTIONS(637), - [sym_atx_h3_marker] = ACTIONS(640), - [sym_atx_h4_marker] = ACTIONS(643), - [sym_atx_h5_marker] = ACTIONS(646), - [sym_atx_h6_marker] = ACTIONS(649), - [sym__thematic_break] = ACTIONS(652), - [sym__list_marker_minus] = ACTIONS(655), - [sym__list_marker_plus] = ACTIONS(658), - [sym__list_marker_star] = ACTIONS(661), - [sym__list_marker_parenthesis] = ACTIONS(664), - [sym__list_marker_dot] = ACTIONS(667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(655), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(658), - [sym__list_marker_star_dont_interrupt] = ACTIONS(661), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(667), - [sym__list_marker_example] = ACTIONS(670), - [sym__list_marker_example_dont_interrupt] = ACTIONS(670), - [sym__fenced_code_block_start_backtick] = ACTIONS(673), - [sym_minus_metadata] = ACTIONS(676), - [sym__pipe_table_start] = ACTIONS(679), - [sym__fenced_div_start] = ACTIONS(682), - [sym__fenced_div_end] = ACTIONS(632), - [sym_ref_id_specifier] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(688), - [sym__html_comment] = ACTIONS(599), - [sym__autolink] = ACTIONS(599), - [sym__highlight_span_start] = ACTIONS(691), - [sym__insert_span_start] = ACTIONS(694), - [sym__delete_span_start] = ACTIONS(697), - [sym__edit_comment_span_start] = ACTIONS(700), - [sym__single_quote_span_open] = ACTIONS(703), - [sym__double_quote_span_open] = ACTIONS(706), - [sym__shortcode_open_escaped] = ACTIONS(709), - [sym__shortcode_open] = ACTIONS(712), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(715), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(718), - [sym__cite_author_in_text] = ACTIONS(721), - [sym__cite_suppress_author] = ACTIONS(724), - [sym__strikeout_open] = ACTIONS(727), - [sym__subscript_open] = ACTIONS(730), - [sym__superscript_open] = ACTIONS(733), - [sym__inline_note_start_token] = ACTIONS(736), - [sym__strong_emphasis_open_star] = ACTIONS(739), - [sym__strong_emphasis_open_underscore] = ACTIONS(742), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(748), - [sym_inline_note_reference] = ACTIONS(599), - [sym_html_element] = ACTIONS(599), - [sym__pandoc_line_break] = ACTIONS(599), + [sym_grid_table] = ACTIONS(749), }, [STATE(77)] = { - [sym__block_not_section] = STATE(78), - [sym__section2] = STATE(431), - [sym__section3] = STATE(431), - [sym__section4] = STATE(431), - [sym__section5] = STATE(431), - [sym__section6] = STATE(431), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), + [sym__block_not_section] = STATE(82), + [sym__section2] = STATE(369), + [sym__section3] = STATE(369), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(78), - [sym_pandoc_paragraph] = STATE(78), - [sym_inline_ref_def] = STATE(78), - [sym_caption] = STATE(78), - [sym_pipe_table] = STATE(78), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(78), - [sym_pandoc_list] = STATE(78), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section1_repeat1] = STATE(78), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(82), + [sym_pandoc_list] = STATE(82), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [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(816), + [aux_sym__section1_repeat1] = STATE(82), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(747), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32627,18 +32712,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(588), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(588), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(747), + [sym_atx_h2_marker] = ACTIONS(33), + [sym_atx_h3_marker] = ACTIONS(35), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32651,11 +32735,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), [sym_minus_metadata] = ACTIONS(751), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32682,83 +32766,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(751), }, [STATE(78)] = { - [sym__block_not_section] = STATE(81), - [sym__section2] = STATE(431), - [sym__section3] = STATE(431), - [sym__section4] = STATE(431), - [sym__section5] = STATE(431), - [sym__section6] = STATE(431), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [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__block_not_section] = STATE(80), + [sym__section2] = STATE(419), + [sym__section3] = STATE(419), + [sym__section4] = STATE(419), + [sym__section5] = STATE(419), + [sym__section6] = STATE(419), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(81), - [sym_pandoc_list] = STATE(81), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section1_repeat1] = STATE(81), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(80), + [sym_pandoc_list] = STATE(80), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section1_repeat1] = STATE(80), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32768,18 +32853,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(592), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(592), - [sym_atx_h2_marker] = ACTIONS(125), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(747), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(747), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32792,11 +32877,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(753), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32823,84 +32908,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(753), }, [STATE(79)] = { - [sym__block_not_section] = STATE(82), - [sym__section2] = STATE(370), - [sym__section3] = STATE(370), - [sym__section4] = STATE(370), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), + [sym__block_not_section] = STATE(78), + [sym__section2] = STATE(419), + [sym__section3] = STATE(419), + [sym__section4] = STATE(419), + [sym__section5] = STATE(419), + [sym__section6] = STATE(419), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym_pandoc_horizontal_rule] = STATE(78), + [sym_pandoc_paragraph] = STATE(78), + [sym_inline_ref_def] = STATE(78), + [sym_caption] = STATE(78), + [sym_pipe_table] = STATE(78), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(82), - [sym_pandoc_list] = STATE(82), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section1_repeat1] = STATE(82), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(5), + [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), + [sym_pandoc_block_quote] = STATE(78), + [sym_pandoc_list] = STATE(78), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section1_repeat1] = STATE(78), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32910,17 +32995,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(592), - [sym_atx_h2_marker] = ACTIONS(33), - [sym_atx_h3_marker] = ACTIONS(35), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(743), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(743), + [sym_atx_h2_marker] = ACTIONS(127), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32933,11 +33019,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(755), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32964,83 +33050,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(755), }, [STATE(80)] = { - [sym__block_not_section] = STATE(79), - [sym__section2] = STATE(370), - [sym__section3] = STATE(370), - [sym__section4] = STATE(370), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), + [sym__block_not_section] = STATE(80), + [sym__section2] = STATE(419), + [sym__section3] = STATE(419), + [sym__section4] = STATE(419), + [sym__section5] = STATE(419), + [sym__section6] = STATE(419), + [sym__atx_heading2] = STATE(87), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(79), - [sym_pandoc_paragraph] = STATE(79), - [sym_inline_ref_def] = STATE(79), - [sym_caption] = STATE(79), - [sym_pipe_table] = STATE(79), + [sym_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(3287), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(80), + [sym_pandoc_list] = STATE(80), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section1_repeat1] = STATE(80), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(757), + [sym_entity_reference] = ACTIONS(591), + [sym_numeric_character_reference] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_BANG_LBRACK] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(606), + [aux_sym_pandoc_str_token1] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(612), + [sym__whitespace] = ACTIONS(760), + [sym__line_ending] = ACTIONS(763), + [sym__soft_line_ending] = ACTIONS(766), + [sym__block_close] = ACTIONS(624), + [sym__block_quote_start] = ACTIONS(769), + [sym_atx_h1_marker] = ACTIONS(624), + [sym_atx_h2_marker] = ACTIONS(772), + [sym_atx_h3_marker] = ACTIONS(775), + [sym_atx_h4_marker] = ACTIONS(778), + [sym_atx_h5_marker] = ACTIONS(781), + [sym_atx_h6_marker] = ACTIONS(784), + [sym__thematic_break] = ACTIONS(787), + [sym__list_marker_minus] = ACTIONS(647), + [sym__list_marker_plus] = ACTIONS(650), + [sym__list_marker_star] = ACTIONS(653), + [sym__list_marker_parenthesis] = ACTIONS(656), + [sym__list_marker_dot] = ACTIONS(659), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(647), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(659), + [sym__list_marker_example] = ACTIONS(662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(662), + [sym__fenced_code_block_start_backtick] = ACTIONS(790), + [sym_minus_metadata] = ACTIONS(793), + [sym__pipe_table_start] = ACTIONS(796), + [sym__fenced_div_start] = ACTIONS(799), + [sym_ref_id_specifier] = ACTIONS(802), + [sym__code_span_start] = ACTIONS(680), + [sym__html_comment] = ACTIONS(591), + [sym__autolink] = ACTIONS(591), + [sym__highlight_span_start] = ACTIONS(683), + [sym__insert_span_start] = ACTIONS(686), + [sym__delete_span_start] = ACTIONS(689), + [sym__edit_comment_span_start] = ACTIONS(692), + [sym__single_quote_span_open] = ACTIONS(695), + [sym__double_quote_span_open] = ACTIONS(698), + [sym__shortcode_open_escaped] = ACTIONS(701), + [sym__shortcode_open] = ACTIONS(704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(710), + [sym__cite_author_in_text] = ACTIONS(713), + [sym__cite_suppress_author] = ACTIONS(716), + [sym__strikeout_open] = ACTIONS(719), + [sym__subscript_open] = ACTIONS(722), + [sym__superscript_open] = ACTIONS(725), + [sym__inline_note_start_token] = ACTIONS(728), + [sym__strong_emphasis_open_star] = ACTIONS(731), + [sym__strong_emphasis_open_underscore] = ACTIONS(734), + [sym__emphasis_open_star] = ACTIONS(737), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym_inline_note_reference] = ACTIONS(591), + [sym_html_element] = ACTIONS(591), + [sym__pandoc_line_break] = ACTIONS(591), + [sym_grid_table] = ACTIONS(793), + }, + [STATE(81)] = { + [sym__block_not_section] = STATE(77), + [sym__section2] = STATE(369), + [sym__section3] = STATE(369), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(79), - [sym_pandoc_list] = STATE(79), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(77), + [sym_pandoc_list] = STATE(77), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(79), - [sym_pandoc_div] = STATE(79), - [sym_note_definition_fenced_block] = STATE(79), - [sym__newline] = STATE(79), - [sym__soft_line_break] = STATE(79), - [sym__inline_whitespace] = STATE(803), - [aux_sym__section1_repeat1] = STATE(79), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [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(816), + [aux_sym__section1_repeat1] = STATE(77), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(588), + [ts_builtin_sym_end] = ACTIONS(743), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -33055,7 +33284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(588), + [sym_atx_h1_marker] = ACTIONS(743), [sym_atx_h2_marker] = ACTIONS(33), [sym_atx_h3_marker] = ACTIONS(35), [sym_atx_h4_marker] = ACTIONS(37), @@ -33075,7 +33304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(757), + [sym_minus_metadata] = ACTIONS(805), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -33105,207 +33334,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(81)] = { - [sym__block_not_section] = STATE(81), - [sym__section2] = STATE(431), - [sym__section3] = STATE(431), - [sym__section4] = STATE(431), - [sym__section5] = STATE(431), - [sym__section6] = STATE(431), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(81), - [sym_pandoc_list] = STATE(81), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section1_repeat1] = STATE(81), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(599), - [sym_numeric_character_reference] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_BANG_LBRACK] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(614), - [aux_sym_pandoc_str_token1] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(620), - [sym__whitespace] = ACTIONS(762), - [sym__line_ending] = ACTIONS(765), - [sym__soft_line_ending] = ACTIONS(768), - [sym__block_close] = ACTIONS(632), - [sym__block_quote_start] = ACTIONS(771), - [sym_atx_h1_marker] = ACTIONS(632), - [sym_atx_h2_marker] = ACTIONS(774), - [sym_atx_h3_marker] = ACTIONS(777), - [sym_atx_h4_marker] = ACTIONS(780), - [sym_atx_h5_marker] = ACTIONS(783), - [sym_atx_h6_marker] = ACTIONS(786), - [sym__thematic_break] = ACTIONS(789), - [sym__list_marker_minus] = ACTIONS(655), - [sym__list_marker_plus] = ACTIONS(658), - [sym__list_marker_star] = ACTIONS(661), - [sym__list_marker_parenthesis] = ACTIONS(664), - [sym__list_marker_dot] = ACTIONS(667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(655), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(658), - [sym__list_marker_star_dont_interrupt] = ACTIONS(661), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(667), - [sym__list_marker_example] = ACTIONS(670), - [sym__list_marker_example_dont_interrupt] = ACTIONS(670), - [sym__fenced_code_block_start_backtick] = ACTIONS(792), - [sym_minus_metadata] = ACTIONS(795), - [sym__pipe_table_start] = ACTIONS(798), - [sym__fenced_div_start] = ACTIONS(801), - [sym_ref_id_specifier] = ACTIONS(804), - [sym__code_span_start] = ACTIONS(688), - [sym__html_comment] = ACTIONS(599), - [sym__autolink] = ACTIONS(599), - [sym__highlight_span_start] = ACTIONS(691), - [sym__insert_span_start] = ACTIONS(694), - [sym__delete_span_start] = ACTIONS(697), - [sym__edit_comment_span_start] = ACTIONS(700), - [sym__single_quote_span_open] = ACTIONS(703), - [sym__double_quote_span_open] = ACTIONS(706), - [sym__shortcode_open_escaped] = ACTIONS(709), - [sym__shortcode_open] = ACTIONS(712), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(715), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(718), - [sym__cite_author_in_text] = ACTIONS(721), - [sym__cite_suppress_author] = ACTIONS(724), - [sym__strikeout_open] = ACTIONS(727), - [sym__subscript_open] = ACTIONS(730), - [sym__superscript_open] = ACTIONS(733), - [sym__inline_note_start_token] = ACTIONS(736), - [sym__strong_emphasis_open_star] = ACTIONS(739), - [sym__strong_emphasis_open_underscore] = ACTIONS(742), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(748), - [sym_inline_note_reference] = ACTIONS(599), - [sym_html_element] = ACTIONS(599), - [sym__pandoc_line_break] = ACTIONS(599), + [sym_grid_table] = ACTIONS(805), }, [STATE(82)] = { [sym__block_not_section] = STATE(82), - [sym__section2] = STATE(370), - [sym__section3] = STATE(370), - [sym__section4] = STATE(370), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), + [sym__section2] = STATE(369), + [sym__section3] = STATE(369), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), + [sym__atx_heading6] = STATE(126), [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(82), [sym_pandoc_list] = STATE(82), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), @@ -33314,89 +33403,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(82), [sym__newline] = STATE(82), [sym__soft_line_break] = STATE(82), - [sym__inline_whitespace] = STATE(803), + [sym__inline_whitespace] = STATE(816), [aux_sym__section1_repeat1] = STATE(82), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(632), + [ts_builtin_sym_end] = ACTIONS(624), [anon_sym_COLON] = ACTIONS(807), - [sym_entity_reference] = ACTIONS(599), - [sym_numeric_character_reference] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_BANG_LBRACK] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(614), - [aux_sym_pandoc_str_token1] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(620), + [sym_entity_reference] = ACTIONS(591), + [sym_numeric_character_reference] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_BANG_LBRACK] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(606), + [aux_sym_pandoc_str_token1] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(612), [sym__whitespace] = ACTIONS(810), [sym__line_ending] = ACTIONS(813), [sym__soft_line_ending] = ACTIONS(816), [sym__block_quote_start] = ACTIONS(819), - [sym_atx_h1_marker] = ACTIONS(632), + [sym_atx_h1_marker] = ACTIONS(624), [sym_atx_h2_marker] = ACTIONS(822), [sym_atx_h3_marker] = ACTIONS(825), [sym_atx_h4_marker] = ACTIONS(828), [sym_atx_h5_marker] = ACTIONS(831), [sym_atx_h6_marker] = ACTIONS(834), [sym__thematic_break] = ACTIONS(837), - [sym__list_marker_minus] = ACTIONS(655), - [sym__list_marker_plus] = ACTIONS(658), - [sym__list_marker_star] = ACTIONS(661), - [sym__list_marker_parenthesis] = ACTIONS(664), - [sym__list_marker_dot] = ACTIONS(667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(655), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(658), - [sym__list_marker_star_dont_interrupt] = ACTIONS(661), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(667), - [sym__list_marker_example] = ACTIONS(670), - [sym__list_marker_example_dont_interrupt] = ACTIONS(670), + [sym__list_marker_minus] = ACTIONS(647), + [sym__list_marker_plus] = ACTIONS(650), + [sym__list_marker_star] = ACTIONS(653), + [sym__list_marker_parenthesis] = ACTIONS(656), + [sym__list_marker_dot] = ACTIONS(659), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(647), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(659), + [sym__list_marker_example] = ACTIONS(662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(662), [sym__fenced_code_block_start_backtick] = ACTIONS(840), [sym_minus_metadata] = ACTIONS(843), [sym__pipe_table_start] = ACTIONS(846), [sym__fenced_div_start] = ACTIONS(849), [sym_ref_id_specifier] = ACTIONS(852), - [sym__code_span_start] = ACTIONS(688), - [sym__html_comment] = ACTIONS(599), - [sym__autolink] = ACTIONS(599), - [sym__highlight_span_start] = ACTIONS(691), - [sym__insert_span_start] = ACTIONS(694), - [sym__delete_span_start] = ACTIONS(697), - [sym__edit_comment_span_start] = ACTIONS(700), - [sym__single_quote_span_open] = ACTIONS(703), - [sym__double_quote_span_open] = ACTIONS(706), - [sym__shortcode_open_escaped] = ACTIONS(709), - [sym__shortcode_open] = ACTIONS(712), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(715), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(718), - [sym__cite_author_in_text] = ACTIONS(721), - [sym__cite_suppress_author] = ACTIONS(724), - [sym__strikeout_open] = ACTIONS(727), - [sym__subscript_open] = ACTIONS(730), - [sym__superscript_open] = ACTIONS(733), - [sym__inline_note_start_token] = ACTIONS(736), - [sym__strong_emphasis_open_star] = ACTIONS(739), - [sym__strong_emphasis_open_underscore] = ACTIONS(742), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(748), - [sym_inline_note_reference] = ACTIONS(599), - [sym_html_element] = ACTIONS(599), - [sym__pandoc_line_break] = ACTIONS(599), + [sym__code_span_start] = ACTIONS(680), + [sym__html_comment] = ACTIONS(591), + [sym__autolink] = ACTIONS(591), + [sym__highlight_span_start] = ACTIONS(683), + [sym__insert_span_start] = ACTIONS(686), + [sym__delete_span_start] = ACTIONS(689), + [sym__edit_comment_span_start] = ACTIONS(692), + [sym__single_quote_span_open] = ACTIONS(695), + [sym__double_quote_span_open] = ACTIONS(698), + [sym__shortcode_open_escaped] = ACTIONS(701), + [sym__shortcode_open] = ACTIONS(704), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(710), + [sym__cite_author_in_text] = ACTIONS(713), + [sym__cite_suppress_author] = ACTIONS(716), + [sym__strikeout_open] = ACTIONS(719), + [sym__subscript_open] = ACTIONS(722), + [sym__superscript_open] = ACTIONS(725), + [sym__inline_note_start_token] = ACTIONS(728), + [sym__strong_emphasis_open_star] = ACTIONS(731), + [sym__strong_emphasis_open_underscore] = ACTIONS(734), + [sym__emphasis_open_star] = ACTIONS(737), + [sym__emphasis_open_underscore] = ACTIONS(740), + [sym_inline_note_reference] = ACTIONS(591), + [sym_html_element] = ACTIONS(591), + [sym__pandoc_line_break] = ACTIONS(591), + [sym_grid_table] = ACTIONS(843), }, [STATE(83)] = { [sym__block_not_section] = STATE(84), - [sym__section3] = STATE(321), - [sym__section4] = STATE(321), - [sym__section5] = STATE(321), - [sym__section6] = STATE(321), - [sym__atx_heading3] = STATE(93), + [sym__section3] = STATE(275), + [sym__section4] = STATE(275), + [sym__section5] = STATE(275), + [sym__section6] = STATE(275), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(84), [sym_pandoc_paragraph] = STATE(84), @@ -33404,64 +33494,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(84), [sym_pipe_table] = STATE(84), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(84), [sym_pandoc_list] = STATE(84), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section2_repeat1] = STATE(84), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33471,18 +33561,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(855), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(855), [sym_atx_h2_marker] = ACTIONS(855), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33495,12 +33585,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(857), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(855), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33527,16 +33617,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(857), }, [STATE(84)] = { [sym__block_not_section] = STATE(85), - [sym__section3] = STATE(321), - [sym__section4] = STATE(321), - [sym__section5] = STATE(321), - [sym__section6] = STATE(321), - [sym__atx_heading3] = STATE(93), + [sym__section3] = STATE(275), + [sym__section4] = STATE(275), + [sym__section5] = STATE(275), + [sym__section6] = STATE(275), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(85), [sym_pandoc_paragraph] = STATE(85), @@ -33544,64 +33635,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(85), [sym_pipe_table] = STATE(85), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(85), [sym_pandoc_list] = STATE(85), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section2_repeat1] = STATE(85), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33611,18 +33702,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(859), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(859), [sym_atx_h2_marker] = ACTIONS(859), - [sym_atx_h3_marker] = ACTIONS(241), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym_atx_h3_marker] = ACTIONS(243), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33635,12 +33726,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(861), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(859), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33667,16 +33758,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(861), }, [STATE(85)] = { [sym__block_not_section] = STATE(85), - [sym__section3] = STATE(321), - [sym__section4] = STATE(321), - [sym__section5] = STATE(321), - [sym__section6] = STATE(321), - [sym__atx_heading3] = STATE(93), + [sym__section3] = STATE(275), + [sym__section4] = STATE(275), + [sym__section5] = STATE(275), + [sym__section6] = STATE(275), + [sym__atx_heading3] = STATE(92), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(85), [sym_pandoc_paragraph] = STATE(85), @@ -33684,62 +33776,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(85), [sym_pipe_table] = STATE(85), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(85), [sym_pandoc_list] = STATE(85), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section2_repeat1] = STATE(85), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), [anon_sym_COLON] = ACTIONS(863), [sym_entity_reference] = ACTIONS(866), @@ -33807,81 +33899,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(866), [sym_html_element] = ACTIONS(866), [sym__pandoc_line_break] = ACTIONS(866), + [sym_grid_table] = ACTIONS(940), }, [STATE(86)] = { - [sym__block_not_section] = STATE(87), - [sym__section3] = STATE(432), - [sym__section4] = STATE(432), - [sym__section5] = STATE(432), - [sym__section6] = STATE(432), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(87), - [sym_pandoc_paragraph] = STATE(87), - [sym_inline_ref_def] = STATE(87), - [sym_caption] = STATE(87), - [sym_pipe_table] = STATE(87), + [sym__block_not_section] = STATE(88), + [sym__section3] = STATE(420), + [sym__section4] = STATE(420), + [sym__section5] = STATE(420), + [sym__section6] = STATE(420), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(87), - [sym_pandoc_list] = STATE(87), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section2_repeat1] = STATE(87), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(88), + [sym_pandoc_list] = STATE(88), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section2_repeat1] = STATE(88), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33891,18 +33984,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(855), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(855), - [sym_atx_h2_marker] = ACTIONS(855), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(859), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(859), + [sym_atx_h2_marker] = ACTIONS(859), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33915,11 +34008,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(1015), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33946,81 +34039,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1015), }, [STATE(87)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(432), - [sym__section4] = STATE(432), - [sym__section5] = STATE(432), - [sym__section6] = STATE(432), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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__block_not_section] = STATE(86), + [sym__section3] = STATE(420), + [sym__section4] = STATE(420), + [sym__section5] = STATE(420), + [sym__section6] = STATE(420), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(86), + [sym_pandoc_paragraph] = STATE(86), + [sym_inline_ref_def] = STATE(86), + [sym_caption] = STATE(86), + [sym_pipe_table] = STATE(86), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym__section2_repeat1] = STATE(90), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(86), + [sym_pandoc_list] = STATE(86), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section2_repeat1] = STATE(86), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34030,18 +34124,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(859), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(859), - [sym_atx_h2_marker] = ACTIONS(859), - [sym_atx_h3_marker] = ACTIONS(127), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(855), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(855), + [sym_atx_h2_marker] = ACTIONS(855), + [sym_atx_h3_marker] = ACTIONS(129), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34054,11 +34148,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(1017), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34085,77 +34179,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1017), }, [STATE(88)] = { - [sym__block_not_section] = STATE(89), - [sym__section3] = STATE(374), - [sym__section4] = STATE(374), - [sym__section5] = STATE(374), - [sym__section6] = STATE(374), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), + [sym__block_not_section] = STATE(88), + [sym__section3] = STATE(420), + [sym__section4] = STATE(420), + [sym__section5] = STATE(420), + [sym__section6] = STATE(420), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(89), - [sym_pandoc_paragraph] = STATE(89), - [sym_inline_ref_def] = STATE(89), - [sym_caption] = STATE(89), - [sym_pipe_table] = STATE(89), + [sym_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(3287), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(88), + [sym_pandoc_list] = STATE(88), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section2_repeat1] = STATE(88), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(1019), + [sym_entity_reference] = ACTIONS(866), + [sym_numeric_character_reference] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_BANG_LBRACK] = ACTIONS(872), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(881), + [aux_sym_pandoc_str_token1] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(887), + [sym__whitespace] = ACTIONS(1022), + [sym__line_ending] = ACTIONS(1025), + [sym__soft_line_ending] = ACTIONS(1028), + [sym__block_close] = ACTIONS(899), + [sym__block_quote_start] = ACTIONS(1031), + [sym_atx_h1_marker] = ACTIONS(899), + [sym_atx_h2_marker] = ACTIONS(899), + [sym_atx_h3_marker] = ACTIONS(1034), + [sym_atx_h4_marker] = ACTIONS(1037), + [sym_atx_h5_marker] = ACTIONS(1040), + [sym_atx_h6_marker] = ACTIONS(1043), + [sym__thematic_break] = ACTIONS(1046), + [sym__list_marker_minus] = ACTIONS(919), + [sym__list_marker_plus] = ACTIONS(922), + [sym__list_marker_star] = ACTIONS(925), + [sym__list_marker_parenthesis] = ACTIONS(928), + [sym__list_marker_dot] = ACTIONS(931), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(919), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(922), + [sym__list_marker_star_dont_interrupt] = ACTIONS(925), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(928), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(931), + [sym__list_marker_example] = ACTIONS(934), + [sym__list_marker_example_dont_interrupt] = ACTIONS(934), + [sym__fenced_code_block_start_backtick] = ACTIONS(1049), + [sym_minus_metadata] = ACTIONS(1052), + [sym__pipe_table_start] = ACTIONS(1055), + [sym__fenced_div_start] = ACTIONS(1058), + [sym_ref_id_specifier] = ACTIONS(1061), + [sym__code_span_start] = ACTIONS(952), + [sym__html_comment] = ACTIONS(866), + [sym__autolink] = ACTIONS(866), + [sym__highlight_span_start] = ACTIONS(955), + [sym__insert_span_start] = ACTIONS(958), + [sym__delete_span_start] = ACTIONS(961), + [sym__edit_comment_span_start] = ACTIONS(964), + [sym__single_quote_span_open] = ACTIONS(967), + [sym__double_quote_span_open] = ACTIONS(970), + [sym__shortcode_open_escaped] = ACTIONS(973), + [sym__shortcode_open] = ACTIONS(976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(979), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(982), + [sym__cite_author_in_text] = ACTIONS(985), + [sym__cite_suppress_author] = ACTIONS(988), + [sym__strikeout_open] = ACTIONS(991), + [sym__subscript_open] = ACTIONS(994), + [sym__superscript_open] = ACTIONS(997), + [sym__inline_note_start_token] = ACTIONS(1000), + [sym__strong_emphasis_open_star] = ACTIONS(1003), + [sym__strong_emphasis_open_underscore] = ACTIONS(1006), + [sym__emphasis_open_star] = ACTIONS(1009), + [sym__emphasis_open_underscore] = ACTIONS(1012), + [sym_inline_note_reference] = ACTIONS(866), + [sym_html_element] = ACTIONS(866), + [sym__pandoc_line_break] = ACTIONS(866), + [sym_grid_table] = ACTIONS(1052), + }, + [STATE(89)] = { + [sym__block_not_section] = STATE(91), + [sym__section3] = STATE(372), + [sym__section4] = STATE(372), + [sym__section5] = STATE(372), + [sym__section6] = STATE(372), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(89), - [sym_pandoc_list] = STATE(89), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(91), + [sym_pandoc_list] = STATE(91), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section2_repeat1] = STATE(89), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [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(816), + [aux_sym__section2_repeat1] = STATE(91), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), @@ -34194,7 +34429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1019), + [sym_minus_metadata] = ACTIONS(1064), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -34224,64 +34459,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1064), }, - [STATE(89)] = { + [STATE(90)] = { [sym__block_not_section] = STATE(89), - [sym__section3] = STATE(374), - [sym__section4] = STATE(374), - [sym__section5] = STATE(374), - [sym__section6] = STATE(374), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), + [sym__section3] = STATE(372), + [sym__section4] = STATE(372), + [sym__section5] = STATE(372), + [sym__section6] = STATE(372), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), + [sym__atx_heading6] = STATE(126), [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(89), [sym_pandoc_list] = STATE(89), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), @@ -34290,289 +34526,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(89), [sym__newline] = STATE(89), [sym__soft_line_break] = STATE(89), - [sym__inline_whitespace] = STATE(803), + [sym__inline_whitespace] = STATE(816), [aux_sym__section2_repeat1] = STATE(89), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(1021), - [sym_entity_reference] = ACTIONS(866), - [sym_numeric_character_reference] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_BANG_LBRACK] = ACTIONS(872), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(878), - [anon_sym_LBRACE] = ACTIONS(881), - [aux_sym_pandoc_str_token1] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(887), - [sym__whitespace] = ACTIONS(1024), - [sym__line_ending] = ACTIONS(1027), - [sym__soft_line_ending] = ACTIONS(1030), - [sym__block_quote_start] = ACTIONS(1033), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(1036), - [sym_atx_h4_marker] = ACTIONS(1039), - [sym_atx_h5_marker] = ACTIONS(1042), - [sym_atx_h6_marker] = ACTIONS(1045), - [sym__thematic_break] = ACTIONS(1048), - [sym__list_marker_minus] = ACTIONS(919), - [sym__list_marker_plus] = ACTIONS(922), - [sym__list_marker_star] = ACTIONS(925), - [sym__list_marker_parenthesis] = ACTIONS(928), - [sym__list_marker_dot] = ACTIONS(931), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(919), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(922), - [sym__list_marker_star_dont_interrupt] = ACTIONS(925), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(928), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(931), - [sym__list_marker_example] = ACTIONS(934), - [sym__list_marker_example_dont_interrupt] = ACTIONS(934), - [sym__fenced_code_block_start_backtick] = ACTIONS(1051), - [sym_minus_metadata] = ACTIONS(1054), - [sym__pipe_table_start] = ACTIONS(1057), - [sym__fenced_div_start] = ACTIONS(1060), - [sym_ref_id_specifier] = ACTIONS(1063), - [sym__code_span_start] = ACTIONS(952), - [sym__html_comment] = ACTIONS(866), - [sym__autolink] = ACTIONS(866), - [sym__highlight_span_start] = ACTIONS(955), - [sym__insert_span_start] = ACTIONS(958), - [sym__delete_span_start] = ACTIONS(961), - [sym__edit_comment_span_start] = ACTIONS(964), - [sym__single_quote_span_open] = ACTIONS(967), - [sym__double_quote_span_open] = ACTIONS(970), - [sym__shortcode_open_escaped] = ACTIONS(973), - [sym__shortcode_open] = ACTIONS(976), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(982), - [sym__cite_author_in_text] = ACTIONS(985), - [sym__cite_suppress_author] = ACTIONS(988), - [sym__strikeout_open] = ACTIONS(991), - [sym__subscript_open] = ACTIONS(994), - [sym__superscript_open] = ACTIONS(997), - [sym__inline_note_start_token] = ACTIONS(1000), - [sym__strong_emphasis_open_star] = ACTIONS(1003), - [sym__strong_emphasis_open_underscore] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1009), - [sym__emphasis_open_underscore] = ACTIONS(1012), - [sym_inline_note_reference] = ACTIONS(866), - [sym_html_element] = ACTIONS(866), - [sym__pandoc_line_break] = ACTIONS(866), - }, - [STATE(90)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(432), - [sym__section4] = STATE(432), - [sym__section5] = STATE(432), - [sym__section6] = STATE(432), - [sym__atx_heading3] = STATE(95), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym__section2_repeat1] = STATE(90), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(1066), - [sym_entity_reference] = ACTIONS(866), - [sym_numeric_character_reference] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_BANG_LBRACK] = ACTIONS(872), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(878), - [anon_sym_LBRACE] = ACTIONS(881), - [aux_sym_pandoc_str_token1] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(887), - [sym__whitespace] = ACTIONS(1069), - [sym__line_ending] = ACTIONS(1072), - [sym__soft_line_ending] = ACTIONS(1075), - [sym__block_close] = ACTIONS(899), - [sym__block_quote_start] = ACTIONS(1078), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(1081), - [sym_atx_h4_marker] = ACTIONS(1084), - [sym_atx_h5_marker] = ACTIONS(1087), - [sym_atx_h6_marker] = ACTIONS(1090), - [sym__thematic_break] = ACTIONS(1093), - [sym__list_marker_minus] = ACTIONS(919), - [sym__list_marker_plus] = ACTIONS(922), - [sym__list_marker_star] = ACTIONS(925), - [sym__list_marker_parenthesis] = ACTIONS(928), - [sym__list_marker_dot] = ACTIONS(931), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(919), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(922), - [sym__list_marker_star_dont_interrupt] = ACTIONS(925), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(928), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(931), - [sym__list_marker_example] = ACTIONS(934), - [sym__list_marker_example_dont_interrupt] = ACTIONS(934), - [sym__fenced_code_block_start_backtick] = ACTIONS(1096), - [sym_minus_metadata] = ACTIONS(1099), - [sym__pipe_table_start] = ACTIONS(1102), - [sym__fenced_div_start] = ACTIONS(1105), - [sym_ref_id_specifier] = ACTIONS(1108), - [sym__code_span_start] = ACTIONS(952), - [sym__html_comment] = ACTIONS(866), - [sym__autolink] = ACTIONS(866), - [sym__highlight_span_start] = ACTIONS(955), - [sym__insert_span_start] = ACTIONS(958), - [sym__delete_span_start] = ACTIONS(961), - [sym__edit_comment_span_start] = ACTIONS(964), - [sym__single_quote_span_open] = ACTIONS(967), - [sym__double_quote_span_open] = ACTIONS(970), - [sym__shortcode_open_escaped] = ACTIONS(973), - [sym__shortcode_open] = ACTIONS(976), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(982), - [sym__cite_author_in_text] = ACTIONS(985), - [sym__cite_suppress_author] = ACTIONS(988), - [sym__strikeout_open] = ACTIONS(991), - [sym__subscript_open] = ACTIONS(994), - [sym__superscript_open] = ACTIONS(997), - [sym__inline_note_start_token] = ACTIONS(1000), - [sym__strong_emphasis_open_star] = ACTIONS(1003), - [sym__strong_emphasis_open_underscore] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1009), - [sym__emphasis_open_underscore] = ACTIONS(1012), - [sym_inline_note_reference] = ACTIONS(866), - [sym_html_element] = ACTIONS(866), - [sym__pandoc_line_break] = ACTIONS(866), - }, - [STATE(91)] = { - [sym__block_not_section] = STATE(88), - [sym__section3] = STATE(374), - [sym__section4] = STATE(374), - [sym__section5] = STATE(374), - [sym__section6] = STATE(374), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), - [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(88), - [sym_pandoc_list] = STATE(88), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section2_repeat1] = STATE(88), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), @@ -34611,7 +34569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1111), + [sym_minus_metadata] = ACTIONS(1066), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -34641,14 +34599,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1066), + }, + [STATE(91)] = { + [sym__block_not_section] = STATE(91), + [sym__section3] = STATE(372), + [sym__section4] = STATE(372), + [sym__section5] = STATE(372), + [sym__section6] = STATE(372), + [sym__atx_heading3] = STATE(99), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(91), + [sym_pandoc_list] = STATE(91), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [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(816), + [aux_sym__section2_repeat1] = STATE(91), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(1068), + [sym_entity_reference] = ACTIONS(866), + [sym_numeric_character_reference] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_BANG_LBRACK] = ACTIONS(872), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(881), + [aux_sym_pandoc_str_token1] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(887), + [sym__whitespace] = ACTIONS(1071), + [sym__line_ending] = ACTIONS(1074), + [sym__soft_line_ending] = ACTIONS(1077), + [sym__block_quote_start] = ACTIONS(1080), + [sym_atx_h1_marker] = ACTIONS(899), + [sym_atx_h2_marker] = ACTIONS(899), + [sym_atx_h3_marker] = ACTIONS(1083), + [sym_atx_h4_marker] = ACTIONS(1086), + [sym_atx_h5_marker] = ACTIONS(1089), + [sym_atx_h6_marker] = ACTIONS(1092), + [sym__thematic_break] = ACTIONS(1095), + [sym__list_marker_minus] = ACTIONS(919), + [sym__list_marker_plus] = ACTIONS(922), + [sym__list_marker_star] = ACTIONS(925), + [sym__list_marker_parenthesis] = ACTIONS(928), + [sym__list_marker_dot] = ACTIONS(931), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(919), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(922), + [sym__list_marker_star_dont_interrupt] = ACTIONS(925), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(928), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(931), + [sym__list_marker_example] = ACTIONS(934), + [sym__list_marker_example_dont_interrupt] = ACTIONS(934), + [sym__fenced_code_block_start_backtick] = ACTIONS(1098), + [sym_minus_metadata] = ACTIONS(1101), + [sym__pipe_table_start] = ACTIONS(1104), + [sym__fenced_div_start] = ACTIONS(1107), + [sym_ref_id_specifier] = ACTIONS(1110), + [sym__code_span_start] = ACTIONS(952), + [sym__html_comment] = ACTIONS(866), + [sym__autolink] = ACTIONS(866), + [sym__highlight_span_start] = ACTIONS(955), + [sym__insert_span_start] = ACTIONS(958), + [sym__delete_span_start] = ACTIONS(961), + [sym__edit_comment_span_start] = ACTIONS(964), + [sym__single_quote_span_open] = ACTIONS(967), + [sym__double_quote_span_open] = ACTIONS(970), + [sym__shortcode_open_escaped] = ACTIONS(973), + [sym__shortcode_open] = ACTIONS(976), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(979), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(982), + [sym__cite_author_in_text] = ACTIONS(985), + [sym__cite_suppress_author] = ACTIONS(988), + [sym__strikeout_open] = ACTIONS(991), + [sym__subscript_open] = ACTIONS(994), + [sym__superscript_open] = ACTIONS(997), + [sym__inline_note_start_token] = ACTIONS(1000), + [sym__strong_emphasis_open_star] = ACTIONS(1003), + [sym__strong_emphasis_open_underscore] = ACTIONS(1006), + [sym__emphasis_open_star] = ACTIONS(1009), + [sym__emphasis_open_underscore] = ACTIONS(1012), + [sym_inline_note_reference] = ACTIONS(866), + [sym_html_element] = ACTIONS(866), + [sym__pandoc_line_break] = ACTIONS(866), + [sym_grid_table] = ACTIONS(1101), }, [STATE(92)] = { [sym__block_not_section] = STATE(94), - [sym__section4] = STATE(338), - [sym__section5] = STATE(338), - [sym__section6] = STATE(338), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(94), [sym_pandoc_paragraph] = STATE(94), @@ -34656,64 +34755,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(94), [sym_pipe_table] = STATE(94), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(94), [sym_pandoc_list] = STATE(94), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section3_repeat1] = STATE(94), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34723,18 +34822,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(1113), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(1113), [sym_atx_h2_marker] = ACTIONS(1113), [sym_atx_h3_marker] = ACTIONS(1113), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34747,12 +34846,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(1115), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(1113), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34779,79 +34878,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1115), }, [STATE(93)] = { - [sym__block_not_section] = STATE(92), - [sym__section4] = STATE(338), - [sym__section5] = STATE(338), - [sym__section6] = STATE(338), + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), - [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_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(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(92), - [sym_pandoc_list] = STATE(92), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(93), + [sym_pandoc_list] = STATE(93), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym__section3_repeat1] = STATE(92), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(93), + [sym_pandoc_div] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__newline] = STATE(93), + [sym__soft_line_break] = STATE(93), + [sym__inline_whitespace] = STATE(803), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(144), + [anon_sym_COLON] = ACTIONS(1117), + [sym_entity_reference] = ACTIONS(1120), + [sym_numeric_character_reference] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_BANG_LBRACK] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1135), + [aux_sym_pandoc_str_token1] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1141), + [sym__whitespace] = ACTIONS(1144), + [sym__line_ending] = ACTIONS(1147), + [sym__soft_line_ending] = ACTIONS(1150), + [sym__block_close] = ACTIONS(1153), + [sym__block_quote_start] = ACTIONS(1155), + [sym_atx_h1_marker] = ACTIONS(1153), + [sym_atx_h2_marker] = ACTIONS(1153), + [sym_atx_h3_marker] = ACTIONS(1153), + [sym_atx_h4_marker] = ACTIONS(1158), + [sym_atx_h5_marker] = ACTIONS(1161), + [sym_atx_h6_marker] = ACTIONS(1164), + [sym__thematic_break] = ACTIONS(1167), + [sym__list_marker_minus] = ACTIONS(1170), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1176), + [sym__list_marker_parenthesis] = ACTIONS(1179), + [sym__list_marker_dot] = ACTIONS(1182), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1170), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1176), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1179), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1182), + [sym__list_marker_example] = ACTIONS(1185), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1188), + [sym_minus_metadata] = ACTIONS(1191), + [sym__pipe_table_start] = ACTIONS(1194), + [sym__fenced_div_start] = ACTIONS(1197), + [sym__fenced_div_end] = ACTIONS(1153), + [sym_ref_id_specifier] = ACTIONS(1200), + [sym__code_span_start] = ACTIONS(1203), + [sym__html_comment] = ACTIONS(1120), + [sym__autolink] = ACTIONS(1120), + [sym__highlight_span_start] = ACTIONS(1206), + [sym__insert_span_start] = ACTIONS(1209), + [sym__delete_span_start] = ACTIONS(1212), + [sym__edit_comment_span_start] = ACTIONS(1215), + [sym__single_quote_span_open] = ACTIONS(1218), + [sym__double_quote_span_open] = ACTIONS(1221), + [sym__shortcode_open_escaped] = ACTIONS(1224), + [sym__shortcode_open] = ACTIONS(1227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1230), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1233), + [sym__cite_author_in_text] = ACTIONS(1236), + [sym__cite_suppress_author] = ACTIONS(1239), + [sym__strikeout_open] = ACTIONS(1242), + [sym__subscript_open] = ACTIONS(1245), + [sym__superscript_open] = ACTIONS(1248), + [sym__inline_note_start_token] = ACTIONS(1251), + [sym__strong_emphasis_open_star] = ACTIONS(1254), + [sym__strong_emphasis_open_underscore] = ACTIONS(1257), + [sym__emphasis_open_star] = ACTIONS(1260), + [sym__emphasis_open_underscore] = ACTIONS(1263), + [sym_inline_note_reference] = ACTIONS(1120), + [sym_html_element] = ACTIONS(1120), + [sym__pandoc_line_break] = ACTIONS(1120), + [sym_grid_table] = ACTIONS(1191), + }, + [STATE(94)] = { + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(93), + [sym_pandoc_paragraph] = STATE(93), + [sym_inline_ref_def] = STATE(93), + [sym_caption] = STATE(93), + [sym_pipe_table] = STATE(93), + [sym__inlines] = STATE(3206), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(93), + [sym_pandoc_list] = STATE(93), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(144), + [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(803), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34861,18 +35100,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(1117), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(1117), - [sym_atx_h2_marker] = ACTIONS(1117), - [sym_atx_h3_marker] = ACTIONS(1117), - [sym_atx_h4_marker] = ACTIONS(243), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(1266), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(1266), + [sym_atx_h2_marker] = ACTIONS(1266), + [sym_atx_h3_marker] = ACTIONS(1266), + [sym_atx_h4_marker] = ACTIONS(245), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34885,12 +35124,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(1119), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(1117), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(1268), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(1266), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34917,217 +35156,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(94)] = { - [sym__block_not_section] = STATE(94), - [sym__section4] = STATE(338), - [sym__section5] = STATE(338), - [sym__section6] = STATE(338), - [sym__atx_heading4] = STATE(101), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(94), - [sym_pandoc_paragraph] = STATE(94), - [sym_inline_ref_def] = STATE(94), - [sym_caption] = STATE(94), - [sym_pipe_table] = STATE(94), - [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(94), - [sym_pandoc_list] = STATE(94), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), - [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym__section3_repeat1] = STATE(94), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), - [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(1121), - [sym_entity_reference] = ACTIONS(1124), - [sym_numeric_character_reference] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_BANG_LBRACK] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1139), - [aux_sym_pandoc_str_token1] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1145), - [sym__whitespace] = ACTIONS(1148), - [sym__line_ending] = ACTIONS(1151), - [sym__soft_line_ending] = ACTIONS(1154), - [sym__block_close] = ACTIONS(1157), - [sym__block_quote_start] = ACTIONS(1159), - [sym_atx_h1_marker] = ACTIONS(1157), - [sym_atx_h2_marker] = ACTIONS(1157), - [sym_atx_h3_marker] = ACTIONS(1157), - [sym_atx_h4_marker] = ACTIONS(1162), - [sym_atx_h5_marker] = ACTIONS(1165), - [sym_atx_h6_marker] = ACTIONS(1168), - [sym__thematic_break] = ACTIONS(1171), - [sym__list_marker_minus] = ACTIONS(1174), - [sym__list_marker_plus] = ACTIONS(1177), - [sym__list_marker_star] = ACTIONS(1180), - [sym__list_marker_parenthesis] = ACTIONS(1183), - [sym__list_marker_dot] = ACTIONS(1186), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1174), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1177), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1180), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1183), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1186), - [sym__list_marker_example] = ACTIONS(1189), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1189), - [sym__fenced_code_block_start_backtick] = ACTIONS(1192), - [sym_minus_metadata] = ACTIONS(1195), - [sym__pipe_table_start] = ACTIONS(1198), - [sym__fenced_div_start] = ACTIONS(1201), - [sym__fenced_div_end] = ACTIONS(1157), - [sym_ref_id_specifier] = ACTIONS(1204), - [sym__code_span_start] = ACTIONS(1207), - [sym__html_comment] = ACTIONS(1124), - [sym__autolink] = ACTIONS(1124), - [sym__highlight_span_start] = ACTIONS(1210), - [sym__insert_span_start] = ACTIONS(1213), - [sym__delete_span_start] = ACTIONS(1216), - [sym__edit_comment_span_start] = ACTIONS(1219), - [sym__single_quote_span_open] = ACTIONS(1222), - [sym__double_quote_span_open] = ACTIONS(1225), - [sym__shortcode_open_escaped] = ACTIONS(1228), - [sym__shortcode_open] = ACTIONS(1231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1234), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1237), - [sym__cite_author_in_text] = ACTIONS(1240), - [sym__cite_suppress_author] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1246), - [sym__subscript_open] = ACTIONS(1249), - [sym__superscript_open] = ACTIONS(1252), - [sym__inline_note_start_token] = ACTIONS(1255), - [sym__strong_emphasis_open_star] = ACTIONS(1258), - [sym__strong_emphasis_open_underscore] = ACTIONS(1261), - [sym__emphasis_open_star] = ACTIONS(1264), - [sym__emphasis_open_underscore] = ACTIONS(1267), - [sym_inline_note_reference] = ACTIONS(1124), - [sym_html_element] = ACTIONS(1124), - [sym__pandoc_line_break] = ACTIONS(1124), + [sym_grid_table] = ACTIONS(1268), }, [STATE(95)] = { - [sym__block_not_section] = STATE(99), - [sym__section4] = STATE(434), - [sym__section5] = STATE(434), - [sym__section6] = STATE(434), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [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__block_not_section] = STATE(96), + [sym__section4] = STATE(421), + [sym__section5] = STATE(421), + [sym__section6] = STATE(421), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(99), - [sym_pandoc_list] = STATE(99), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [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(799), - [aux_sym__section3_repeat1] = STATE(99), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(96), + [sym_pandoc_list] = STATE(96), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section3_repeat1] = STATE(96), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35137,18 +35239,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1117), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(1117), - [sym_atx_h2_marker] = ACTIONS(1117), - [sym_atx_h3_marker] = ACTIONS(1117), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1266), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(1266), + [sym_atx_h2_marker] = ACTIONS(1266), + [sym_atx_h3_marker] = ACTIONS(1266), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35161,11 +35263,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(1270), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35192,217 +35294,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1270), }, [STATE(96)] = { [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(381), - [sym__section5] = STATE(381), - [sym__section6] = STATE(381), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), + [sym__section4] = STATE(421), + [sym__section5] = STATE(421), + [sym__section6] = STATE(421), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), [sym__atx_heading6] = STATE(127), [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(96), [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [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(803), + [sym__inline_whitespace] = STATE(810), [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1157), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), [anon_sym_COLON] = ACTIONS(1272), - [sym_entity_reference] = ACTIONS(1124), - [sym_numeric_character_reference] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_BANG_LBRACK] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1139), - [aux_sym_pandoc_str_token1] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1145), + [sym_entity_reference] = ACTIONS(1120), + [sym_numeric_character_reference] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_BANG_LBRACK] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1135), + [aux_sym_pandoc_str_token1] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1141), [sym__whitespace] = ACTIONS(1275), [sym__line_ending] = ACTIONS(1278), [sym__soft_line_ending] = ACTIONS(1281), + [sym__block_close] = ACTIONS(1153), [sym__block_quote_start] = ACTIONS(1284), - [sym_atx_h1_marker] = ACTIONS(1157), - [sym_atx_h2_marker] = ACTIONS(1157), - [sym_atx_h3_marker] = ACTIONS(1157), + [sym_atx_h1_marker] = ACTIONS(1153), + [sym_atx_h2_marker] = ACTIONS(1153), + [sym_atx_h3_marker] = ACTIONS(1153), [sym_atx_h4_marker] = ACTIONS(1287), [sym_atx_h5_marker] = ACTIONS(1290), [sym_atx_h6_marker] = ACTIONS(1293), [sym__thematic_break] = ACTIONS(1296), - [sym__list_marker_minus] = ACTIONS(1174), - [sym__list_marker_plus] = ACTIONS(1177), - [sym__list_marker_star] = ACTIONS(1180), - [sym__list_marker_parenthesis] = ACTIONS(1183), - [sym__list_marker_dot] = ACTIONS(1186), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1174), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1177), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1180), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1183), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1186), - [sym__list_marker_example] = ACTIONS(1189), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_minus] = ACTIONS(1170), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1176), + [sym__list_marker_parenthesis] = ACTIONS(1179), + [sym__list_marker_dot] = ACTIONS(1182), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1170), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1176), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1179), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1182), + [sym__list_marker_example] = ACTIONS(1185), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1185), [sym__fenced_code_block_start_backtick] = ACTIONS(1299), [sym_minus_metadata] = ACTIONS(1302), [sym__pipe_table_start] = ACTIONS(1305), [sym__fenced_div_start] = ACTIONS(1308), [sym_ref_id_specifier] = ACTIONS(1311), - [sym__code_span_start] = ACTIONS(1207), - [sym__html_comment] = ACTIONS(1124), - [sym__autolink] = ACTIONS(1124), - [sym__highlight_span_start] = ACTIONS(1210), - [sym__insert_span_start] = ACTIONS(1213), - [sym__delete_span_start] = ACTIONS(1216), - [sym__edit_comment_span_start] = ACTIONS(1219), - [sym__single_quote_span_open] = ACTIONS(1222), - [sym__double_quote_span_open] = ACTIONS(1225), - [sym__shortcode_open_escaped] = ACTIONS(1228), - [sym__shortcode_open] = ACTIONS(1231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1234), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1237), - [sym__cite_author_in_text] = ACTIONS(1240), - [sym__cite_suppress_author] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1246), - [sym__subscript_open] = ACTIONS(1249), - [sym__superscript_open] = ACTIONS(1252), - [sym__inline_note_start_token] = ACTIONS(1255), - [sym__strong_emphasis_open_star] = ACTIONS(1258), - [sym__strong_emphasis_open_underscore] = ACTIONS(1261), - [sym__emphasis_open_star] = ACTIONS(1264), - [sym__emphasis_open_underscore] = ACTIONS(1267), - [sym_inline_note_reference] = ACTIONS(1124), - [sym_html_element] = ACTIONS(1124), - [sym__pandoc_line_break] = ACTIONS(1124), + [sym__code_span_start] = ACTIONS(1203), + [sym__html_comment] = ACTIONS(1120), + [sym__autolink] = ACTIONS(1120), + [sym__highlight_span_start] = ACTIONS(1206), + [sym__insert_span_start] = ACTIONS(1209), + [sym__delete_span_start] = ACTIONS(1212), + [sym__edit_comment_span_start] = ACTIONS(1215), + [sym__single_quote_span_open] = ACTIONS(1218), + [sym__double_quote_span_open] = ACTIONS(1221), + [sym__shortcode_open_escaped] = ACTIONS(1224), + [sym__shortcode_open] = ACTIONS(1227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1230), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1233), + [sym__cite_author_in_text] = ACTIONS(1236), + [sym__cite_suppress_author] = ACTIONS(1239), + [sym__strikeout_open] = ACTIONS(1242), + [sym__subscript_open] = ACTIONS(1245), + [sym__superscript_open] = ACTIONS(1248), + [sym__inline_note_start_token] = ACTIONS(1251), + [sym__strong_emphasis_open_star] = ACTIONS(1254), + [sym__strong_emphasis_open_underscore] = ACTIONS(1257), + [sym__emphasis_open_star] = ACTIONS(1260), + [sym__emphasis_open_underscore] = ACTIONS(1263), + [sym_inline_note_reference] = ACTIONS(1120), + [sym_html_element] = ACTIONS(1120), + [sym__pandoc_line_break] = ACTIONS(1120), + [sym_grid_table] = ACTIONS(1302), }, [STATE(97)] = { - [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(381), - [sym__section5] = STATE(381), - [sym__section6] = STATE(381), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(118), + [sym__block_not_section] = STATE(95), + [sym__section4] = STATE(421), + [sym__section5] = STATE(421), + [sym__section6] = STATE(421), + [sym__atx_heading4] = STATE(106), + [sym__atx_heading5] = STATE(114), [sym__atx_heading6] = STATE(127), - [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(96), - [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1113), - [anon_sym_COLON] = ACTIONS(5), + [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), + [sym_pandoc_block_quote] = STATE(95), + [sym_pandoc_list] = STATE(95), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section3_repeat1] = STATE(95), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35412,17 +35515,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1113), + [sym__block_quote_start] = ACTIONS(123), [sym_atx_h1_marker] = ACTIONS(1113), [sym_atx_h2_marker] = ACTIONS(1113), [sym_atx_h3_marker] = ACTIONS(1113), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym_atx_h4_marker] = ACTIONS(131), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35435,11 +35539,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(1314), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35466,216 +35570,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1314), }, [STATE(98)] = { - [sym__block_not_section] = STATE(98), - [sym__section4] = STATE(434), - [sym__section5] = STATE(434), - [sym__section6] = STATE(434), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(98), - [sym_pandoc_list] = STATE(98), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section3_repeat1] = STATE(98), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(1316), - [sym_entity_reference] = ACTIONS(1124), - [sym_numeric_character_reference] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_BANG_LBRACK] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1139), - [aux_sym_pandoc_str_token1] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1145), - [sym__whitespace] = ACTIONS(1319), - [sym__line_ending] = ACTIONS(1322), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_close] = ACTIONS(1157), - [sym__block_quote_start] = ACTIONS(1328), - [sym_atx_h1_marker] = ACTIONS(1157), - [sym_atx_h2_marker] = ACTIONS(1157), - [sym_atx_h3_marker] = ACTIONS(1157), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1334), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1340), - [sym__list_marker_minus] = ACTIONS(1174), - [sym__list_marker_plus] = ACTIONS(1177), - [sym__list_marker_star] = ACTIONS(1180), - [sym__list_marker_parenthesis] = ACTIONS(1183), - [sym__list_marker_dot] = ACTIONS(1186), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1174), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1177), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1180), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1183), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1186), - [sym__list_marker_example] = ACTIONS(1189), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1189), - [sym__fenced_code_block_start_backtick] = ACTIONS(1343), - [sym_minus_metadata] = ACTIONS(1346), - [sym__pipe_table_start] = ACTIONS(1349), - [sym__fenced_div_start] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1355), - [sym__code_span_start] = ACTIONS(1207), - [sym__html_comment] = ACTIONS(1124), - [sym__autolink] = ACTIONS(1124), - [sym__highlight_span_start] = ACTIONS(1210), - [sym__insert_span_start] = ACTIONS(1213), - [sym__delete_span_start] = ACTIONS(1216), - [sym__edit_comment_span_start] = ACTIONS(1219), - [sym__single_quote_span_open] = ACTIONS(1222), - [sym__double_quote_span_open] = ACTIONS(1225), - [sym__shortcode_open_escaped] = ACTIONS(1228), - [sym__shortcode_open] = ACTIONS(1231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1234), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1237), - [sym__cite_author_in_text] = ACTIONS(1240), - [sym__cite_suppress_author] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1246), - [sym__subscript_open] = ACTIONS(1249), - [sym__superscript_open] = ACTIONS(1252), - [sym__inline_note_start_token] = ACTIONS(1255), - [sym__strong_emphasis_open_star] = ACTIONS(1258), - [sym__strong_emphasis_open_underscore] = ACTIONS(1261), - [sym__emphasis_open_star] = ACTIONS(1264), - [sym__emphasis_open_underscore] = ACTIONS(1267), - [sym_inline_note_reference] = ACTIONS(1124), - [sym_html_element] = ACTIONS(1124), - [sym__pandoc_line_break] = ACTIONS(1124), - }, - [STATE(99)] = { - [sym__block_not_section] = STATE(98), - [sym__section4] = STATE(434), - [sym__section5] = STATE(434), - [sym__section6] = STATE(434), + [sym__block_not_section] = STATE(100), + [sym__section4] = STATE(378), + [sym__section5] = STATE(378), + [sym__section6] = STATE(378), [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(98), - [sym_pandoc_list] = STATE(98), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section3_repeat1] = STATE(98), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(100), + [sym_pandoc_list] = STATE(100), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [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(816), + [aux_sym__section3_repeat1] = STATE(100), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1266), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35685,18 +35654,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1113), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(1113), - [sym_atx_h2_marker] = ACTIONS(1113), - [sym_atx_h3_marker] = ACTIONS(1113), - [sym_atx_h4_marker] = ACTIONS(129), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1266), + [sym_atx_h2_marker] = ACTIONS(1266), + [sym_atx_h3_marker] = ACTIONS(1266), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35709,11 +35677,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(1358), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(1316), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35740,79 +35708,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1316), }, - [STATE(100)] = { - [sym__block_not_section] = STATE(97), - [sym__section4] = STATE(381), - [sym__section5] = STATE(381), - [sym__section6] = STATE(381), - [sym__atx_heading4] = STATE(104), + [STATE(99)] = { + [sym__block_not_section] = STATE(98), + [sym__section4] = STATE(378), + [sym__section5] = STATE(378), + [sym__section6] = STATE(378), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(97), - [sym_pandoc_paragraph] = STATE(97), - [sym_inline_ref_def] = STATE(97), - [sym_caption] = STATE(97), - [sym_pipe_table] = STATE(97), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(98), + [sym_pandoc_paragraph] = STATE(98), + [sym_inline_ref_def] = STATE(98), + [sym_caption] = STATE(98), + [sym_pipe_table] = STATE(98), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(97), - [sym_pandoc_list] = STATE(97), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(98), + [sym_pandoc_list] = STATE(98), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section3_repeat1] = STATE(97), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [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(816), + [aux_sym__section3_repeat1] = STATE(98), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1117), + [ts_builtin_sym_end] = ACTIONS(1113), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -35827,9 +35796,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1117), - [sym_atx_h2_marker] = ACTIONS(1117), - [sym_atx_h3_marker] = ACTIONS(1117), + [sym_atx_h1_marker] = ACTIONS(1113), + [sym_atx_h2_marker] = ACTIONS(1113), + [sym_atx_h3_marker] = ACTIONS(1113), [sym_atx_h4_marker] = ACTIONS(37), [sym_atx_h5_marker] = ACTIONS(39), [sym_atx_h6_marker] = ACTIONS(41), @@ -35847,7 +35816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1318), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -35877,12 +35846,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1318), + }, + [STATE(100)] = { + [sym__block_not_section] = STATE(100), + [sym__section4] = STATE(378), + [sym__section5] = STATE(378), + [sym__section6] = STATE(378), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(100), + [sym_pandoc_list] = STATE(100), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [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(816), + [aux_sym__section3_repeat1] = STATE(100), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1153), + [anon_sym_COLON] = ACTIONS(1320), + [sym_entity_reference] = ACTIONS(1120), + [sym_numeric_character_reference] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_BANG_LBRACK] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1135), + [aux_sym_pandoc_str_token1] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1141), + [sym__whitespace] = ACTIONS(1323), + [sym__line_ending] = ACTIONS(1326), + [sym__soft_line_ending] = ACTIONS(1329), + [sym__block_quote_start] = ACTIONS(1332), + [sym_atx_h1_marker] = ACTIONS(1153), + [sym_atx_h2_marker] = ACTIONS(1153), + [sym_atx_h3_marker] = ACTIONS(1153), + [sym_atx_h4_marker] = ACTIONS(1335), + [sym_atx_h5_marker] = ACTIONS(1338), + [sym_atx_h6_marker] = ACTIONS(1341), + [sym__thematic_break] = ACTIONS(1344), + [sym__list_marker_minus] = ACTIONS(1170), + [sym__list_marker_plus] = ACTIONS(1173), + [sym__list_marker_star] = ACTIONS(1176), + [sym__list_marker_parenthesis] = ACTIONS(1179), + [sym__list_marker_dot] = ACTIONS(1182), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1170), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1173), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1176), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1179), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1182), + [sym__list_marker_example] = ACTIONS(1185), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1347), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1353), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1359), + [sym__code_span_start] = ACTIONS(1203), + [sym__html_comment] = ACTIONS(1120), + [sym__autolink] = ACTIONS(1120), + [sym__highlight_span_start] = ACTIONS(1206), + [sym__insert_span_start] = ACTIONS(1209), + [sym__delete_span_start] = ACTIONS(1212), + [sym__edit_comment_span_start] = ACTIONS(1215), + [sym__single_quote_span_open] = ACTIONS(1218), + [sym__double_quote_span_open] = ACTIONS(1221), + [sym__shortcode_open_escaped] = ACTIONS(1224), + [sym__shortcode_open] = ACTIONS(1227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1230), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1233), + [sym__cite_author_in_text] = ACTIONS(1236), + [sym__cite_suppress_author] = ACTIONS(1239), + [sym__strikeout_open] = ACTIONS(1242), + [sym__subscript_open] = ACTIONS(1245), + [sym__superscript_open] = ACTIONS(1248), + [sym__inline_note_start_token] = ACTIONS(1251), + [sym__strong_emphasis_open_star] = ACTIONS(1254), + [sym__strong_emphasis_open_underscore] = ACTIONS(1257), + [sym__emphasis_open_star] = ACTIONS(1260), + [sym__emphasis_open_underscore] = ACTIONS(1263), + [sym_inline_note_reference] = ACTIONS(1120), + [sym_html_element] = ACTIONS(1120), + [sym__pandoc_line_break] = ACTIONS(1120), + [sym_grid_table] = ACTIONS(1350), }, [STATE(101)] = { [sym__block_not_section] = STATE(102), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), - [sym__atx_heading5] = STATE(112), + [sym__section5] = STATE(281), + [sym__section6] = STATE(281), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(102), [sym_pandoc_paragraph] = STATE(102), @@ -35890,64 +35998,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(102), [sym_pipe_table] = STATE(102), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(102), [sym_pandoc_list] = STATE(102), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section4_repeat1] = STATE(102), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35957,18 +36065,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(1362), [sym_atx_h2_marker] = ACTIONS(1362), [sym_atx_h3_marker] = ACTIONS(1362), [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35981,12 +36089,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(1364), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(1362), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36013,12 +36121,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1364), }, [STATE(102)] = { [sym__block_not_section] = STATE(103), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), - [sym__atx_heading5] = STATE(112), + [sym__section5] = STATE(281), + [sym__section6] = STATE(281), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(103), [sym_pandoc_paragraph] = STATE(103), @@ -36026,64 +36135,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(103), [sym_pipe_table] = STATE(103), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(103), [sym_pandoc_list] = STATE(103), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section4_repeat1] = STATE(103), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36093,18 +36202,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(1366), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(1366), [sym_atx_h2_marker] = ACTIONS(1366), [sym_atx_h3_marker] = ACTIONS(1366), [sym_atx_h4_marker] = ACTIONS(1366), - [sym_atx_h5_marker] = ACTIONS(245), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym_atx_h5_marker] = ACTIONS(247), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -36117,12 +36226,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(1368), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(1366), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36149,12 +36258,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1368), }, [STATE(103)] = { [sym__block_not_section] = STATE(103), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), - [sym__atx_heading5] = STATE(112), + [sym__section5] = STATE(281), + [sym__section6] = STATE(281), + [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(103), [sym_pandoc_paragraph] = STATE(103), @@ -36162,62 +36272,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_caption] = STATE(103), [sym_pipe_table] = STATE(103), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(103), [sym_pandoc_list] = STATE(103), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), [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(814), + [sym__inline_whitespace] = STATE(803), [aux_sym__section4_repeat1] = STATE(103), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), [anon_sym_COLON] = ACTIONS(1370), [sym_entity_reference] = ACTIONS(1373), @@ -36285,78 +36395,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(1373), [sym_html_element] = ACTIONS(1373), [sym__pandoc_line_break] = ACTIONS(1373), + [sym_grid_table] = ACTIONS(1441), }, [STATE(104)] = { - [sym__block_not_section] = STATE(107), - [sym__section5] = STATE(385), - [sym__section6] = STATE(385), + [sym__block_not_section] = STATE(104), + [sym__section5] = STATE(381), + [sym__section6] = STATE(381), [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(126), + [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(3153), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(104), + [sym_pandoc_list] = STATE(104), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [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(816), + [aux_sym__section4_repeat1] = STATE(104), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1516), + [sym_entity_reference] = ACTIONS(1373), + [sym_numeric_character_reference] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_BANG_LBRACK] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1388), + [aux_sym_pandoc_str_token1] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1394), + [sym__whitespace] = ACTIONS(1519), + [sym__line_ending] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1525), + [sym__block_quote_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1406), + [sym_atx_h2_marker] = ACTIONS(1406), + [sym_atx_h3_marker] = ACTIONS(1406), + [sym_atx_h4_marker] = ACTIONS(1406), + [sym_atx_h5_marker] = ACTIONS(1531), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1537), + [sym__list_marker_minus] = ACTIONS(1420), + [sym__list_marker_plus] = ACTIONS(1423), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1429), + [sym__list_marker_dot] = ACTIONS(1432), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1423), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1429), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1435), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1435), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1543), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1549), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__code_span_start] = ACTIONS(1453), + [sym__html_comment] = ACTIONS(1373), + [sym__autolink] = ACTIONS(1373), + [sym__highlight_span_start] = ACTIONS(1456), + [sym__insert_span_start] = ACTIONS(1459), + [sym__delete_span_start] = ACTIONS(1462), + [sym__edit_comment_span_start] = ACTIONS(1465), + [sym__single_quote_span_open] = ACTIONS(1468), + [sym__double_quote_span_open] = ACTIONS(1471), + [sym__shortcode_open_escaped] = ACTIONS(1474), + [sym__shortcode_open] = ACTIONS(1477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1480), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1483), + [sym__cite_author_in_text] = ACTIONS(1486), + [sym__cite_suppress_author] = ACTIONS(1489), + [sym__strikeout_open] = ACTIONS(1492), + [sym__subscript_open] = ACTIONS(1495), + [sym__superscript_open] = ACTIONS(1498), + [sym__inline_note_start_token] = ACTIONS(1501), + [sym__strong_emphasis_open_star] = ACTIONS(1504), + [sym__strong_emphasis_open_underscore] = ACTIONS(1507), + [sym__emphasis_open_star] = ACTIONS(1510), + [sym__emphasis_open_underscore] = ACTIONS(1513), + [sym_inline_note_reference] = ACTIONS(1373), + [sym_html_element] = ACTIONS(1373), + [sym__pandoc_line_break] = ACTIONS(1373), + [sym_grid_table] = ACTIONS(1543), + }, + [STATE(105)] = { + [sym__block_not_section] = STATE(107), + [sym__section5] = STATE(422), + [sym__section6] = STATE(422), + [sym__atx_heading5] = STATE(114), [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(107), [sym_pandoc_paragraph] = STATE(107), [sym_inline_ref_def] = STATE(107), [sym_caption] = STATE(107), [sym_pipe_table] = STATE(107), - [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(107), [sym_pandoc_list] = STATE(107), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [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(803), + [sym__inline_whitespace] = STATE(810), [aux_sym__section4_repeat1] = STATE(107), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1362), - [anon_sym_COLON] = ACTIONS(5), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36366,17 +36612,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1362), - [sym_atx_h2_marker] = ACTIONS(1362), - [sym_atx_h3_marker] = ACTIONS(1362), - [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1366), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -36389,11 +36636,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1516), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(1555), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36420,77 +36667,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1555), }, - [STATE(105)] = { - [sym__block_not_section] = STATE(106), - [sym__section5] = STATE(436), - [sym__section6] = STATE(436), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [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), + [STATE(106)] = { + [sym__block_not_section] = STATE(105), + [sym__section5] = STATE(422), + [sym__section6] = STATE(422), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(105), + [sym_pandoc_paragraph] = STATE(105), + [sym_inline_ref_def] = STATE(105), + [sym_caption] = STATE(105), + [sym_pipe_table] = STATE(105), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(106), - [sym_pandoc_list] = STATE(106), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section4_repeat1] = STATE(106), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(105), + [sym_pandoc_list] = STATE(105), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section4_repeat1] = STATE(105), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36500,18 +36748,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1366), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(1366), - [sym_atx_h2_marker] = ACTIONS(1366), - [sym_atx_h3_marker] = ACTIONS(1366), - [sym_atx_h4_marker] = ACTIONS(1366), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1362), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(133), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -36524,11 +36772,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(1518), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(1557), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36555,77 +36803,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1557), }, - [STATE(106)] = { - [sym__block_not_section] = STATE(106), - [sym__section5] = STATE(436), - [sym__section6] = STATE(436), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [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), + [STATE(107)] = { + [sym__block_not_section] = STATE(107), + [sym__section5] = STATE(422), + [sym__section6] = STATE(422), + [sym__atx_heading5] = STATE(114), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(107), + [sym_pandoc_paragraph] = STATE(107), + [sym_inline_ref_def] = STATE(107), + [sym_caption] = STATE(107), + [sym_pipe_table] = STATE(107), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(106), - [sym_pandoc_list] = STATE(106), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section4_repeat1] = STATE(106), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(1520), + [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), + [sym_pandoc_block_quote] = STATE(107), + [sym_pandoc_list] = STATE(107), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section4_repeat1] = STATE(107), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(1559), [sym_entity_reference] = ACTIONS(1373), [sym_numeric_character_reference] = ACTIONS(1373), [anon_sym_LBRACK] = ACTIONS(1376), @@ -36635,18 +36884,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1388), [aux_sym_pandoc_str_token1] = ACTIONS(1391), [anon_sym_PIPE] = ACTIONS(1394), - [sym__whitespace] = ACTIONS(1523), - [sym__line_ending] = ACTIONS(1526), - [sym__soft_line_ending] = ACTIONS(1529), + [sym__whitespace] = ACTIONS(1562), + [sym__line_ending] = ACTIONS(1565), + [sym__soft_line_ending] = ACTIONS(1568), [sym__block_close] = ACTIONS(1406), - [sym__block_quote_start] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1571), [sym_atx_h1_marker] = ACTIONS(1406), [sym_atx_h2_marker] = ACTIONS(1406), [sym_atx_h3_marker] = ACTIONS(1406), [sym_atx_h4_marker] = ACTIONS(1406), - [sym_atx_h5_marker] = ACTIONS(1535), - [sym_atx_h6_marker] = ACTIONS(1538), - [sym__thematic_break] = ACTIONS(1541), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1577), + [sym__thematic_break] = ACTIONS(1580), [sym__list_marker_minus] = ACTIONS(1420), [sym__list_marker_plus] = ACTIONS(1423), [sym__list_marker_star] = ACTIONS(1426), @@ -36659,11 +36908,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), [sym__list_marker_example] = ACTIONS(1435), [sym__list_marker_example_dont_interrupt] = ACTIONS(1435), - [sym__fenced_code_block_start_backtick] = ACTIONS(1544), - [sym_minus_metadata] = ACTIONS(1547), - [sym__pipe_table_start] = ACTIONS(1550), - [sym__fenced_div_start] = ACTIONS(1553), - [sym_ref_id_specifier] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1583), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1589), + [sym__fenced_div_start] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1595), [sym__code_span_start] = ACTIONS(1453), [sym__html_comment] = ACTIONS(1373), [sym__autolink] = ACTIONS(1373), @@ -36690,73 +36939,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(1373), [sym_html_element] = ACTIONS(1373), [sym__pandoc_line_break] = ACTIONS(1373), + [sym_grid_table] = ACTIONS(1586), }, - [STATE(107)] = { - [sym__block_not_section] = STATE(108), - [sym__section5] = STATE(385), - [sym__section6] = STATE(385), + [STATE(108)] = { + [sym__block_not_section] = STATE(104), + [sym__section5] = STATE(381), + [sym__section6] = STATE(381), [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__atx_heading6] = STATE(126), + [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(108), - [sym_pandoc_list] = STATE(108), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(104), + [sym_pandoc_list] = STATE(104), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section4_repeat1] = STATE(108), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [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(816), + [aux_sym__section4_repeat1] = STATE(104), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), @@ -36795,7 +37045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1559), + [sym_minus_metadata] = ACTIONS(1598), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -36825,60 +37075,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1598), }, - [STATE(108)] = { + [STATE(109)] = { [sym__block_not_section] = STATE(108), - [sym__section5] = STATE(385), - [sym__section6] = STATE(385), + [sym__section5] = STATE(381), + [sym__section6] = STATE(381), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(127), + [sym__atx_heading6] = STATE(126), [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(108), [sym_pandoc_list] = STATE(108), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), @@ -36887,150 +37138,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(108), [sym__newline] = STATE(108), [sym__soft_line_break] = STATE(108), - [sym__inline_whitespace] = STATE(803), + [sym__inline_whitespace] = STATE(816), [aux_sym__section4_repeat1] = STATE(108), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1406), - [anon_sym_COLON] = ACTIONS(1561), - [sym_entity_reference] = ACTIONS(1373), - [sym_numeric_character_reference] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_BANG_LBRACK] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1388), - [aux_sym_pandoc_str_token1] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1394), - [sym__whitespace] = ACTIONS(1564), - [sym__line_ending] = ACTIONS(1567), - [sym__soft_line_ending] = ACTIONS(1570), - [sym__block_quote_start] = ACTIONS(1573), - [sym_atx_h1_marker] = ACTIONS(1406), - [sym_atx_h2_marker] = ACTIONS(1406), - [sym_atx_h3_marker] = ACTIONS(1406), - [sym_atx_h4_marker] = ACTIONS(1406), - [sym_atx_h5_marker] = ACTIONS(1576), - [sym_atx_h6_marker] = ACTIONS(1579), - [sym__thematic_break] = ACTIONS(1582), - [sym__list_marker_minus] = ACTIONS(1420), - [sym__list_marker_plus] = ACTIONS(1423), - [sym__list_marker_star] = ACTIONS(1426), - [sym__list_marker_parenthesis] = ACTIONS(1429), - [sym__list_marker_dot] = ACTIONS(1432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), - [sym__list_marker_example] = ACTIONS(1435), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1435), - [sym__fenced_code_block_start_backtick] = ACTIONS(1585), - [sym_minus_metadata] = ACTIONS(1588), - [sym__pipe_table_start] = ACTIONS(1591), - [sym__fenced_div_start] = ACTIONS(1594), - [sym_ref_id_specifier] = ACTIONS(1597), - [sym__code_span_start] = ACTIONS(1453), - [sym__html_comment] = ACTIONS(1373), - [sym__autolink] = ACTIONS(1373), - [sym__highlight_span_start] = ACTIONS(1456), - [sym__insert_span_start] = ACTIONS(1459), - [sym__delete_span_start] = ACTIONS(1462), - [sym__edit_comment_span_start] = ACTIONS(1465), - [sym__single_quote_span_open] = ACTIONS(1468), - [sym__double_quote_span_open] = ACTIONS(1471), - [sym__shortcode_open_escaped] = ACTIONS(1474), - [sym__shortcode_open] = ACTIONS(1477), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1480), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1483), - [sym__cite_author_in_text] = ACTIONS(1486), - [sym__cite_suppress_author] = ACTIONS(1489), - [sym__strikeout_open] = ACTIONS(1492), - [sym__subscript_open] = ACTIONS(1495), - [sym__superscript_open] = ACTIONS(1498), - [sym__inline_note_start_token] = ACTIONS(1501), - [sym__strong_emphasis_open_star] = ACTIONS(1504), - [sym__strong_emphasis_open_underscore] = ACTIONS(1507), - [sym__emphasis_open_star] = ACTIONS(1510), - [sym__emphasis_open_underscore] = ACTIONS(1513), - [sym_inline_note_reference] = ACTIONS(1373), - [sym_html_element] = ACTIONS(1373), - [sym__pandoc_line_break] = ACTIONS(1373), - }, - [STATE(109)] = { - [sym__block_not_section] = STATE(105), - [sym__section5] = STATE(436), - [sym__section6] = STATE(436), - [sym__atx_heading5] = STATE(115), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(105), - [sym_pandoc_paragraph] = STATE(105), - [sym_inline_ref_def] = STATE(105), - [sym_caption] = STATE(105), - [sym_pipe_table] = STATE(105), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(105), - [sym_pandoc_list] = STATE(105), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section4_repeat1] = STATE(105), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37040,18 +37157,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(121), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), [sym_atx_h1_marker] = ACTIONS(1362), [sym_atx_h2_marker] = ACTIONS(1362), [sym_atx_h3_marker] = ACTIONS(1362), [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(131), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37064,11 +37180,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), [sym_minus_metadata] = ACTIONS(1600), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37095,209 +37211,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1600), }, [STATE(110)] = { - [sym__block_not_section] = STATE(110), - [sym__section6] = STATE(352), + [sym__block_not_section] = STATE(112), + [sym__section6] = STATE(284), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(110), - [sym_pandoc_paragraph] = STATE(110), - [sym_inline_ref_def] = STATE(110), - [sym_caption] = STATE(110), - [sym_pipe_table] = STATE(110), + [sym_pandoc_horizontal_rule] = STATE(112), + [sym_pandoc_paragraph] = STATE(112), + [sym_inline_ref_def] = STATE(112), + [sym_caption] = STATE(112), + [sym_pipe_table] = STATE(112), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(110), - [sym_pandoc_list] = STATE(110), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(112), + [sym_pandoc_list] = STATE(112), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(110), - [sym_pandoc_div] = STATE(110), - [sym_note_definition_fenced_block] = STATE(110), - [sym__newline] = STATE(110), - [sym__soft_line_break] = STATE(110), - [sym__inline_whitespace] = STATE(814), - [aux_sym__section5_repeat1] = STATE(110), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), - [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(1602), - [sym_entity_reference] = ACTIONS(1605), - [sym_numeric_character_reference] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_BANG_LBRACK] = ACTIONS(1611), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1620), - [aux_sym_pandoc_str_token1] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1626), - [sym__whitespace] = ACTIONS(1629), - [sym__line_ending] = ACTIONS(1632), - [sym__soft_line_ending] = ACTIONS(1635), - [sym__block_close] = ACTIONS(1638), - [sym__block_quote_start] = ACTIONS(1640), - [sym_atx_h1_marker] = ACTIONS(1638), - [sym_atx_h2_marker] = ACTIONS(1638), - [sym_atx_h3_marker] = ACTIONS(1638), - [sym_atx_h4_marker] = ACTIONS(1638), - [sym_atx_h5_marker] = ACTIONS(1638), - [sym_atx_h6_marker] = ACTIONS(1643), - [sym__thematic_break] = ACTIONS(1646), - [sym__list_marker_minus] = ACTIONS(1649), - [sym__list_marker_plus] = ACTIONS(1652), - [sym__list_marker_star] = ACTIONS(1655), - [sym__list_marker_parenthesis] = ACTIONS(1658), - [sym__list_marker_dot] = ACTIONS(1661), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1649), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1655), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1661), - [sym__list_marker_example] = ACTIONS(1664), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1664), - [sym__fenced_code_block_start_backtick] = ACTIONS(1667), - [sym_minus_metadata] = ACTIONS(1670), - [sym__pipe_table_start] = ACTIONS(1673), - [sym__fenced_div_start] = ACTIONS(1676), - [sym__fenced_div_end] = ACTIONS(1638), - [sym_ref_id_specifier] = ACTIONS(1679), - [sym__code_span_start] = ACTIONS(1682), - [sym__html_comment] = ACTIONS(1605), - [sym__autolink] = ACTIONS(1605), - [sym__highlight_span_start] = ACTIONS(1685), - [sym__insert_span_start] = ACTIONS(1688), - [sym__delete_span_start] = ACTIONS(1691), - [sym__edit_comment_span_start] = ACTIONS(1694), - [sym__single_quote_span_open] = ACTIONS(1697), - [sym__double_quote_span_open] = ACTIONS(1700), - [sym__shortcode_open_escaped] = ACTIONS(1703), - [sym__shortcode_open] = ACTIONS(1706), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1712), - [sym__cite_author_in_text] = ACTIONS(1715), - [sym__cite_suppress_author] = ACTIONS(1718), - [sym__strikeout_open] = ACTIONS(1721), - [sym__subscript_open] = ACTIONS(1724), - [sym__superscript_open] = ACTIONS(1727), - [sym__inline_note_start_token] = ACTIONS(1730), - [sym__strong_emphasis_open_star] = ACTIONS(1733), - [sym__strong_emphasis_open_underscore] = ACTIONS(1736), - [sym__emphasis_open_star] = ACTIONS(1739), - [sym__emphasis_open_underscore] = ACTIONS(1742), - [sym_inline_note_reference] = ACTIONS(1605), - [sym_html_element] = ACTIONS(1605), - [sym__pandoc_line_break] = ACTIONS(1605), - }, - [STATE(111)] = { - [sym__block_not_section] = STATE(110), - [sym__section6] = STATE(352), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(110), - [sym_pandoc_paragraph] = STATE(110), - [sym_inline_ref_def] = STATE(110), - [sym_caption] = STATE(110), - [sym_pipe_table] = STATE(110), - [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(110), - [sym_pandoc_list] = STATE(110), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), - [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(110), - [sym_pandoc_div] = STATE(110), - [sym_note_definition_fenced_block] = STATE(110), - [sym__newline] = STATE(110), - [sym__soft_line_break] = STATE(110), - [sym__inline_whitespace] = STATE(814), - [aux_sym__section5_repeat1] = STATE(110), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(112), + [sym_pandoc_div] = STATE(112), + [sym_note_definition_fenced_block] = STATE(112), + [sym__newline] = STATE(112), + [sym__soft_line_break] = STATE(112), + [sym__inline_whitespace] = STATE(803), + [aux_sym__section5_repeat1] = STATE(112), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37307,18 +37290,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(1745), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(1745), - [sym_atx_h2_marker] = ACTIONS(1745), - [sym_atx_h3_marker] = ACTIONS(1745), - [sym_atx_h4_marker] = ACTIONS(1745), - [sym_atx_h5_marker] = ACTIONS(1745), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37331,12 +37314,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(1747), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(1745), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37363,75 +37346,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1604), }, - [STATE(112)] = { - [sym__block_not_section] = STATE(111), - [sym__section6] = STATE(352), + [STATE(111)] = { + [sym__block_not_section] = STATE(110), + [sym__section6] = STATE(284), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(111), - [sym_pandoc_paragraph] = STATE(111), - [sym_inline_ref_def] = STATE(111), - [sym_caption] = STATE(111), - [sym_pipe_table] = STATE(111), + [sym_pandoc_horizontal_rule] = STATE(110), + [sym_pandoc_paragraph] = STATE(110), + [sym_inline_ref_def] = STATE(110), + [sym_caption] = STATE(110), + [sym_pipe_table] = STATE(110), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(111), - [sym_pandoc_list] = STATE(111), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(110), + [sym_pandoc_list] = STATE(110), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [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(814), - [aux_sym__section5_repeat1] = STATE(111), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [sym_pandoc_code_block] = STATE(110), + [sym_pandoc_div] = STATE(110), + [sym_note_definition_fenced_block] = STATE(110), + [sym__newline] = STATE(110), + [sym__soft_line_break] = STATE(110), + [sym__inline_whitespace] = STATE(803), + [aux_sym__section5_repeat1] = STATE(110), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37441,18 +37425,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), - [sym__block_close] = ACTIONS(1749), - [sym__block_quote_start] = ACTIONS(235), - [sym_atx_h1_marker] = ACTIONS(1749), - [sym_atx_h2_marker] = ACTIONS(1749), - [sym_atx_h3_marker] = ACTIONS(1749), - [sym_atx_h4_marker] = ACTIONS(1749), - [sym_atx_h5_marker] = ACTIONS(1749), - [sym_atx_h6_marker] = ACTIONS(247), - [sym__thematic_break] = ACTIONS(249), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), + [sym__block_close] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(237), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37465,12 +37449,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), - [sym_minus_metadata] = ACTIONS(1751), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), - [sym__fenced_div_end] = ACTIONS(1749), - [sym_ref_id_specifier] = ACTIONS(261), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), + [sym__fenced_div_end] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37497,208 +37481,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1608), }, - [STATE(113)] = { - [sym__block_not_section] = STATE(113), - [sym__section6] = STATE(387), - [sym__atx_heading6] = STATE(127), - [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(112)] = { + [sym__block_not_section] = STATE(112), + [sym__section6] = STATE(284), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(112), + [sym_pandoc_paragraph] = STATE(112), + [sym_inline_ref_def] = STATE(112), + [sym_caption] = STATE(112), + [sym_pipe_table] = STATE(112), + [sym__inlines] = STATE(3206), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(113), - [sym_pandoc_list] = STATE(113), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), - [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_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), + [sym_pandoc_block_quote] = STATE(112), + [sym_pandoc_list] = STATE(112), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(144), + [sym_pandoc_code_block] = STATE(112), + [sym_pandoc_div] = STATE(112), + [sym_note_definition_fenced_block] = STATE(112), + [sym__newline] = STATE(112), + [sym__soft_line_break] = STATE(112), [sym__inline_whitespace] = STATE(803), - [aux_sym__section5_repeat1] = STATE(113), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1638), - [anon_sym_COLON] = ACTIONS(1753), - [sym_entity_reference] = ACTIONS(1605), - [sym_numeric_character_reference] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_BANG_LBRACK] = ACTIONS(1611), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1620), - [aux_sym_pandoc_str_token1] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1626), - [sym__whitespace] = ACTIONS(1756), - [sym__line_ending] = ACTIONS(1759), - [sym__soft_line_ending] = ACTIONS(1762), - [sym__block_quote_start] = ACTIONS(1765), - [sym_atx_h1_marker] = ACTIONS(1638), - [sym_atx_h2_marker] = ACTIONS(1638), - [sym_atx_h3_marker] = ACTIONS(1638), - [sym_atx_h4_marker] = ACTIONS(1638), - [sym_atx_h5_marker] = ACTIONS(1638), - [sym_atx_h6_marker] = ACTIONS(1768), - [sym__thematic_break] = ACTIONS(1771), - [sym__list_marker_minus] = ACTIONS(1649), - [sym__list_marker_plus] = ACTIONS(1652), - [sym__list_marker_star] = ACTIONS(1655), - [sym__list_marker_parenthesis] = ACTIONS(1658), - [sym__list_marker_dot] = ACTIONS(1661), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1649), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1655), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1661), - [sym__list_marker_example] = ACTIONS(1664), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1664), - [sym__fenced_code_block_start_backtick] = ACTIONS(1774), - [sym_minus_metadata] = ACTIONS(1777), - [sym__pipe_table_start] = ACTIONS(1780), - [sym__fenced_div_start] = ACTIONS(1783), - [sym_ref_id_specifier] = ACTIONS(1786), - [sym__code_span_start] = ACTIONS(1682), - [sym__html_comment] = ACTIONS(1605), - [sym__autolink] = ACTIONS(1605), - [sym__highlight_span_start] = ACTIONS(1685), - [sym__insert_span_start] = ACTIONS(1688), - [sym__delete_span_start] = ACTIONS(1691), - [sym__edit_comment_span_start] = ACTIONS(1694), - [sym__single_quote_span_open] = ACTIONS(1697), - [sym__double_quote_span_open] = ACTIONS(1700), - [sym__shortcode_open_escaped] = ACTIONS(1703), - [sym__shortcode_open] = ACTIONS(1706), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1712), - [sym__cite_author_in_text] = ACTIONS(1715), - [sym__cite_suppress_author] = ACTIONS(1718), - [sym__strikeout_open] = ACTIONS(1721), - [sym__subscript_open] = ACTIONS(1724), - [sym__superscript_open] = ACTIONS(1727), - [sym__inline_note_start_token] = ACTIONS(1730), - [sym__strong_emphasis_open_star] = ACTIONS(1733), - [sym__strong_emphasis_open_underscore] = ACTIONS(1736), - [sym__emphasis_open_star] = ACTIONS(1739), - [sym__emphasis_open_underscore] = ACTIONS(1742), - [sym_inline_note_reference] = ACTIONS(1605), - [sym_html_element] = ACTIONS(1605), - [sym__pandoc_line_break] = ACTIONS(1605), + [aux_sym__section5_repeat1] = STATE(112), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(144), + [anon_sym_COLON] = ACTIONS(1610), + [sym_entity_reference] = ACTIONS(1613), + [sym_numeric_character_reference] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BANG_LBRACK] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1628), + [aux_sym_pandoc_str_token1] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1634), + [sym__whitespace] = ACTIONS(1637), + [sym__line_ending] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1643), + [sym__block_close] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1651), + [sym__thematic_break] = ACTIONS(1654), + [sym__list_marker_minus] = ACTIONS(1657), + [sym__list_marker_plus] = ACTIONS(1660), + [sym__list_marker_star] = ACTIONS(1663), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1669), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1657), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1663), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1669), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1675), + [sym_minus_metadata] = ACTIONS(1678), + [sym__pipe_table_start] = ACTIONS(1681), + [sym__fenced_div_start] = ACTIONS(1684), + [sym__fenced_div_end] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1687), + [sym__code_span_start] = ACTIONS(1690), + [sym__html_comment] = ACTIONS(1613), + [sym__autolink] = ACTIONS(1613), + [sym__highlight_span_start] = ACTIONS(1693), + [sym__insert_span_start] = ACTIONS(1696), + [sym__delete_span_start] = ACTIONS(1699), + [sym__edit_comment_span_start] = ACTIONS(1702), + [sym__single_quote_span_open] = ACTIONS(1705), + [sym__double_quote_span_open] = ACTIONS(1708), + [sym__shortcode_open_escaped] = ACTIONS(1711), + [sym__shortcode_open] = ACTIONS(1714), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1717), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1720), + [sym__cite_author_in_text] = ACTIONS(1723), + [sym__cite_suppress_author] = ACTIONS(1726), + [sym__strikeout_open] = ACTIONS(1729), + [sym__subscript_open] = ACTIONS(1732), + [sym__superscript_open] = ACTIONS(1735), + [sym__inline_note_start_token] = ACTIONS(1738), + [sym__strong_emphasis_open_star] = ACTIONS(1741), + [sym__strong_emphasis_open_underscore] = ACTIONS(1744), + [sym__emphasis_open_star] = ACTIONS(1747), + [sym__emphasis_open_underscore] = ACTIONS(1750), + [sym_inline_note_reference] = ACTIONS(1613), + [sym_html_element] = ACTIONS(1613), + [sym__pandoc_line_break] = ACTIONS(1613), + [sym_grid_table] = ACTIONS(1678), }, - [STATE(114)] = { + [STATE(113)] = { [sym__block_not_section] = STATE(116), - [sym__section6] = STATE(438), - [sym__atx_heading6] = STATE(125), + [sym__section6] = STATE(424), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(116), [sym_pandoc_list] = STATE(116), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [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(799), + [sym__inline_whitespace] = STATE(810), [aux_sym__section5_repeat1] = STATE(116), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37708,18 +37695,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1745), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(1745), - [sym_atx_h2_marker] = ACTIONS(1745), - [sym_atx_h3_marker] = ACTIONS(1745), - [sym_atx_h4_marker] = ACTIONS(1745), - [sym_atx_h5_marker] = ACTIONS(1745), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37732,11 +37719,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(1789), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(1753), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37763,75 +37750,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1753), }, - [STATE(115)] = { - [sym__block_not_section] = STATE(114), - [sym__section6] = STATE(438), - [sym__atx_heading6] = STATE(125), - [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), + [STATE(114)] = { + [sym__block_not_section] = STATE(113), + [sym__section6] = STATE(424), + [sym__atx_heading6] = STATE(127), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(114), - [sym_pandoc_list] = STATE(114), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [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(799), - [aux_sym__section5_repeat1] = STATE(114), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(113), + [sym_pandoc_list] = STATE(113), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [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(810), + [aux_sym__section5_repeat1] = STATE(113), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37841,18 +37829,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1749), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(1749), - [sym_atx_h2_marker] = ACTIONS(1749), - [sym_atx_h3_marker] = ACTIONS(1749), - [sym_atx_h4_marker] = ACTIONS(1749), - [sym_atx_h5_marker] = ACTIONS(1749), - [sym_atx_h6_marker] = ACTIONS(133), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(123), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37865,11 +37853,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(1791), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(1755), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37896,208 +37884,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1755), + }, + [STATE(115)] = { + [sym__block_not_section] = STATE(115), + [sym__section6] = STATE(382), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(115), + [sym_pandoc_paragraph] = STATE(115), + [sym_inline_ref_def] = STATE(115), + [sym_caption] = STATE(115), + [sym_pipe_table] = STATE(115), + [sym__inlines] = STATE(3153), + [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__line] = STATE(2867), + [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), + [sym_pandoc_block_quote] = STATE(115), + [sym_pandoc_list] = STATE(115), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [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(816), + [aux_sym__section5_repeat1] = STATE(115), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1646), + [anon_sym_COLON] = ACTIONS(1757), + [sym_entity_reference] = ACTIONS(1613), + [sym_numeric_character_reference] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BANG_LBRACK] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1628), + [aux_sym_pandoc_str_token1] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1634), + [sym__whitespace] = ACTIONS(1760), + [sym__line_ending] = ACTIONS(1763), + [sym__soft_line_ending] = ACTIONS(1766), + [sym__block_quote_start] = ACTIONS(1769), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1772), + [sym__thematic_break] = ACTIONS(1775), + [sym__list_marker_minus] = ACTIONS(1657), + [sym__list_marker_plus] = ACTIONS(1660), + [sym__list_marker_star] = ACTIONS(1663), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1669), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1657), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1663), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1669), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1778), + [sym_minus_metadata] = ACTIONS(1781), + [sym__pipe_table_start] = ACTIONS(1784), + [sym__fenced_div_start] = ACTIONS(1787), + [sym_ref_id_specifier] = ACTIONS(1790), + [sym__code_span_start] = ACTIONS(1690), + [sym__html_comment] = ACTIONS(1613), + [sym__autolink] = ACTIONS(1613), + [sym__highlight_span_start] = ACTIONS(1693), + [sym__insert_span_start] = ACTIONS(1696), + [sym__delete_span_start] = ACTIONS(1699), + [sym__edit_comment_span_start] = ACTIONS(1702), + [sym__single_quote_span_open] = ACTIONS(1705), + [sym__double_quote_span_open] = ACTIONS(1708), + [sym__shortcode_open_escaped] = ACTIONS(1711), + [sym__shortcode_open] = ACTIONS(1714), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1717), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1720), + [sym__cite_author_in_text] = ACTIONS(1723), + [sym__cite_suppress_author] = ACTIONS(1726), + [sym__strikeout_open] = ACTIONS(1729), + [sym__subscript_open] = ACTIONS(1732), + [sym__superscript_open] = ACTIONS(1735), + [sym__inline_note_start_token] = ACTIONS(1738), + [sym__strong_emphasis_open_star] = ACTIONS(1741), + [sym__strong_emphasis_open_underscore] = ACTIONS(1744), + [sym__emphasis_open_star] = ACTIONS(1747), + [sym__emphasis_open_underscore] = ACTIONS(1750), + [sym_inline_note_reference] = ACTIONS(1613), + [sym_html_element] = ACTIONS(1613), + [sym__pandoc_line_break] = ACTIONS(1613), + [sym_grid_table] = ACTIONS(1781), }, [STATE(116)] = { [sym__block_not_section] = STATE(116), - [sym__section6] = STATE(438), - [sym__atx_heading6] = STATE(125), + [sym__section6] = STATE(424), + [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(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(116), [sym_pandoc_list] = STATE(116), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), [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(799), + [sym__inline_whitespace] = STATE(810), [aux_sym__section5_repeat1] = STATE(116), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), [anon_sym_COLON] = ACTIONS(1793), - [sym_entity_reference] = ACTIONS(1605), - [sym_numeric_character_reference] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_BANG_LBRACK] = ACTIONS(1611), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1620), - [aux_sym_pandoc_str_token1] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1626), + [sym_entity_reference] = ACTIONS(1613), + [sym_numeric_character_reference] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BANG_LBRACK] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1628), + [aux_sym_pandoc_str_token1] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1634), [sym__whitespace] = ACTIONS(1796), [sym__line_ending] = ACTIONS(1799), [sym__soft_line_ending] = ACTIONS(1802), - [sym__block_close] = ACTIONS(1638), + [sym__block_close] = ACTIONS(1646), [sym__block_quote_start] = ACTIONS(1805), - [sym_atx_h1_marker] = ACTIONS(1638), - [sym_atx_h2_marker] = ACTIONS(1638), - [sym_atx_h3_marker] = ACTIONS(1638), - [sym_atx_h4_marker] = ACTIONS(1638), - [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), [sym_atx_h6_marker] = ACTIONS(1808), [sym__thematic_break] = ACTIONS(1811), - [sym__list_marker_minus] = ACTIONS(1649), - [sym__list_marker_plus] = ACTIONS(1652), - [sym__list_marker_star] = ACTIONS(1655), - [sym__list_marker_parenthesis] = ACTIONS(1658), - [sym__list_marker_dot] = ACTIONS(1661), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1649), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1655), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1661), - [sym__list_marker_example] = ACTIONS(1664), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_minus] = ACTIONS(1657), + [sym__list_marker_plus] = ACTIONS(1660), + [sym__list_marker_star] = ACTIONS(1663), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1669), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1657), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1663), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1669), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), [sym__fenced_code_block_start_backtick] = ACTIONS(1814), [sym_minus_metadata] = ACTIONS(1817), [sym__pipe_table_start] = ACTIONS(1820), [sym__fenced_div_start] = ACTIONS(1823), [sym_ref_id_specifier] = ACTIONS(1826), - [sym__code_span_start] = ACTIONS(1682), - [sym__html_comment] = ACTIONS(1605), - [sym__autolink] = ACTIONS(1605), - [sym__highlight_span_start] = ACTIONS(1685), - [sym__insert_span_start] = ACTIONS(1688), - [sym__delete_span_start] = ACTIONS(1691), - [sym__edit_comment_span_start] = ACTIONS(1694), - [sym__single_quote_span_open] = ACTIONS(1697), - [sym__double_quote_span_open] = ACTIONS(1700), - [sym__shortcode_open_escaped] = ACTIONS(1703), - [sym__shortcode_open] = ACTIONS(1706), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1712), - [sym__cite_author_in_text] = ACTIONS(1715), - [sym__cite_suppress_author] = ACTIONS(1718), - [sym__strikeout_open] = ACTIONS(1721), - [sym__subscript_open] = ACTIONS(1724), - [sym__superscript_open] = ACTIONS(1727), - [sym__inline_note_start_token] = ACTIONS(1730), - [sym__strong_emphasis_open_star] = ACTIONS(1733), - [sym__strong_emphasis_open_underscore] = ACTIONS(1736), - [sym__emphasis_open_star] = ACTIONS(1739), - [sym__emphasis_open_underscore] = ACTIONS(1742), - [sym_inline_note_reference] = ACTIONS(1605), - [sym_html_element] = ACTIONS(1605), - [sym__pandoc_line_break] = ACTIONS(1605), + [sym__code_span_start] = ACTIONS(1690), + [sym__html_comment] = ACTIONS(1613), + [sym__autolink] = ACTIONS(1613), + [sym__highlight_span_start] = ACTIONS(1693), + [sym__insert_span_start] = ACTIONS(1696), + [sym__delete_span_start] = ACTIONS(1699), + [sym__edit_comment_span_start] = ACTIONS(1702), + [sym__single_quote_span_open] = ACTIONS(1705), + [sym__double_quote_span_open] = ACTIONS(1708), + [sym__shortcode_open_escaped] = ACTIONS(1711), + [sym__shortcode_open] = ACTIONS(1714), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1717), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1720), + [sym__cite_author_in_text] = ACTIONS(1723), + [sym__cite_suppress_author] = ACTIONS(1726), + [sym__strikeout_open] = ACTIONS(1729), + [sym__subscript_open] = ACTIONS(1732), + [sym__superscript_open] = ACTIONS(1735), + [sym__inline_note_start_token] = ACTIONS(1738), + [sym__strong_emphasis_open_star] = ACTIONS(1741), + [sym__strong_emphasis_open_underscore] = ACTIONS(1744), + [sym__emphasis_open_star] = ACTIONS(1747), + [sym__emphasis_open_underscore] = ACTIONS(1750), + [sym_inline_note_reference] = ACTIONS(1613), + [sym_html_element] = ACTIONS(1613), + [sym__pandoc_line_break] = ACTIONS(1613), + [sym_grid_table] = ACTIONS(1817), }, [STATE(117)] = { - [sym__block_not_section] = STATE(113), - [sym__section6] = STATE(387), - [sym__atx_heading6] = STATE(127), - [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__block_not_section] = STATE(115), + [sym__section6] = STATE(382), + [sym__atx_heading6] = STATE(126), + [sym_pandoc_horizontal_rule] = STATE(115), + [sym_pandoc_paragraph] = STATE(115), + [sym_inline_ref_def] = STATE(115), + [sym_caption] = STATE(115), + [sym_pipe_table] = STATE(115), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(113), - [sym_pandoc_list] = STATE(113), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(115), + [sym_pandoc_list] = STATE(115), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [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(803), - [aux_sym__section5_repeat1] = STATE(113), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [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(816), + [aux_sym__section5_repeat1] = STATE(115), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(1602), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -38112,11 +38236,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1745), - [sym_atx_h2_marker] = ACTIONS(1745), - [sym_atx_h3_marker] = ACTIONS(1745), - [sym_atx_h4_marker] = ACTIONS(1745), - [sym_atx_h5_marker] = ACTIONS(1745), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), [sym_atx_h6_marker] = ACTIONS(41), [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), @@ -38162,58 +38286,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1829), }, [STATE(118)] = { [sym__block_not_section] = STATE(117), - [sym__section6] = STATE(387), - [sym__atx_heading6] = STATE(127), + [sym__section6] = STATE(382), + [sym__atx_heading6] = STATE(126), [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(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), + [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), [sym_pandoc_block_quote] = STATE(117), [sym_pandoc_list] = STATE(117), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), @@ -38222,15 +38347,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(117), [sym__newline] = STATE(117), [sym__soft_line_break] = STATE(117), - [sym__inline_whitespace] = STATE(803), + [sym__inline_whitespace] = STATE(816), [aux_sym__section5_repeat1] = STATE(117), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1749), + [ts_builtin_sym_end] = ACTIONS(1606), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -38245,11 +38370,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1749), - [sym_atx_h2_marker] = ACTIONS(1749), - [sym_atx_h3_marker] = ACTIONS(1749), - [sym_atx_h4_marker] = ACTIONS(1749), - [sym_atx_h5_marker] = ACTIONS(1749), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), [sym_atx_h6_marker] = ACTIONS(41), [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), @@ -38295,73 +38420,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1831), }, [STATE(119)] = { - [sym__block_not_section] = STATE(317), - [sym_pandoc_horizontal_rule] = STATE(317), - [sym_pandoc_paragraph] = STATE(317), - [sym_inline_ref_def] = STATE(317), - [sym_caption] = STATE(317), - [sym_pipe_table] = STATE(317), + [sym__block_not_section] = STATE(306), + [sym_pandoc_horizontal_rule] = STATE(306), + [sym_pandoc_paragraph] = STATE(306), + [sym_inline_ref_def] = STATE(306), + [sym_caption] = STATE(306), + [sym_pipe_table] = STATE(306), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(317), - [sym_pandoc_list] = STATE(317), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(306), + [sym_pandoc_list] = STATE(306), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(317), - [sym_pandoc_div] = STATE(317), - [sym_note_definition_fenced_block] = STATE(317), - [sym__newline] = STATE(317), - [sym__soft_line_break] = STATE(317), - [sym__inline_whitespace] = STATE(814), + [sym_pandoc_code_block] = STATE(306), + [sym_pandoc_div] = STATE(306), + [sym_note_definition_fenced_block] = STATE(306), + [sym__newline] = STATE(306), + [sym__soft_line_break] = STATE(306), + [sym__inline_whitespace] = STATE(803), [aux_sym_document_repeat1] = STATE(120), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -38371,18 +38497,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(1833), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(1833), [sym_atx_h2_marker] = ACTIONS(1833), [sym_atx_h3_marker] = ACTIONS(1833), [sym_atx_h4_marker] = ACTIONS(1833), [sym_atx_h5_marker] = ACTIONS(1833), [sym_atx_h6_marker] = ACTIONS(1833), - [sym__thematic_break] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -38395,12 +38521,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(1835), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(1833), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -38427,71 +38553,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1835), }, [STATE(120)] = { - [sym__block_not_section] = STATE(317), - [sym_pandoc_horizontal_rule] = STATE(317), - [sym_pandoc_paragraph] = STATE(317), - [sym_inline_ref_def] = STATE(317), - [sym_caption] = STATE(317), - [sym_pipe_table] = STATE(317), + [sym__block_not_section] = STATE(306), + [sym_pandoc_horizontal_rule] = STATE(306), + [sym_pandoc_paragraph] = STATE(306), + [sym_inline_ref_def] = STATE(306), + [sym_caption] = STATE(306), + [sym_pipe_table] = STATE(306), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(317), - [sym_pandoc_list] = STATE(317), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(306), + [sym_pandoc_list] = STATE(306), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(317), - [sym_pandoc_div] = STATE(317), - [sym_note_definition_fenced_block] = STATE(317), - [sym__newline] = STATE(317), - [sym__soft_line_break] = STATE(317), - [sym__inline_whitespace] = STATE(814), + [sym_pandoc_code_block] = STATE(306), + [sym_pandoc_div] = STATE(306), + [sym_note_definition_fenced_block] = STATE(306), + [sym__newline] = STATE(306), + [sym__soft_line_break] = STATE(306), + [sym__inline_whitespace] = STATE(803), [aux_sym_document_repeat1] = STATE(120), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), [anon_sym_COLON] = ACTIONS(1837), [sym_entity_reference] = ACTIONS(1840), @@ -38559,73 +38686,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(1840), [sym_html_element] = ACTIONS(1840), [sym__pandoc_line_break] = ACTIONS(1840), + [sym_grid_table] = ACTIONS(1902), }, [STATE(121)] = { - [sym__block_not_section] = STATE(317), - [sym_pandoc_horizontal_rule] = STATE(317), - [sym_pandoc_paragraph] = STATE(317), - [sym_inline_ref_def] = STATE(317), - [sym_caption] = STATE(317), - [sym_pipe_table] = STATE(317), + [sym__block_not_section] = STATE(306), + [sym_pandoc_horizontal_rule] = STATE(306), + [sym_pandoc_paragraph] = STATE(306), + [sym_inline_ref_def] = STATE(306), + [sym_caption] = STATE(306), + [sym_pipe_table] = STATE(306), [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(317), - [sym_pandoc_list] = STATE(317), - [sym__list_plus] = STATE(351), - [sym__list_minus] = STATE(351), - [sym__list_star] = STATE(351), - [sym__list_dot] = STATE(351), - [sym__list_parenthesis] = STATE(351), - [sym__list_example] = STATE(351), - [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(137), - [sym__list_item_minus] = STATE(138), - [sym__list_item_star] = STATE(141), - [sym__list_item_dot] = STATE(142), - [sym__list_item_parenthesis] = STATE(143), + [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), + [sym_pandoc_block_quote] = STATE(306), + [sym_pandoc_list] = STATE(306), + [sym__list_plus] = STATE(214), + [sym__list_minus] = STATE(214), + [sym__list_star] = STATE(214), + [sym__list_dot] = STATE(214), + [sym__list_parenthesis] = STATE(214), + [sym__list_example] = STATE(214), + [sym_list_marker_plus] = STATE(15), + [sym_list_marker_minus] = STATE(16), + [sym_list_marker_star] = STATE(17), + [sym_list_marker_dot] = STATE(18), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(2), + [sym__list_item_plus] = STATE(132), + [sym__list_item_minus] = STATE(133), + [sym__list_item_star] = STATE(135), + [sym__list_item_dot] = STATE(137), + [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(144), - [sym_pandoc_code_block] = STATE(317), - [sym_pandoc_div] = STATE(317), - [sym_note_definition_fenced_block] = STATE(317), - [sym__newline] = STATE(317), - [sym__soft_line_break] = STATE(317), - [sym__inline_whitespace] = STATE(814), + [sym_pandoc_code_block] = STATE(306), + [sym_pandoc_div] = STATE(306), + [sym_note_definition_fenced_block] = STATE(306), + [sym__newline] = STATE(306), + [sym__soft_line_break] = STATE(306), + [sym__inline_whitespace] = STATE(803), [aux_sym_document_repeat1] = STATE(119), - [aux_sym__list_plus_repeat1] = STATE(137), - [aux_sym__list_minus_repeat1] = STATE(138), - [aux_sym__list_star_repeat1] = STATE(141), - [aux_sym__list_dot_repeat1] = STATE(142), - [aux_sym__list_parenthesis_repeat1] = STATE(143), + [aux_sym__list_plus_repeat1] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(137), + [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(227), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -38635,18 +38763,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__line_ending] = ACTIONS(229), - [sym__soft_line_ending] = ACTIONS(231), + [sym__whitespace] = ACTIONS(229), + [sym__line_ending] = ACTIONS(231), + [sym__soft_line_ending] = ACTIONS(233), [sym__block_close] = ACTIONS(1977), - [sym__block_quote_start] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(237), [sym_atx_h1_marker] = ACTIONS(1977), [sym_atx_h2_marker] = ACTIONS(1977), [sym_atx_h3_marker] = ACTIONS(1977), [sym_atx_h4_marker] = ACTIONS(1977), [sym_atx_h5_marker] = ACTIONS(1977), [sym_atx_h6_marker] = ACTIONS(1977), - [sym__thematic_break] = ACTIONS(249), + [sym__thematic_break] = ACTIONS(251), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -38659,12 +38787,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(251), + [sym__fenced_code_block_start_backtick] = ACTIONS(253), [sym_minus_metadata] = ACTIONS(1835), - [sym__pipe_table_start] = ACTIONS(255), - [sym__fenced_div_start] = ACTIONS(257), + [sym__pipe_table_start] = ACTIONS(257), + [sym__fenced_div_start] = ACTIONS(259), [sym__fenced_div_end] = ACTIONS(1977), - [sym_ref_id_specifier] = ACTIONS(261), + [sym_ref_id_specifier] = ACTIONS(263), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -38691,69 +38819,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(1835), }, [STATE(122)] = { - [sym__block_not_section] = STATE(440), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), + [sym__block_not_section] = STATE(494), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), [aux_sym_document_repeat1] = STATE(122), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), @@ -38822,73 +38951,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(1840), [sym_html_element] = ACTIONS(1840), [sym__pandoc_line_break] = ACTIONS(1840), + [sym_grid_table] = ACTIONS(2000), }, [STATE(123)] = { - [sym__block_not_section] = STATE(416), - [sym_pandoc_horizontal_rule] = STATE(416), - [sym_pandoc_paragraph] = STATE(416), - [sym_inline_ref_def] = STATE(416), - [sym_caption] = STATE(416), - [sym_pipe_table] = STATE(416), + [sym__block_not_section] = STATE(405), + [sym_pandoc_horizontal_rule] = STATE(405), + [sym_pandoc_paragraph] = STATE(405), + [sym_inline_ref_def] = STATE(405), + [sym_caption] = STATE(405), + [sym_pipe_table] = STATE(405), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(416), - [sym_pandoc_list] = STATE(416), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(416), - [sym_pandoc_div] = STATE(416), - [sym_note_definition_fenced_block] = STATE(416), - [sym__newline] = STATE(416), - [sym__soft_line_break] = STATE(416), - [sym__inline_whitespace] = STATE(799), + [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), + [sym_pandoc_block_quote] = STATE(405), + [sym_pandoc_list] = STATE(405), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym_pandoc_code_block] = STATE(405), + [sym_pandoc_div] = STATE(405), + [sym_note_definition_fenced_block] = STATE(405), + [sym__newline] = STATE(405), + [sym__soft_line_break] = STATE(405), + [sym__inline_whitespace] = STATE(810), [aux_sym_document_repeat1] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -38898,18 +39028,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), [sym__block_close] = ACTIONS(1833), - [sym__block_quote_start] = ACTIONS(121), + [sym__block_quote_start] = ACTIONS(123), [sym_atx_h1_marker] = ACTIONS(1833), [sym_atx_h2_marker] = ACTIONS(1833), [sym_atx_h3_marker] = ACTIONS(1833), [sym_atx_h4_marker] = ACTIONS(1833), [sym_atx_h5_marker] = ACTIONS(1833), [sym_atx_h6_marker] = ACTIONS(1833), - [sym__thematic_break] = ACTIONS(135), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -38922,11 +39052,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), [sym_minus_metadata] = ACTIONS(2012), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -38953,72 +39083,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(2012), }, [STATE(124)] = { - [sym__block_not_section] = STATE(416), - [sym_pandoc_horizontal_rule] = STATE(416), - [sym_pandoc_paragraph] = STATE(416), - [sym_inline_ref_def] = STATE(416), - [sym_caption] = STATE(416), - [sym_pipe_table] = STATE(416), + [sym__block_not_section] = STATE(405), + [sym_pandoc_horizontal_rule] = STATE(405), + [sym_pandoc_paragraph] = STATE(405), + [sym_inline_ref_def] = STATE(405), + [sym_caption] = STATE(405), + [sym_pipe_table] = STATE(405), [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(416), - [sym_pandoc_list] = STATE(416), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(416), - [sym_pandoc_div] = STATE(416), - [sym_note_definition_fenced_block] = STATE(416), - [sym__newline] = STATE(416), - [sym__soft_line_break] = STATE(416), - [sym__inline_whitespace] = STATE(799), + [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), + [sym_pandoc_block_quote] = STATE(405), + [sym_pandoc_list] = STATE(405), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym_pandoc_code_block] = STATE(405), + [sym_pandoc_div] = STATE(405), + [sym_note_definition_fenced_block] = STATE(405), + [sym__newline] = STATE(405), + [sym__soft_line_break] = STATE(405), + [sym__inline_whitespace] = STATE(810), [aux_sym_document_repeat1] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), [anon_sym_COLON] = ACTIONS(2014), [sym_entity_reference] = ACTIONS(1840), [sym_numeric_character_reference] = ACTIONS(1840), @@ -39084,73 +39215,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(1840), [sym_html_element] = ACTIONS(1840), [sym__pandoc_line_break] = ACTIONS(1840), + [sym_grid_table] = ACTIONS(2035), }, [STATE(125)] = { - [sym__block_not_section] = STATE(416), - [sym_pandoc_horizontal_rule] = STATE(416), - [sym_pandoc_paragraph] = STATE(416), - [sym_inline_ref_def] = STATE(416), - [sym_caption] = STATE(416), - [sym_pipe_table] = STATE(416), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__block_not_section] = STATE(494), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), + [sym__inlines] = STATE(3153), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(416), - [sym_pandoc_list] = STATE(416), - [sym__list_plus] = STATE(421), - [sym__list_minus] = STATE(421), - [sym__list_star] = STATE(421), - [sym__list_dot] = STATE(421), - [sym__list_parenthesis] = STATE(421), - [sym__list_example] = STATE(421), - [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(151), - [sym__list_item_minus] = STATE(148), - [sym__list_item_star] = STATE(166), - [sym__list_item_dot] = STATE(159), - [sym__list_item_parenthesis] = STATE(162), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(416), - [sym_pandoc_div] = STATE(416), - [sym_note_definition_fenced_block] = STATE(416), - [sym__newline] = STATE(416), - [sym__soft_line_break] = STATE(416), - [sym__inline_whitespace] = STATE(799), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym__list_plus_repeat1] = STATE(151), - [aux_sym__list_minus_repeat1] = STATE(148), - [aux_sym__list_star_repeat1] = STATE(166), - [aux_sym__list_dot_repeat1] = STATE(159), - [aux_sym__list_parenthesis_repeat1] = STATE(162), - [aux_sym__list_example_repeat1] = STATE(165), - [anon_sym_COLON] = ACTIONS(109), + [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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), + [sym__list_item_dot] = STATE(153), + [sym__list_item_parenthesis] = STATE(154), + [sym__list_item_example] = STATE(155), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), + [aux_sym_document_repeat1] = STATE(122), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(153), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1833), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -39160,18 +39293,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1977), - [sym__block_quote_start] = ACTIONS(121), - [sym_atx_h1_marker] = ACTIONS(1977), - [sym_atx_h2_marker] = ACTIONS(1977), - [sym_atx_h3_marker] = ACTIONS(1977), - [sym_atx_h4_marker] = ACTIONS(1977), - [sym_atx_h5_marker] = ACTIONS(1977), - [sym_atx_h6_marker] = ACTIONS(1977), - [sym__thematic_break] = ACTIONS(135), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1833), + [sym_atx_h2_marker] = ACTIONS(1833), + [sym_atx_h3_marker] = ACTIONS(1833), + [sym_atx_h4_marker] = ACTIONS(1833), + [sym_atx_h5_marker] = ACTIONS(1833), + [sym_atx_h6_marker] = ACTIONS(1833), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -39184,11 +39316,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(137), - [sym_minus_metadata] = ACTIONS(2012), - [sym__pipe_table_start] = ACTIONS(143), - [sym__fenced_div_start] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(147), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -39215,73 +39347,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(109), }, [STATE(126)] = { - [sym__block_not_section] = STATE(440), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), + [sym__block_not_section] = STATE(494), + [sym_pandoc_horizontal_rule] = STATE(494), + [sym_pandoc_paragraph] = STATE(494), + [sym_inline_ref_def] = STATE(494), + [sym_caption] = STATE(494), + [sym_pipe_table] = STATE(494), [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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__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), + [sym_pandoc_block_quote] = STATE(494), + [sym_pandoc_list] = STATE(494), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(7), + [sym_list_marker_minus] = STATE(4), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(8), [sym_list_marker_parenthesis] = STATE(5), [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), + [sym__list_item_plus] = STATE(166), + [sym__list_item_minus] = STATE(156), + [sym__list_item_star] = STATE(162), [sym__list_item_dot] = STATE(153), [sym__list_item_parenthesis] = STATE(154), [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), - [aux_sym_document_repeat1] = STATE(122), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), + [sym_pandoc_code_block] = STATE(494), + [sym_pandoc_div] = STATE(494), + [sym_note_definition_fenced_block] = STATE(494), + [sym__newline] = STATE(494), + [sym__soft_line_break] = STATE(494), + [sym__inline_whitespace] = STATE(816), + [aux_sym_document_repeat1] = STATE(125), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__list_minus_repeat1] = STATE(156), + [aux_sym__list_star_repeat1] = STATE(162), [aux_sym__list_dot_repeat1] = STATE(153), [aux_sym__list_parenthesis_repeat1] = STATE(154), [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1977), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -39296,12 +39429,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1833), - [sym_atx_h2_marker] = ACTIONS(1833), - [sym_atx_h3_marker] = ACTIONS(1833), - [sym_atx_h4_marker] = ACTIONS(1833), - [sym_atx_h5_marker] = ACTIONS(1833), - [sym_atx_h6_marker] = ACTIONS(1833), + [sym_atx_h1_marker] = ACTIONS(1977), + [sym_atx_h2_marker] = ACTIONS(1977), + [sym_atx_h3_marker] = ACTIONS(1977), + [sym_atx_h4_marker] = ACTIONS(1977), + [sym_atx_h5_marker] = ACTIONS(1977), + [sym_atx_h6_marker] = ACTIONS(1977), [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), @@ -39316,7 +39449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(517), + [sym_minus_metadata] = ACTIONS(109), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -39346,74 +39479,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(109), }, [STATE(127)] = { - [sym__block_not_section] = STATE(440), - [sym_pandoc_horizontal_rule] = STATE(440), - [sym_pandoc_paragraph] = STATE(440), - [sym_inline_ref_def] = STATE(440), - [sym_caption] = STATE(440), - [sym_pipe_table] = STATE(440), - [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [sym__block_not_section] = STATE(405), + [sym_pandoc_horizontal_rule] = STATE(405), + [sym_pandoc_paragraph] = STATE(405), + [sym_inline_ref_def] = STATE(405), + [sym_caption] = STATE(405), + [sym_pipe_table] = STATE(405), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym_pandoc_block_quote] = STATE(440), - [sym_pandoc_list] = STATE(440), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym__list_example] = STATE(400), - [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(161), - [sym__list_item_minus] = STATE(146), - [sym__list_item_star] = STATE(152), - [sym__list_item_dot] = STATE(153), - [sym__list_item_parenthesis] = STATE(154), - [sym__list_item_example] = STATE(155), - [sym_pandoc_code_block] = STATE(440), - [sym_pandoc_div] = STATE(440), - [sym_note_definition_fenced_block] = STATE(440), - [sym__newline] = STATE(440), - [sym__soft_line_break] = STATE(440), - [sym__inline_whitespace] = STATE(803), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym__list_plus_repeat1] = STATE(161), - [aux_sym__list_minus_repeat1] = STATE(146), - [aux_sym__list_star_repeat1] = STATE(152), - [aux_sym__list_dot_repeat1] = STATE(153), - [aux_sym__list_parenthesis_repeat1] = STATE(154), - [aux_sym__list_example_repeat1] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(1977), - [anon_sym_COLON] = ACTIONS(5), + [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), + [sym_pandoc_block_quote] = STATE(405), + [sym_pandoc_list] = STATE(405), + [sym__list_plus] = STATE(407), + [sym__list_minus] = STATE(407), + [sym__list_star] = STATE(407), + [sym__list_dot] = STATE(407), + [sym__list_parenthesis] = STATE(407), + [sym__list_example] = STATE(407), + [sym_list_marker_plus] = STATE(9), + [sym_list_marker_minus] = STATE(10), + [sym_list_marker_star] = STATE(11), + [sym_list_marker_dot] = STATE(12), + [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_example] = STATE(14), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(150), + [sym__list_item_parenthesis] = STATE(151), + [sym__list_item_example] = STATE(152), + [sym_pandoc_code_block] = STATE(405), + [sym_pandoc_div] = STATE(405), + [sym_note_definition_fenced_block] = STATE(405), + [sym__newline] = STATE(405), + [sym__soft_line_break] = STATE(405), + [sym__inline_whitespace] = STATE(810), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(150), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [aux_sym__list_example_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(111), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -39423,17 +39556,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), + [sym__whitespace] = ACTIONS(113), + [sym__line_ending] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(117), + [sym__block_close] = ACTIONS(1977), + [sym__block_quote_start] = ACTIONS(123), [sym_atx_h1_marker] = ACTIONS(1977), [sym_atx_h2_marker] = ACTIONS(1977), [sym_atx_h3_marker] = ACTIONS(1977), [sym_atx_h4_marker] = ACTIONS(1977), [sym_atx_h5_marker] = ACTIONS(1977), [sym_atx_h6_marker] = ACTIONS(1977), - [sym__thematic_break] = ACTIONS(43), + [sym__thematic_break] = ACTIONS(137), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -39446,11 +39580,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(517), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(139), + [sym_minus_metadata] = ACTIONS(2012), + [sym__pipe_table_start] = ACTIONS(145), + [sym__fenced_div_start] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(149), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -39477,3594 +39611,4409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(7), [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), + [sym_grid_table] = ACTIONS(2012), }, [STATE(128)] = { - [sym_caption] = STATE(3056), - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), + [sym_list_marker_plus] = STATE(15), + [sym__list_item_plus] = STATE(128), + [aux_sym__list_plus_repeat1] = STATE(128), [anon_sym_COLON] = ACTIONS(2047), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym_entity_reference] = ACTIONS(2047), + [sym_numeric_character_reference] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_BANG_LBRACK] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [aux_sym_pandoc_str_token1] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2047), + [sym__whitespace] = ACTIONS(2047), + [sym__line_ending] = ACTIONS(2047), + [sym__soft_line_ending] = ACTIONS(2047), + [sym__block_close] = ACTIONS(2047), + [sym__block_quote_start] = ACTIONS(2047), + [sym_atx_h1_marker] = ACTIONS(2047), + [sym_atx_h2_marker] = ACTIONS(2047), + [sym_atx_h3_marker] = ACTIONS(2047), + [sym_atx_h4_marker] = ACTIONS(2047), + [sym_atx_h5_marker] = ACTIONS(2047), + [sym_atx_h6_marker] = ACTIONS(2047), + [sym__thematic_break] = ACTIONS(2047), + [sym__list_marker_minus] = ACTIONS(2047), + [sym__list_marker_plus] = ACTIONS(2051), + [sym__list_marker_star] = ACTIONS(2047), + [sym__list_marker_parenthesis] = ACTIONS(2047), + [sym__list_marker_dot] = ACTIONS(2047), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2051), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_example] = ACTIONS(2047), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2047), + [sym__fenced_code_block_start_backtick] = ACTIONS(2047), + [sym_minus_metadata] = ACTIONS(2047), + [sym__pipe_table_start] = ACTIONS(2047), + [sym__fenced_div_start] = ACTIONS(2047), + [sym__fenced_div_end] = ACTIONS(2047), + [sym_ref_id_specifier] = ACTIONS(2047), + [sym__code_span_start] = ACTIONS(2047), + [sym__html_comment] = ACTIONS(2047), + [sym__autolink] = ACTIONS(2047), + [sym__highlight_span_start] = ACTIONS(2047), + [sym__insert_span_start] = ACTIONS(2047), + [sym__delete_span_start] = ACTIONS(2047), + [sym__edit_comment_span_start] = ACTIONS(2047), + [sym__single_quote_span_open] = ACTIONS(2047), + [sym__double_quote_span_open] = ACTIONS(2047), + [sym__shortcode_open_escaped] = ACTIONS(2047), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2047), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2047), + [sym__cite_author_in_text] = ACTIONS(2047), + [sym__cite_suppress_author] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2047), + [sym__subscript_open] = ACTIONS(2047), + [sym__superscript_open] = ACTIONS(2047), + [sym__inline_note_start_token] = ACTIONS(2047), + [sym__strong_emphasis_open_star] = ACTIONS(2047), + [sym__strong_emphasis_open_underscore] = ACTIONS(2047), + [sym__emphasis_open_star] = ACTIONS(2047), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym_inline_note_reference] = ACTIONS(2047), + [sym_html_element] = ACTIONS(2047), + [sym__pandoc_line_break] = ACTIONS(2047), + [sym_grid_table] = ACTIONS(2047), }, [STATE(129)] = { - [sym_caption] = STATE(3211), - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [anon_sym_COLON] = ACTIONS(2047), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym_list_marker_minus] = STATE(16), + [sym__list_item_minus] = STATE(129), + [aux_sym__list_minus_repeat1] = STATE(129), + [anon_sym_COLON] = ACTIONS(2054), + [sym_entity_reference] = ACTIONS(2054), + [sym_numeric_character_reference] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_BANG_LBRACK] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [aux_sym_pandoc_str_token1] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2054), + [sym__whitespace] = ACTIONS(2054), + [sym__line_ending] = ACTIONS(2054), + [sym__soft_line_ending] = ACTIONS(2054), + [sym__block_close] = ACTIONS(2054), + [sym__block_quote_start] = ACTIONS(2054), + [sym_atx_h1_marker] = ACTIONS(2054), + [sym_atx_h2_marker] = ACTIONS(2054), + [sym_atx_h3_marker] = ACTIONS(2054), + [sym_atx_h4_marker] = ACTIONS(2054), + [sym_atx_h5_marker] = ACTIONS(2054), + [sym_atx_h6_marker] = ACTIONS(2054), + [sym__thematic_break] = ACTIONS(2054), + [sym__list_marker_minus] = ACTIONS(2058), + [sym__list_marker_plus] = ACTIONS(2054), + [sym__list_marker_star] = ACTIONS(2054), + [sym__list_marker_parenthesis] = ACTIONS(2054), + [sym__list_marker_dot] = ACTIONS(2054), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2058), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_example] = ACTIONS(2054), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2054), + [sym__fenced_code_block_start_backtick] = ACTIONS(2054), + [sym_minus_metadata] = ACTIONS(2054), + [sym__pipe_table_start] = ACTIONS(2054), + [sym__fenced_div_start] = ACTIONS(2054), + [sym__fenced_div_end] = ACTIONS(2054), + [sym_ref_id_specifier] = ACTIONS(2054), + [sym__code_span_start] = ACTIONS(2054), + [sym__html_comment] = ACTIONS(2054), + [sym__autolink] = ACTIONS(2054), + [sym__highlight_span_start] = ACTIONS(2054), + [sym__insert_span_start] = ACTIONS(2054), + [sym__delete_span_start] = ACTIONS(2054), + [sym__edit_comment_span_start] = ACTIONS(2054), + [sym__single_quote_span_open] = ACTIONS(2054), + [sym__double_quote_span_open] = ACTIONS(2054), + [sym__shortcode_open_escaped] = ACTIONS(2054), + [sym__shortcode_open] = ACTIONS(2054), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2054), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2054), + [sym__cite_author_in_text] = ACTIONS(2054), + [sym__cite_suppress_author] = ACTIONS(2054), + [sym__strikeout_open] = ACTIONS(2054), + [sym__subscript_open] = ACTIONS(2054), + [sym__superscript_open] = ACTIONS(2054), + [sym__inline_note_start_token] = ACTIONS(2054), + [sym__strong_emphasis_open_star] = ACTIONS(2054), + [sym__strong_emphasis_open_underscore] = ACTIONS(2054), + [sym__emphasis_open_star] = ACTIONS(2054), + [sym__emphasis_open_underscore] = ACTIONS(2054), + [sym_inline_note_reference] = ACTIONS(2054), + [sym_html_element] = ACTIONS(2054), + [sym__pandoc_line_break] = ACTIONS(2054), + [sym_grid_table] = ACTIONS(2054), }, [STATE(130)] = { - [sym_caption] = STATE(3261), - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [anon_sym_COLON] = ACTIONS(2047), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym_list_marker_star] = STATE(17), + [sym__list_item_star] = STATE(130), + [aux_sym__list_star_repeat1] = STATE(130), + [anon_sym_COLON] = ACTIONS(2061), + [sym_entity_reference] = ACTIONS(2061), + [sym_numeric_character_reference] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_BANG_LBRACK] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [aux_sym_pandoc_str_token1] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2061), + [sym__whitespace] = ACTIONS(2061), + [sym__line_ending] = ACTIONS(2061), + [sym__soft_line_ending] = ACTIONS(2061), + [sym__block_close] = ACTIONS(2061), + [sym__block_quote_start] = ACTIONS(2061), + [sym_atx_h1_marker] = ACTIONS(2061), + [sym_atx_h2_marker] = ACTIONS(2061), + [sym_atx_h3_marker] = ACTIONS(2061), + [sym_atx_h4_marker] = ACTIONS(2061), + [sym_atx_h5_marker] = ACTIONS(2061), + [sym_atx_h6_marker] = ACTIONS(2061), + [sym__thematic_break] = ACTIONS(2061), + [sym__list_marker_minus] = ACTIONS(2061), + [sym__list_marker_plus] = ACTIONS(2061), + [sym__list_marker_star] = ACTIONS(2065), + [sym__list_marker_parenthesis] = ACTIONS(2061), + [sym__list_marker_dot] = ACTIONS(2061), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_example] = ACTIONS(2061), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2061), + [sym__fenced_code_block_start_backtick] = ACTIONS(2061), + [sym_minus_metadata] = ACTIONS(2061), + [sym__pipe_table_start] = ACTIONS(2061), + [sym__fenced_div_start] = ACTIONS(2061), + [sym__fenced_div_end] = ACTIONS(2061), + [sym_ref_id_specifier] = ACTIONS(2061), + [sym__code_span_start] = ACTIONS(2061), + [sym__html_comment] = ACTIONS(2061), + [sym__autolink] = ACTIONS(2061), + [sym__highlight_span_start] = ACTIONS(2061), + [sym__insert_span_start] = ACTIONS(2061), + [sym__delete_span_start] = ACTIONS(2061), + [sym__edit_comment_span_start] = ACTIONS(2061), + [sym__single_quote_span_open] = ACTIONS(2061), + [sym__double_quote_span_open] = ACTIONS(2061), + [sym__shortcode_open_escaped] = ACTIONS(2061), + [sym__shortcode_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2061), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2061), + [sym__cite_author_in_text] = ACTIONS(2061), + [sym__cite_suppress_author] = ACTIONS(2061), + [sym__strikeout_open] = ACTIONS(2061), + [sym__subscript_open] = ACTIONS(2061), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2061), + [sym__strong_emphasis_open_star] = ACTIONS(2061), + [sym__strong_emphasis_open_underscore] = ACTIONS(2061), + [sym__emphasis_open_star] = ACTIONS(2061), + [sym__emphasis_open_underscore] = ACTIONS(2061), + [sym_inline_note_reference] = ACTIONS(2061), + [sym_html_element] = ACTIONS(2061), + [sym__pandoc_line_break] = ACTIONS(2061), + [sym_grid_table] = ACTIONS(2061), }, [STATE(131)] = { - [sym_caption] = STATE(3262), - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [anon_sym_COLON] = ACTIONS(2047), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym_list_marker_dot] = STATE(18), + [sym__list_item_dot] = STATE(131), + [aux_sym__list_dot_repeat1] = STATE(131), + [anon_sym_COLON] = ACTIONS(2068), + [sym_entity_reference] = ACTIONS(2068), + [sym_numeric_character_reference] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [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__whitespace] = ACTIONS(2068), + [sym__line_ending] = ACTIONS(2068), + [sym__soft_line_ending] = ACTIONS(2068), + [sym__block_close] = 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(2072), + [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(2072), + [sym__list_marker_example] = ACTIONS(2068), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2068), + [sym__fenced_code_block_start_backtick] = ACTIONS(2068), + [sym_minus_metadata] = ACTIONS(2068), + [sym__pipe_table_start] = ACTIONS(2068), + [sym__fenced_div_start] = ACTIONS(2068), + [sym__fenced_div_end] = 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_line_break] = ACTIONS(2068), + [sym_grid_table] = ACTIONS(2068), }, [STATE(132)] = { - [sym_caption] = STATE(3237), - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [anon_sym_COLON] = ACTIONS(2047), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), + [sym_list_marker_plus] = STATE(15), + [sym__list_item_plus] = STATE(128), + [aux_sym__list_plus_repeat1] = STATE(128), + [anon_sym_COLON] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2075), + [sym_numeric_character_reference] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_BANG_LBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [aux_sym_pandoc_str_token1] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2075), + [sym__whitespace] = ACTIONS(2075), + [sym__line_ending] = ACTIONS(2075), + [sym__soft_line_ending] = ACTIONS(2075), + [sym__block_close] = ACTIONS(2075), + [sym__block_quote_start] = ACTIONS(2075), + [sym_atx_h1_marker] = ACTIONS(2075), + [sym_atx_h2_marker] = ACTIONS(2075), + [sym_atx_h3_marker] = ACTIONS(2075), + [sym_atx_h4_marker] = ACTIONS(2075), + [sym_atx_h5_marker] = ACTIONS(2075), + [sym_atx_h6_marker] = ACTIONS(2075), + [sym__thematic_break] = ACTIONS(2075), + [sym__list_marker_minus] = ACTIONS(2075), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(2075), + [sym__list_marker_parenthesis] = ACTIONS(2075), + [sym__list_marker_dot] = ACTIONS(2075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_example] = ACTIONS(2075), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2075), + [sym__fenced_code_block_start_backtick] = ACTIONS(2075), + [sym_minus_metadata] = ACTIONS(2075), + [sym__pipe_table_start] = ACTIONS(2075), + [sym__fenced_div_start] = ACTIONS(2075), + [sym__fenced_div_end] = ACTIONS(2075), + [sym_ref_id_specifier] = ACTIONS(2075), + [sym__code_span_start] = ACTIONS(2075), + [sym__html_comment] = ACTIONS(2075), + [sym__autolink] = ACTIONS(2075), + [sym__highlight_span_start] = ACTIONS(2075), + [sym__insert_span_start] = ACTIONS(2075), [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym__edit_comment_span_start] = ACTIONS(2075), + [sym__single_quote_span_open] = ACTIONS(2075), + [sym__double_quote_span_open] = ACTIONS(2075), + [sym__shortcode_open_escaped] = ACTIONS(2075), + [sym__shortcode_open] = ACTIONS(2075), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2075), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2075), + [sym__cite_author_in_text] = ACTIONS(2075), + [sym__cite_suppress_author] = ACTIONS(2075), + [sym__strikeout_open] = ACTIONS(2075), + [sym__subscript_open] = ACTIONS(2075), + [sym__superscript_open] = ACTIONS(2075), + [sym__inline_note_start_token] = ACTIONS(2075), + [sym__strong_emphasis_open_star] = ACTIONS(2075), + [sym__strong_emphasis_open_underscore] = ACTIONS(2075), + [sym__emphasis_open_star] = ACTIONS(2075), + [sym__emphasis_open_underscore] = ACTIONS(2075), + [sym_inline_note_reference] = ACTIONS(2075), + [sym_html_element] = ACTIONS(2075), + [sym__pandoc_line_break] = ACTIONS(2075), + [sym_grid_table] = ACTIONS(2075), }, [STATE(133)] = { - [sym_caption] = STATE(3186), - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [anon_sym_COLON] = ACTIONS(2047), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), + [sym_list_marker_minus] = STATE(16), + [sym__list_item_minus] = STATE(129), + [aux_sym__list_minus_repeat1] = STATE(129), + [anon_sym_COLON] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BANG_LBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [aux_sym_pandoc_str_token1] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2079), + [sym__whitespace] = ACTIONS(2079), + [sym__line_ending] = ACTIONS(2079), + [sym__soft_line_ending] = ACTIONS(2079), + [sym__block_close] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(2079), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_example] = ACTIONS(2079), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym_minus_metadata] = ACTIONS(2079), + [sym__pipe_table_start] = ACTIONS(2079), + [sym__fenced_div_start] = ACTIONS(2079), + [sym__fenced_div_end] = ACTIONS(2079), + [sym_ref_id_specifier] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__html_comment] = ACTIONS(2079), + [sym__autolink] = ACTIONS(2079), + [sym__highlight_span_start] = ACTIONS(2079), + [sym__insert_span_start] = ACTIONS(2079), + [sym__delete_span_start] = ACTIONS(2079), + [sym__edit_comment_span_start] = ACTIONS(2079), [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym__double_quote_span_open] = ACTIONS(2079), + [sym__shortcode_open_escaped] = ACTIONS(2079), + [sym__shortcode_open] = ACTIONS(2079), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2079), + [sym__cite_author_in_text] = ACTIONS(2079), + [sym__cite_suppress_author] = ACTIONS(2079), + [sym__strikeout_open] = ACTIONS(2079), + [sym__subscript_open] = ACTIONS(2079), + [sym__superscript_open] = ACTIONS(2079), + [sym__inline_note_start_token] = ACTIONS(2079), + [sym__strong_emphasis_open_star] = ACTIONS(2079), + [sym__strong_emphasis_open_underscore] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), + [sym_inline_note_reference] = ACTIONS(2079), + [sym_html_element] = ACTIONS(2079), + [sym__pandoc_line_break] = ACTIONS(2079), + [sym_grid_table] = ACTIONS(2079), }, [STATE(134)] = { - [sym_list_marker_plus] = STATE(14), - [sym__list_item_plus] = STATE(134), - [aux_sym__list_plus_repeat1] = STATE(134), - [anon_sym_COLON] = ACTIONS(2113), - [sym_entity_reference] = ACTIONS(2113), - [sym_numeric_character_reference] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_BANG_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [aux_sym_pandoc_str_token1] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2113), - [sym__whitespace] = ACTIONS(2113), - [sym__line_ending] = ACTIONS(2113), - [sym__soft_line_ending] = ACTIONS(2113), - [sym__block_close] = ACTIONS(2113), - [sym__block_quote_start] = ACTIONS(2113), - [sym_atx_h1_marker] = ACTIONS(2113), - [sym_atx_h2_marker] = ACTIONS(2113), - [sym_atx_h3_marker] = ACTIONS(2113), - [sym_atx_h4_marker] = ACTIONS(2113), - [sym_atx_h5_marker] = ACTIONS(2113), - [sym_atx_h6_marker] = ACTIONS(2113), - [sym__thematic_break] = ACTIONS(2113), - [sym__list_marker_minus] = ACTIONS(2113), - [sym__list_marker_plus] = ACTIONS(2117), - [sym__list_marker_star] = ACTIONS(2113), - [sym__list_marker_parenthesis] = ACTIONS(2113), - [sym__list_marker_dot] = ACTIONS(2113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2117), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_example] = ACTIONS(2113), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2113), - [sym__fenced_code_block_start_backtick] = ACTIONS(2113), - [sym_minus_metadata] = ACTIONS(2113), - [sym__pipe_table_start] = ACTIONS(2113), - [sym__fenced_div_start] = ACTIONS(2113), - [sym__fenced_div_end] = ACTIONS(2113), - [sym_ref_id_specifier] = ACTIONS(2113), - [sym__code_span_start] = ACTIONS(2113), - [sym__html_comment] = ACTIONS(2113), - [sym__autolink] = ACTIONS(2113), - [sym__highlight_span_start] = ACTIONS(2113), - [sym__insert_span_start] = ACTIONS(2113), - [sym__delete_span_start] = ACTIONS(2113), - [sym__edit_comment_span_start] = ACTIONS(2113), - [sym__single_quote_span_open] = ACTIONS(2113), - [sym__double_quote_span_open] = ACTIONS(2113), - [sym__shortcode_open_escaped] = ACTIONS(2113), - [sym__shortcode_open] = ACTIONS(2113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2113), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2113), - [sym__cite_author_in_text] = ACTIONS(2113), - [sym__cite_suppress_author] = ACTIONS(2113), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2113), - [sym__superscript_open] = ACTIONS(2113), - [sym__inline_note_start_token] = ACTIONS(2113), - [sym__strong_emphasis_open_star] = ACTIONS(2113), - [sym__strong_emphasis_open_underscore] = ACTIONS(2113), - [sym__emphasis_open_star] = ACTIONS(2113), - [sym__emphasis_open_underscore] = ACTIONS(2113), - [sym_inline_note_reference] = ACTIONS(2113), - [sym_html_element] = ACTIONS(2113), - [sym__pandoc_line_break] = ACTIONS(2113), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_parenthesis] = STATE(134), + [aux_sym__list_parenthesis_repeat1] = STATE(134), + [anon_sym_COLON] = ACTIONS(2083), + [sym_entity_reference] = ACTIONS(2083), + [sym_numeric_character_reference] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_BANG_LBRACK] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [aux_sym_pandoc_str_token1] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2083), + [sym__whitespace] = ACTIONS(2083), + [sym__line_ending] = ACTIONS(2083), + [sym__soft_line_ending] = ACTIONS(2083), + [sym__block_close] = ACTIONS(2083), + [sym__block_quote_start] = ACTIONS(2083), + [sym_atx_h1_marker] = ACTIONS(2083), + [sym_atx_h2_marker] = ACTIONS(2083), + [sym_atx_h3_marker] = ACTIONS(2083), + [sym_atx_h4_marker] = ACTIONS(2083), + [sym_atx_h5_marker] = ACTIONS(2083), + [sym_atx_h6_marker] = ACTIONS(2083), + [sym__thematic_break] = ACTIONS(2083), + [sym__list_marker_minus] = ACTIONS(2083), + [sym__list_marker_plus] = ACTIONS(2083), + [sym__list_marker_star] = ACTIONS(2083), + [sym__list_marker_parenthesis] = ACTIONS(2087), + [sym__list_marker_dot] = ACTIONS(2083), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2087), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_example] = ACTIONS(2083), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2083), + [sym__fenced_code_block_start_backtick] = ACTIONS(2083), + [sym_minus_metadata] = ACTIONS(2083), + [sym__pipe_table_start] = ACTIONS(2083), + [sym__fenced_div_start] = ACTIONS(2083), + [sym__fenced_div_end] = ACTIONS(2083), + [sym_ref_id_specifier] = ACTIONS(2083), + [sym__code_span_start] = ACTIONS(2083), + [sym__html_comment] = ACTIONS(2083), + [sym__autolink] = ACTIONS(2083), + [sym__highlight_span_start] = ACTIONS(2083), + [sym__insert_span_start] = ACTIONS(2083), + [sym__delete_span_start] = ACTIONS(2083), + [sym__edit_comment_span_start] = ACTIONS(2083), + [sym__single_quote_span_open] = ACTIONS(2083), + [sym__double_quote_span_open] = ACTIONS(2083), + [sym__shortcode_open_escaped] = ACTIONS(2083), + [sym__shortcode_open] = ACTIONS(2083), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2083), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2083), + [sym__cite_author_in_text] = ACTIONS(2083), + [sym__cite_suppress_author] = ACTIONS(2083), + [sym__strikeout_open] = ACTIONS(2083), + [sym__subscript_open] = ACTIONS(2083), + [sym__superscript_open] = ACTIONS(2083), + [sym__inline_note_start_token] = ACTIONS(2083), + [sym__strong_emphasis_open_star] = ACTIONS(2083), + [sym__strong_emphasis_open_underscore] = ACTIONS(2083), + [sym__emphasis_open_star] = ACTIONS(2083), + [sym__emphasis_open_underscore] = ACTIONS(2083), + [sym_inline_note_reference] = ACTIONS(2083), + [sym_html_element] = ACTIONS(2083), + [sym__pandoc_line_break] = ACTIONS(2083), + [sym_grid_table] = ACTIONS(2083), }, [STATE(135)] = { - [sym_list_marker_parenthesis] = STATE(18), - [sym__list_item_parenthesis] = STATE(135), - [aux_sym__list_parenthesis_repeat1] = STATE(135), - [anon_sym_COLON] = ACTIONS(2120), - [sym_entity_reference] = ACTIONS(2120), - [sym_numeric_character_reference] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_BANG_LBRACK] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [aux_sym_pandoc_str_token1] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2120), - [sym__whitespace] = ACTIONS(2120), - [sym__line_ending] = ACTIONS(2120), - [sym__soft_line_ending] = ACTIONS(2120), - [sym__block_close] = ACTIONS(2120), - [sym__block_quote_start] = ACTIONS(2120), - [sym_atx_h1_marker] = ACTIONS(2120), - [sym_atx_h2_marker] = ACTIONS(2120), - [sym_atx_h3_marker] = ACTIONS(2120), - [sym_atx_h4_marker] = ACTIONS(2120), - [sym_atx_h5_marker] = ACTIONS(2120), - [sym_atx_h6_marker] = ACTIONS(2120), - [sym__thematic_break] = ACTIONS(2120), - [sym__list_marker_minus] = ACTIONS(2120), - [sym__list_marker_plus] = ACTIONS(2120), - [sym__list_marker_star] = ACTIONS(2120), - [sym__list_marker_parenthesis] = ACTIONS(2124), - [sym__list_marker_dot] = ACTIONS(2120), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_example] = ACTIONS(2120), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2120), - [sym__fenced_code_block_start_backtick] = ACTIONS(2120), - [sym_minus_metadata] = ACTIONS(2120), - [sym__pipe_table_start] = ACTIONS(2120), - [sym__fenced_div_start] = ACTIONS(2120), - [sym__fenced_div_end] = ACTIONS(2120), - [sym_ref_id_specifier] = ACTIONS(2120), - [sym__code_span_start] = ACTIONS(2120), - [sym__html_comment] = ACTIONS(2120), - [sym__autolink] = ACTIONS(2120), - [sym__highlight_span_start] = ACTIONS(2120), - [sym__insert_span_start] = ACTIONS(2120), - [sym__delete_span_start] = ACTIONS(2120), - [sym__edit_comment_span_start] = ACTIONS(2120), - [sym__single_quote_span_open] = ACTIONS(2120), - [sym__double_quote_span_open] = ACTIONS(2120), - [sym__shortcode_open_escaped] = ACTIONS(2120), - [sym__shortcode_open] = ACTIONS(2120), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2120), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2120), - [sym__cite_author_in_text] = ACTIONS(2120), - [sym__cite_suppress_author] = ACTIONS(2120), - [sym__strikeout_open] = ACTIONS(2120), - [sym__subscript_open] = ACTIONS(2120), - [sym__superscript_open] = ACTIONS(2120), - [sym__inline_note_start_token] = ACTIONS(2120), - [sym__strong_emphasis_open_star] = ACTIONS(2120), - [sym__strong_emphasis_open_underscore] = ACTIONS(2120), - [sym__emphasis_open_star] = ACTIONS(2120), - [sym__emphasis_open_underscore] = ACTIONS(2120), - [sym_inline_note_reference] = ACTIONS(2120), - [sym_html_element] = ACTIONS(2120), - [sym__pandoc_line_break] = ACTIONS(2120), + [sym_list_marker_star] = STATE(17), + [sym__list_item_star] = STATE(130), + [aux_sym__list_star_repeat1] = STATE(130), + [anon_sym_COLON] = ACTIONS(2090), + [sym_entity_reference] = ACTIONS(2090), + [sym_numeric_character_reference] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_BANG_LBRACK] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [aux_sym_pandoc_str_token1] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2090), + [sym__whitespace] = ACTIONS(2090), + [sym__line_ending] = ACTIONS(2090), + [sym__soft_line_ending] = ACTIONS(2090), + [sym__block_close] = ACTIONS(2090), + [sym__block_quote_start] = ACTIONS(2090), + [sym_atx_h1_marker] = ACTIONS(2090), + [sym_atx_h2_marker] = ACTIONS(2090), + [sym_atx_h3_marker] = ACTIONS(2090), + [sym_atx_h4_marker] = ACTIONS(2090), + [sym_atx_h5_marker] = ACTIONS(2090), + [sym_atx_h6_marker] = ACTIONS(2090), + [sym__thematic_break] = ACTIONS(2090), + [sym__list_marker_minus] = ACTIONS(2090), + [sym__list_marker_plus] = ACTIONS(2090), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(2090), + [sym__list_marker_dot] = ACTIONS(2090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_example] = ACTIONS(2090), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2090), + [sym__fenced_code_block_start_backtick] = ACTIONS(2090), + [sym_minus_metadata] = ACTIONS(2090), + [sym__pipe_table_start] = ACTIONS(2090), + [sym__fenced_div_start] = ACTIONS(2090), + [sym__fenced_div_end] = ACTIONS(2090), + [sym_ref_id_specifier] = ACTIONS(2090), + [sym__code_span_start] = ACTIONS(2090), + [sym__html_comment] = ACTIONS(2090), + [sym__autolink] = ACTIONS(2090), + [sym__highlight_span_start] = ACTIONS(2090), + [sym__insert_span_start] = ACTIONS(2090), + [sym__delete_span_start] = ACTIONS(2090), + [sym__edit_comment_span_start] = ACTIONS(2090), + [sym__single_quote_span_open] = ACTIONS(2090), + [sym__double_quote_span_open] = ACTIONS(2090), + [sym__shortcode_open_escaped] = ACTIONS(2090), + [sym__shortcode_open] = ACTIONS(2090), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2090), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2090), + [sym__cite_author_in_text] = ACTIONS(2090), + [sym__cite_suppress_author] = ACTIONS(2090), + [sym__strikeout_open] = ACTIONS(2090), + [sym__subscript_open] = ACTIONS(2090), + [sym__superscript_open] = ACTIONS(2090), + [sym__inline_note_start_token] = ACTIONS(2090), + [sym__strong_emphasis_open_star] = ACTIONS(2090), + [sym__strong_emphasis_open_underscore] = ACTIONS(2090), + [sym__emphasis_open_star] = ACTIONS(2090), + [sym__emphasis_open_underscore] = ACTIONS(2090), + [sym_inline_note_reference] = ACTIONS(2090), + [sym_html_element] = ACTIONS(2090), + [sym__pandoc_line_break] = ACTIONS(2090), + [sym_grid_table] = ACTIONS(2090), }, [STATE(136)] = { - [sym_list_marker_example] = STATE(19), + [sym_list_marker_example] = STATE(2), [sym__list_item_example] = STATE(136), [aux_sym__list_example_repeat1] = STATE(136), - [anon_sym_COLON] = ACTIONS(2127), - [sym_entity_reference] = ACTIONS(2127), - [sym_numeric_character_reference] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_BANG_LBRACK] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [aux_sym_pandoc_str_token1] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2127), - [sym__whitespace] = ACTIONS(2127), - [sym__line_ending] = ACTIONS(2127), - [sym__soft_line_ending] = ACTIONS(2127), - [sym__block_close] = ACTIONS(2127), - [sym__block_quote_start] = ACTIONS(2127), - [sym_atx_h1_marker] = ACTIONS(2127), - [sym_atx_h2_marker] = ACTIONS(2127), - [sym_atx_h3_marker] = ACTIONS(2127), - [sym_atx_h4_marker] = ACTIONS(2127), - [sym_atx_h5_marker] = ACTIONS(2127), - [sym_atx_h6_marker] = ACTIONS(2127), - [sym__thematic_break] = ACTIONS(2127), - [sym__list_marker_minus] = ACTIONS(2127), - [sym__list_marker_plus] = ACTIONS(2127), - [sym__list_marker_star] = ACTIONS(2127), - [sym__list_marker_parenthesis] = ACTIONS(2127), - [sym__list_marker_dot] = ACTIONS(2127), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_example] = ACTIONS(2131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2131), - [sym__fenced_code_block_start_backtick] = ACTIONS(2127), - [sym_minus_metadata] = ACTIONS(2127), - [sym__pipe_table_start] = ACTIONS(2127), - [sym__fenced_div_start] = ACTIONS(2127), - [sym__fenced_div_end] = ACTIONS(2127), - [sym_ref_id_specifier] = ACTIONS(2127), - [sym__code_span_start] = ACTIONS(2127), - [sym__html_comment] = ACTIONS(2127), - [sym__autolink] = ACTIONS(2127), - [sym__highlight_span_start] = ACTIONS(2127), - [sym__insert_span_start] = ACTIONS(2127), - [sym__delete_span_start] = ACTIONS(2127), - [sym__edit_comment_span_start] = ACTIONS(2127), - [sym__single_quote_span_open] = ACTIONS(2127), - [sym__double_quote_span_open] = ACTIONS(2127), - [sym__shortcode_open_escaped] = ACTIONS(2127), - [sym__shortcode_open] = ACTIONS(2127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2127), - [sym__cite_author_in_text] = ACTIONS(2127), - [sym__cite_suppress_author] = ACTIONS(2127), - [sym__strikeout_open] = ACTIONS(2127), - [sym__subscript_open] = ACTIONS(2127), - [sym__superscript_open] = ACTIONS(2127), - [sym__inline_note_start_token] = ACTIONS(2127), - [sym__strong_emphasis_open_star] = ACTIONS(2127), - [sym__strong_emphasis_open_underscore] = ACTIONS(2127), - [sym__emphasis_open_star] = ACTIONS(2127), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2127), - [sym_html_element] = ACTIONS(2127), - [sym__pandoc_line_break] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2094), + [sym_entity_reference] = ACTIONS(2094), + [sym_numeric_character_reference] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_BANG_LBRACK] = ACTIONS(2094), + [anon_sym_DOLLAR] = ACTIONS(2096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [aux_sym_pandoc_str_token1] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2094), + [sym__whitespace] = ACTIONS(2094), + [sym__line_ending] = ACTIONS(2094), + [sym__soft_line_ending] = ACTIONS(2094), + [sym__block_close] = ACTIONS(2094), + [sym__block_quote_start] = ACTIONS(2094), + [sym_atx_h1_marker] = ACTIONS(2094), + [sym_atx_h2_marker] = ACTIONS(2094), + [sym_atx_h3_marker] = ACTIONS(2094), + [sym_atx_h4_marker] = ACTIONS(2094), + [sym_atx_h5_marker] = ACTIONS(2094), + [sym_atx_h6_marker] = ACTIONS(2094), + [sym__thematic_break] = ACTIONS(2094), + [sym__list_marker_minus] = ACTIONS(2094), + [sym__list_marker_plus] = ACTIONS(2094), + [sym__list_marker_star] = ACTIONS(2094), + [sym__list_marker_parenthesis] = ACTIONS(2094), + [sym__list_marker_dot] = ACTIONS(2094), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_example] = ACTIONS(2098), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2098), + [sym__fenced_code_block_start_backtick] = ACTIONS(2094), + [sym_minus_metadata] = ACTIONS(2094), + [sym__pipe_table_start] = ACTIONS(2094), + [sym__fenced_div_start] = ACTIONS(2094), + [sym__fenced_div_end] = ACTIONS(2094), + [sym_ref_id_specifier] = ACTIONS(2094), + [sym__code_span_start] = ACTIONS(2094), + [sym__html_comment] = ACTIONS(2094), + [sym__autolink] = ACTIONS(2094), + [sym__highlight_span_start] = ACTIONS(2094), + [sym__insert_span_start] = ACTIONS(2094), + [sym__delete_span_start] = ACTIONS(2094), + [sym__edit_comment_span_start] = ACTIONS(2094), + [sym__single_quote_span_open] = ACTIONS(2094), + [sym__double_quote_span_open] = ACTIONS(2094), + [sym__shortcode_open_escaped] = ACTIONS(2094), + [sym__shortcode_open] = ACTIONS(2094), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2094), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2094), + [sym__cite_author_in_text] = ACTIONS(2094), + [sym__cite_suppress_author] = ACTIONS(2094), + [sym__strikeout_open] = ACTIONS(2094), + [sym__subscript_open] = ACTIONS(2094), + [sym__superscript_open] = ACTIONS(2094), + [sym__inline_note_start_token] = ACTIONS(2094), + [sym__strong_emphasis_open_star] = ACTIONS(2094), + [sym__strong_emphasis_open_underscore] = ACTIONS(2094), + [sym__emphasis_open_star] = ACTIONS(2094), + [sym__emphasis_open_underscore] = ACTIONS(2094), + [sym_inline_note_reference] = ACTIONS(2094), + [sym_html_element] = ACTIONS(2094), + [sym__pandoc_line_break] = ACTIONS(2094), + [sym_grid_table] = ACTIONS(2094), }, [STATE(137)] = { - [sym_list_marker_plus] = STATE(14), - [sym__list_item_plus] = STATE(134), - [aux_sym__list_plus_repeat1] = STATE(134), - [anon_sym_COLON] = ACTIONS(2134), - [sym_entity_reference] = ACTIONS(2134), - [sym_numeric_character_reference] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_BANG_LBRACK] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [aux_sym_pandoc_str_token1] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2134), - [sym__whitespace] = ACTIONS(2134), - [sym__line_ending] = ACTIONS(2134), - [sym__soft_line_ending] = ACTIONS(2134), - [sym__block_close] = ACTIONS(2134), - [sym__block_quote_start] = ACTIONS(2134), - [sym_atx_h1_marker] = ACTIONS(2134), - [sym_atx_h2_marker] = ACTIONS(2134), - [sym_atx_h3_marker] = ACTIONS(2134), - [sym_atx_h4_marker] = ACTIONS(2134), - [sym_atx_h5_marker] = ACTIONS(2134), - [sym_atx_h6_marker] = ACTIONS(2134), - [sym__thematic_break] = ACTIONS(2134), - [sym__list_marker_minus] = ACTIONS(2134), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(2134), - [sym__list_marker_parenthesis] = ACTIONS(2134), - [sym__list_marker_dot] = ACTIONS(2134), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_example] = ACTIONS(2134), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2134), - [sym__fenced_code_block_start_backtick] = ACTIONS(2134), - [sym_minus_metadata] = ACTIONS(2134), - [sym__pipe_table_start] = ACTIONS(2134), - [sym__fenced_div_start] = ACTIONS(2134), - [sym__fenced_div_end] = ACTIONS(2134), - [sym_ref_id_specifier] = ACTIONS(2134), - [sym__code_span_start] = ACTIONS(2134), - [sym__html_comment] = ACTIONS(2134), - [sym__autolink] = ACTIONS(2134), - [sym__highlight_span_start] = ACTIONS(2134), - [sym__insert_span_start] = ACTIONS(2134), - [sym__delete_span_start] = ACTIONS(2134), - [sym__edit_comment_span_start] = ACTIONS(2134), - [sym__single_quote_span_open] = ACTIONS(2134), - [sym__double_quote_span_open] = ACTIONS(2134), - [sym__shortcode_open_escaped] = ACTIONS(2134), - [sym__shortcode_open] = ACTIONS(2134), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2134), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2134), - [sym__cite_author_in_text] = ACTIONS(2134), - [sym__cite_suppress_author] = ACTIONS(2134), - [sym__strikeout_open] = ACTIONS(2134), - [sym__subscript_open] = ACTIONS(2134), - [sym__superscript_open] = ACTIONS(2134), - [sym__inline_note_start_token] = ACTIONS(2134), - [sym__strong_emphasis_open_star] = ACTIONS(2134), - [sym__strong_emphasis_open_underscore] = ACTIONS(2134), - [sym__emphasis_open_star] = ACTIONS(2134), - [sym__emphasis_open_underscore] = ACTIONS(2134), - [sym_inline_note_reference] = ACTIONS(2134), - [sym_html_element] = ACTIONS(2134), - [sym__pandoc_line_break] = ACTIONS(2134), + [sym_list_marker_dot] = STATE(18), + [sym__list_item_dot] = STATE(131), + [aux_sym__list_dot_repeat1] = STATE(131), + [anon_sym_COLON] = ACTIONS(2101), + [sym_entity_reference] = ACTIONS(2101), + [sym_numeric_character_reference] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_BANG_LBRACK] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2103), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [aux_sym_pandoc_str_token1] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2101), + [sym__whitespace] = ACTIONS(2101), + [sym__line_ending] = ACTIONS(2101), + [sym__soft_line_ending] = ACTIONS(2101), + [sym__block_close] = ACTIONS(2101), + [sym__block_quote_start] = ACTIONS(2101), + [sym_atx_h1_marker] = ACTIONS(2101), + [sym_atx_h2_marker] = ACTIONS(2101), + [sym_atx_h3_marker] = ACTIONS(2101), + [sym_atx_h4_marker] = ACTIONS(2101), + [sym_atx_h5_marker] = ACTIONS(2101), + [sym_atx_h6_marker] = ACTIONS(2101), + [sym__thematic_break] = ACTIONS(2101), + [sym__list_marker_minus] = ACTIONS(2101), + [sym__list_marker_plus] = ACTIONS(2101), + [sym__list_marker_star] = ACTIONS(2101), + [sym__list_marker_parenthesis] = ACTIONS(2101), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(2101), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2101), + [sym__fenced_code_block_start_backtick] = ACTIONS(2101), + [sym_minus_metadata] = ACTIONS(2101), + [sym__pipe_table_start] = ACTIONS(2101), + [sym__fenced_div_start] = ACTIONS(2101), + [sym__fenced_div_end] = ACTIONS(2101), + [sym_ref_id_specifier] = ACTIONS(2101), + [sym__code_span_start] = ACTIONS(2101), + [sym__html_comment] = ACTIONS(2101), + [sym__autolink] = ACTIONS(2101), + [sym__highlight_span_start] = ACTIONS(2101), + [sym__insert_span_start] = ACTIONS(2101), + [sym__delete_span_start] = ACTIONS(2101), + [sym__edit_comment_span_start] = ACTIONS(2101), + [sym__single_quote_span_open] = ACTIONS(2101), + [sym__double_quote_span_open] = ACTIONS(2101), + [sym__shortcode_open_escaped] = ACTIONS(2101), + [sym__shortcode_open] = ACTIONS(2101), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2101), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2101), + [sym__cite_author_in_text] = ACTIONS(2101), + [sym__cite_suppress_author] = ACTIONS(2101), + [sym__strikeout_open] = ACTIONS(2101), + [sym__subscript_open] = ACTIONS(2101), + [sym__superscript_open] = ACTIONS(2101), + [sym__inline_note_start_token] = ACTIONS(2101), + [sym__strong_emphasis_open_star] = ACTIONS(2101), + [sym__strong_emphasis_open_underscore] = ACTIONS(2101), + [sym__emphasis_open_star] = ACTIONS(2101), + [sym__emphasis_open_underscore] = ACTIONS(2101), + [sym_inline_note_reference] = ACTIONS(2101), + [sym_html_element] = ACTIONS(2101), + [sym__pandoc_line_break] = ACTIONS(2101), + [sym_grid_table] = ACTIONS(2101), }, [STATE(138)] = { - [sym_list_marker_minus] = STATE(15), - [sym__list_item_minus] = STATE(139), - [aux_sym__list_minus_repeat1] = STATE(139), - [anon_sym_COLON] = ACTIONS(2138), - [sym_entity_reference] = ACTIONS(2138), - [sym_numeric_character_reference] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_BANG_LBRACK] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [aux_sym_pandoc_str_token1] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(2138), - [sym__line_ending] = ACTIONS(2138), - [sym__soft_line_ending] = ACTIONS(2138), - [sym__block_close] = ACTIONS(2138), - [sym__block_quote_start] = ACTIONS(2138), - [sym_atx_h1_marker] = ACTIONS(2138), - [sym_atx_h2_marker] = ACTIONS(2138), - [sym_atx_h3_marker] = ACTIONS(2138), - [sym_atx_h4_marker] = ACTIONS(2138), - [sym_atx_h5_marker] = ACTIONS(2138), - [sym_atx_h6_marker] = ACTIONS(2138), - [sym__thematic_break] = ACTIONS(2138), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(2138), - [sym__list_marker_star] = ACTIONS(2138), - [sym__list_marker_parenthesis] = ACTIONS(2138), - [sym__list_marker_dot] = ACTIONS(2138), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_example] = ACTIONS(2138), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2138), - [sym__fenced_code_block_start_backtick] = ACTIONS(2138), - [sym_minus_metadata] = ACTIONS(2138), - [sym__pipe_table_start] = ACTIONS(2138), - [sym__fenced_div_start] = ACTIONS(2138), - [sym__fenced_div_end] = ACTIONS(2138), - [sym_ref_id_specifier] = ACTIONS(2138), - [sym__code_span_start] = ACTIONS(2138), - [sym__html_comment] = ACTIONS(2138), - [sym__autolink] = ACTIONS(2138), - [sym__highlight_span_start] = ACTIONS(2138), - [sym__insert_span_start] = ACTIONS(2138), - [sym__delete_span_start] = ACTIONS(2138), - [sym__edit_comment_span_start] = ACTIONS(2138), - [sym__single_quote_span_open] = ACTIONS(2138), - [sym__double_quote_span_open] = ACTIONS(2138), - [sym__shortcode_open_escaped] = ACTIONS(2138), - [sym__shortcode_open] = ACTIONS(2138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2138), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2138), - [sym__cite_author_in_text] = ACTIONS(2138), - [sym__cite_suppress_author] = ACTIONS(2138), - [sym__strikeout_open] = ACTIONS(2138), - [sym__subscript_open] = ACTIONS(2138), - [sym__superscript_open] = ACTIONS(2138), - [sym__inline_note_start_token] = ACTIONS(2138), - [sym__strong_emphasis_open_star] = ACTIONS(2138), - [sym__strong_emphasis_open_underscore] = ACTIONS(2138), - [sym__emphasis_open_star] = ACTIONS(2138), - [sym__emphasis_open_underscore] = ACTIONS(2138), - [sym_inline_note_reference] = ACTIONS(2138), - [sym_html_element] = ACTIONS(2138), - [sym__pandoc_line_break] = ACTIONS(2138), + [sym_caption] = STATE(3211), + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [anon_sym_COLON] = ACTIONS(2105), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(139)] = { - [sym_list_marker_minus] = STATE(15), - [sym__list_item_minus] = STATE(139), - [aux_sym__list_minus_repeat1] = STATE(139), - [anon_sym_COLON] = ACTIONS(2142), - [sym_entity_reference] = ACTIONS(2142), - [sym_numeric_character_reference] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_BANG_LBRACK] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [aux_sym_pandoc_str_token1] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2142), - [sym__whitespace] = ACTIONS(2142), - [sym__line_ending] = ACTIONS(2142), - [sym__soft_line_ending] = ACTIONS(2142), - [sym__block_close] = ACTIONS(2142), - [sym__block_quote_start] = ACTIONS(2142), - [sym_atx_h1_marker] = ACTIONS(2142), - [sym_atx_h2_marker] = ACTIONS(2142), - [sym_atx_h3_marker] = ACTIONS(2142), - [sym_atx_h4_marker] = ACTIONS(2142), - [sym_atx_h5_marker] = ACTIONS(2142), - [sym_atx_h6_marker] = ACTIONS(2142), - [sym__thematic_break] = ACTIONS(2142), - [sym__list_marker_minus] = ACTIONS(2146), - [sym__list_marker_plus] = ACTIONS(2142), - [sym__list_marker_star] = ACTIONS(2142), - [sym__list_marker_parenthesis] = ACTIONS(2142), - [sym__list_marker_dot] = ACTIONS(2142), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2146), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_example] = ACTIONS(2142), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2142), - [sym__fenced_code_block_start_backtick] = ACTIONS(2142), - [sym_minus_metadata] = ACTIONS(2142), - [sym__pipe_table_start] = ACTIONS(2142), - [sym__fenced_div_start] = ACTIONS(2142), - [sym__fenced_div_end] = ACTIONS(2142), - [sym_ref_id_specifier] = ACTIONS(2142), - [sym__code_span_start] = ACTIONS(2142), - [sym__html_comment] = ACTIONS(2142), - [sym__autolink] = ACTIONS(2142), - [sym__highlight_span_start] = ACTIONS(2142), - [sym__insert_span_start] = ACTIONS(2142), - [sym__delete_span_start] = ACTIONS(2142), - [sym__edit_comment_span_start] = ACTIONS(2142), - [sym__single_quote_span_open] = ACTIONS(2142), - [sym__double_quote_span_open] = ACTIONS(2142), - [sym__shortcode_open_escaped] = ACTIONS(2142), - [sym__shortcode_open] = ACTIONS(2142), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2142), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2142), - [sym__cite_author_in_text] = ACTIONS(2142), - [sym__cite_suppress_author] = ACTIONS(2142), - [sym__strikeout_open] = ACTIONS(2142), - [sym__subscript_open] = ACTIONS(2142), - [sym__superscript_open] = ACTIONS(2142), - [sym__inline_note_start_token] = ACTIONS(2142), - [sym__strong_emphasis_open_star] = ACTIONS(2142), - [sym__strong_emphasis_open_underscore] = ACTIONS(2142), - [sym__emphasis_open_star] = ACTIONS(2142), - [sym__emphasis_open_underscore] = ACTIONS(2142), - [sym_inline_note_reference] = ACTIONS(2142), - [sym_html_element] = ACTIONS(2142), - [sym__pandoc_line_break] = ACTIONS(2142), + [sym_caption] = STATE(3261), + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [anon_sym_COLON] = ACTIONS(2105), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(140)] = { - [sym_list_marker_star] = STATE(16), - [sym__list_item_star] = STATE(140), - [aux_sym__list_star_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(2149), - [sym_entity_reference] = ACTIONS(2149), - [sym_numeric_character_reference] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_BANG_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2149), - [sym__whitespace] = ACTIONS(2149), - [sym__line_ending] = ACTIONS(2149), - [sym__soft_line_ending] = ACTIONS(2149), - [sym__block_close] = ACTIONS(2149), - [sym__block_quote_start] = ACTIONS(2149), - [sym_atx_h1_marker] = ACTIONS(2149), - [sym_atx_h2_marker] = ACTIONS(2149), - [sym_atx_h3_marker] = ACTIONS(2149), - [sym_atx_h4_marker] = ACTIONS(2149), - [sym_atx_h5_marker] = ACTIONS(2149), - [sym_atx_h6_marker] = ACTIONS(2149), - [sym__thematic_break] = ACTIONS(2149), - [sym__list_marker_minus] = ACTIONS(2149), - [sym__list_marker_plus] = ACTIONS(2149), - [sym__list_marker_star] = ACTIONS(2153), - [sym__list_marker_parenthesis] = ACTIONS(2149), - [sym__list_marker_dot] = ACTIONS(2149), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2153), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_example] = ACTIONS(2149), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2149), - [sym__fenced_code_block_start_backtick] = ACTIONS(2149), - [sym_minus_metadata] = ACTIONS(2149), - [sym__pipe_table_start] = ACTIONS(2149), - [sym__fenced_div_start] = ACTIONS(2149), - [sym__fenced_div_end] = ACTIONS(2149), - [sym_ref_id_specifier] = ACTIONS(2149), - [sym__code_span_start] = ACTIONS(2149), - [sym__html_comment] = ACTIONS(2149), - [sym__autolink] = ACTIONS(2149), - [sym__highlight_span_start] = ACTIONS(2149), - [sym__insert_span_start] = ACTIONS(2149), - [sym__delete_span_start] = ACTIONS(2149), - [sym__edit_comment_span_start] = ACTIONS(2149), - [sym__single_quote_span_open] = ACTIONS(2149), - [sym__double_quote_span_open] = ACTIONS(2149), - [sym__shortcode_open_escaped] = ACTIONS(2149), - [sym__shortcode_open] = ACTIONS(2149), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2149), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2149), + [sym_caption] = STATE(3056), + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [anon_sym_COLON] = ACTIONS(2105), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), [sym__cite_author_in_text] = ACTIONS(2149), - [sym__cite_suppress_author] = ACTIONS(2149), - [sym__strikeout_open] = ACTIONS(2149), - [sym__subscript_open] = ACTIONS(2149), - [sym__superscript_open] = ACTIONS(2149), - [sym__inline_note_start_token] = ACTIONS(2149), - [sym__strong_emphasis_open_star] = ACTIONS(2149), - [sym__strong_emphasis_open_underscore] = ACTIONS(2149), - [sym__emphasis_open_star] = ACTIONS(2149), - [sym__emphasis_open_underscore] = ACTIONS(2149), - [sym_inline_note_reference] = ACTIONS(2149), - [sym_html_element] = ACTIONS(2149), - [sym__pandoc_line_break] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(141)] = { - [sym_list_marker_star] = STATE(16), - [sym__list_item_star] = STATE(140), - [aux_sym__list_star_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(2156), - [sym_entity_reference] = ACTIONS(2156), - [sym_numeric_character_reference] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_BANG_LBRACK] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [aux_sym_pandoc_str_token1] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2156), - [sym__whitespace] = ACTIONS(2156), - [sym__line_ending] = ACTIONS(2156), - [sym__soft_line_ending] = ACTIONS(2156), - [sym__block_close] = ACTIONS(2156), - [sym__block_quote_start] = ACTIONS(2156), - [sym_atx_h1_marker] = ACTIONS(2156), - [sym_atx_h2_marker] = ACTIONS(2156), - [sym_atx_h3_marker] = ACTIONS(2156), - [sym_atx_h4_marker] = ACTIONS(2156), - [sym_atx_h5_marker] = ACTIONS(2156), - [sym_atx_h6_marker] = ACTIONS(2156), - [sym__thematic_break] = ACTIONS(2156), - [sym__list_marker_minus] = ACTIONS(2156), - [sym__list_marker_plus] = ACTIONS(2156), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(2156), - [sym__list_marker_dot] = ACTIONS(2156), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_example] = ACTIONS(2156), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2156), - [sym__fenced_code_block_start_backtick] = ACTIONS(2156), - [sym_minus_metadata] = ACTIONS(2156), - [sym__pipe_table_start] = ACTIONS(2156), - [sym__fenced_div_start] = ACTIONS(2156), - [sym__fenced_div_end] = ACTIONS(2156), - [sym_ref_id_specifier] = ACTIONS(2156), - [sym__code_span_start] = ACTIONS(2156), - [sym__html_comment] = ACTIONS(2156), - [sym__autolink] = ACTIONS(2156), - [sym__highlight_span_start] = ACTIONS(2156), - [sym__insert_span_start] = ACTIONS(2156), - [sym__delete_span_start] = ACTIONS(2156), - [sym__edit_comment_span_start] = ACTIONS(2156), - [sym__single_quote_span_open] = ACTIONS(2156), - [sym__double_quote_span_open] = ACTIONS(2156), - [sym__shortcode_open_escaped] = ACTIONS(2156), - [sym__shortcode_open] = ACTIONS(2156), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2156), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2156), - [sym__cite_author_in_text] = ACTIONS(2156), - [sym__cite_suppress_author] = ACTIONS(2156), - [sym__strikeout_open] = ACTIONS(2156), - [sym__subscript_open] = ACTIONS(2156), - [sym__superscript_open] = ACTIONS(2156), - [sym__inline_note_start_token] = ACTIONS(2156), - [sym__strong_emphasis_open_star] = ACTIONS(2156), - [sym__strong_emphasis_open_underscore] = ACTIONS(2156), - [sym__emphasis_open_star] = ACTIONS(2156), - [sym__emphasis_open_underscore] = ACTIONS(2156), - [sym_inline_note_reference] = ACTIONS(2156), - [sym_html_element] = ACTIONS(2156), - [sym__pandoc_line_break] = ACTIONS(2156), + [sym_caption] = STATE(3186), + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [anon_sym_COLON] = ACTIONS(2105), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(142)] = { - [sym_list_marker_dot] = STATE(17), - [sym__list_item_dot] = STATE(145), - [aux_sym__list_dot_repeat1] = STATE(145), - [anon_sym_COLON] = ACTIONS(2160), - [sym_entity_reference] = ACTIONS(2160), - [sym_numeric_character_reference] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_BANG_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [aux_sym_pandoc_str_token1] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2160), - [sym__whitespace] = ACTIONS(2160), - [sym__line_ending] = ACTIONS(2160), - [sym__soft_line_ending] = ACTIONS(2160), - [sym__block_close] = ACTIONS(2160), - [sym__block_quote_start] = ACTIONS(2160), - [sym_atx_h1_marker] = ACTIONS(2160), - [sym_atx_h2_marker] = ACTIONS(2160), - [sym_atx_h3_marker] = ACTIONS(2160), - [sym_atx_h4_marker] = ACTIONS(2160), - [sym_atx_h5_marker] = ACTIONS(2160), - [sym_atx_h6_marker] = ACTIONS(2160), - [sym__thematic_break] = ACTIONS(2160), - [sym__list_marker_minus] = ACTIONS(2160), - [sym__list_marker_plus] = ACTIONS(2160), - [sym__list_marker_star] = ACTIONS(2160), - [sym__list_marker_parenthesis] = ACTIONS(2160), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(2160), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2160), - [sym__fenced_code_block_start_backtick] = ACTIONS(2160), - [sym_minus_metadata] = ACTIONS(2160), - [sym__pipe_table_start] = ACTIONS(2160), - [sym__fenced_div_start] = ACTIONS(2160), - [sym__fenced_div_end] = ACTIONS(2160), - [sym_ref_id_specifier] = ACTIONS(2160), - [sym__code_span_start] = ACTIONS(2160), - [sym__html_comment] = ACTIONS(2160), - [sym__autolink] = ACTIONS(2160), - [sym__highlight_span_start] = ACTIONS(2160), - [sym__insert_span_start] = ACTIONS(2160), - [sym__delete_span_start] = ACTIONS(2160), - [sym__edit_comment_span_start] = ACTIONS(2160), - [sym__single_quote_span_open] = ACTIONS(2160), - [sym__double_quote_span_open] = ACTIONS(2160), - [sym__shortcode_open_escaped] = ACTIONS(2160), - [sym__shortcode_open] = ACTIONS(2160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2160), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2160), - [sym__cite_author_in_text] = ACTIONS(2160), - [sym__cite_suppress_author] = ACTIONS(2160), - [sym__strikeout_open] = ACTIONS(2160), - [sym__subscript_open] = ACTIONS(2160), - [sym__superscript_open] = ACTIONS(2160), - [sym__inline_note_start_token] = ACTIONS(2160), - [sym__strong_emphasis_open_star] = ACTIONS(2160), - [sym__strong_emphasis_open_underscore] = ACTIONS(2160), - [sym__emphasis_open_star] = ACTIONS(2160), - [sym__emphasis_open_underscore] = ACTIONS(2160), - [sym_inline_note_reference] = ACTIONS(2160), - [sym_html_element] = ACTIONS(2160), - [sym__pandoc_line_break] = ACTIONS(2160), - }, - [STATE(143)] = { - [sym_list_marker_parenthesis] = STATE(18), - [sym__list_item_parenthesis] = STATE(135), - [aux_sym__list_parenthesis_repeat1] = STATE(135), - [anon_sym_COLON] = ACTIONS(2164), - [sym_entity_reference] = ACTIONS(2164), - [sym_numeric_character_reference] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_BANG_LBRACK] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2166), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [aux_sym_pandoc_str_token1] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2164), - [sym__whitespace] = ACTIONS(2164), - [sym__line_ending] = ACTIONS(2164), - [sym__soft_line_ending] = ACTIONS(2164), - [sym__block_close] = ACTIONS(2164), - [sym__block_quote_start] = ACTIONS(2164), - [sym_atx_h1_marker] = ACTIONS(2164), - [sym_atx_h2_marker] = ACTIONS(2164), - [sym_atx_h3_marker] = ACTIONS(2164), - [sym_atx_h4_marker] = ACTIONS(2164), - [sym_atx_h5_marker] = ACTIONS(2164), - [sym_atx_h6_marker] = ACTIONS(2164), - [sym__thematic_break] = ACTIONS(2164), - [sym__list_marker_minus] = ACTIONS(2164), - [sym__list_marker_plus] = ACTIONS(2164), - [sym__list_marker_star] = ACTIONS(2164), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_parenthesis] = STATE(134), + [aux_sym__list_parenthesis_repeat1] = STATE(134), + [anon_sym_COLON] = ACTIONS(2171), + [sym_entity_reference] = ACTIONS(2171), + [sym_numeric_character_reference] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_BANG_LBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [aux_sym_pandoc_str_token1] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2171), + [sym__whitespace] = ACTIONS(2171), + [sym__line_ending] = ACTIONS(2171), + [sym__soft_line_ending] = ACTIONS(2171), + [sym__block_close] = ACTIONS(2171), + [sym__block_quote_start] = ACTIONS(2171), + [sym_atx_h1_marker] = ACTIONS(2171), + [sym_atx_h2_marker] = ACTIONS(2171), + [sym_atx_h3_marker] = ACTIONS(2171), + [sym_atx_h4_marker] = ACTIONS(2171), + [sym_atx_h5_marker] = ACTIONS(2171), + [sym_atx_h6_marker] = ACTIONS(2171), + [sym__thematic_break] = ACTIONS(2171), + [sym__list_marker_minus] = ACTIONS(2171), + [sym__list_marker_plus] = ACTIONS(2171), + [sym__list_marker_star] = ACTIONS(2171), [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(2164), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2164), + [sym__list_marker_dot] = ACTIONS(2171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2171), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_example] = ACTIONS(2164), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2164), - [sym__fenced_code_block_start_backtick] = ACTIONS(2164), - [sym_minus_metadata] = ACTIONS(2164), - [sym__pipe_table_start] = ACTIONS(2164), - [sym__fenced_div_start] = ACTIONS(2164), - [sym__fenced_div_end] = ACTIONS(2164), - [sym_ref_id_specifier] = ACTIONS(2164), - [sym__code_span_start] = ACTIONS(2164), - [sym__html_comment] = ACTIONS(2164), - [sym__autolink] = ACTIONS(2164), - [sym__highlight_span_start] = ACTIONS(2164), - [sym__insert_span_start] = ACTIONS(2164), - [sym__delete_span_start] = ACTIONS(2164), - [sym__edit_comment_span_start] = ACTIONS(2164), - [sym__single_quote_span_open] = ACTIONS(2164), - [sym__double_quote_span_open] = ACTIONS(2164), - [sym__shortcode_open_escaped] = ACTIONS(2164), - [sym__shortcode_open] = ACTIONS(2164), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2164), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2164), - [sym__cite_author_in_text] = ACTIONS(2164), - [sym__cite_suppress_author] = ACTIONS(2164), - [sym__strikeout_open] = ACTIONS(2164), - [sym__subscript_open] = ACTIONS(2164), - [sym__superscript_open] = ACTIONS(2164), - [sym__inline_note_start_token] = ACTIONS(2164), - [sym__strong_emphasis_open_star] = ACTIONS(2164), - [sym__strong_emphasis_open_underscore] = ACTIONS(2164), - [sym__emphasis_open_star] = ACTIONS(2164), - [sym__emphasis_open_underscore] = ACTIONS(2164), - [sym_inline_note_reference] = ACTIONS(2164), - [sym_html_element] = ACTIONS(2164), - [sym__pandoc_line_break] = ACTIONS(2164), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_example] = ACTIONS(2171), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2171), + [sym__fenced_code_block_start_backtick] = ACTIONS(2171), + [sym_minus_metadata] = ACTIONS(2171), + [sym__pipe_table_start] = ACTIONS(2171), + [sym__fenced_div_start] = ACTIONS(2171), + [sym__fenced_div_end] = ACTIONS(2171), + [sym_ref_id_specifier] = ACTIONS(2171), + [sym__code_span_start] = ACTIONS(2171), + [sym__html_comment] = ACTIONS(2171), + [sym__autolink] = ACTIONS(2171), + [sym__highlight_span_start] = ACTIONS(2171), + [sym__insert_span_start] = ACTIONS(2171), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2171), + [sym__single_quote_span_open] = ACTIONS(2171), + [sym__double_quote_span_open] = ACTIONS(2171), + [sym__shortcode_open_escaped] = ACTIONS(2171), + [sym__shortcode_open] = ACTIONS(2171), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2171), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2171), + [sym__cite_author_in_text] = ACTIONS(2171), + [sym__cite_suppress_author] = ACTIONS(2171), + [sym__strikeout_open] = ACTIONS(2171), + [sym__subscript_open] = ACTIONS(2171), + [sym__superscript_open] = ACTIONS(2171), + [sym__inline_note_start_token] = ACTIONS(2171), + [sym__strong_emphasis_open_star] = ACTIONS(2171), + [sym__strong_emphasis_open_underscore] = ACTIONS(2171), + [sym__emphasis_open_star] = ACTIONS(2171), + [sym__emphasis_open_underscore] = ACTIONS(2171), + [sym_inline_note_reference] = ACTIONS(2171), + [sym_html_element] = ACTIONS(2171), + [sym__pandoc_line_break] = ACTIONS(2171), + [sym_grid_table] = ACTIONS(2171), + }, + [STATE(143)] = { + [sym_caption] = STATE(3237), + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [anon_sym_COLON] = ACTIONS(2105), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(144)] = { - [sym_list_marker_example] = STATE(19), + [sym_list_marker_example] = STATE(2), [sym__list_item_example] = STATE(136), [aux_sym__list_example_repeat1] = STATE(136), - [anon_sym_COLON] = ACTIONS(2168), - [sym_entity_reference] = ACTIONS(2168), - [sym_numeric_character_reference] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_BANG_LBRACK] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [aux_sym_pandoc_str_token1] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2168), - [sym__whitespace] = ACTIONS(2168), - [sym__line_ending] = ACTIONS(2168), - [sym__soft_line_ending] = ACTIONS(2168), - [sym__block_close] = ACTIONS(2168), - [sym__block_quote_start] = ACTIONS(2168), - [sym_atx_h1_marker] = ACTIONS(2168), - [sym_atx_h2_marker] = ACTIONS(2168), - [sym_atx_h3_marker] = ACTIONS(2168), - [sym_atx_h4_marker] = ACTIONS(2168), - [sym_atx_h5_marker] = ACTIONS(2168), - [sym_atx_h6_marker] = ACTIONS(2168), - [sym__thematic_break] = ACTIONS(2168), - [sym__list_marker_minus] = ACTIONS(2168), - [sym__list_marker_plus] = ACTIONS(2168), - [sym__list_marker_star] = ACTIONS(2168), - [sym__list_marker_parenthesis] = ACTIONS(2168), - [sym__list_marker_dot] = ACTIONS(2168), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2168), + [anon_sym_COLON] = ACTIONS(2175), + [sym_entity_reference] = ACTIONS(2175), + [sym_numeric_character_reference] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_BANG_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [aux_sym_pandoc_str_token1] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2175), + [sym__whitespace] = ACTIONS(2175), + [sym__line_ending] = ACTIONS(2175), + [sym__soft_line_ending] = ACTIONS(2175), + [sym__block_close] = ACTIONS(2175), + [sym__block_quote_start] = ACTIONS(2175), + [sym_atx_h1_marker] = ACTIONS(2175), + [sym_atx_h2_marker] = ACTIONS(2175), + [sym_atx_h3_marker] = ACTIONS(2175), + [sym_atx_h4_marker] = ACTIONS(2175), + [sym_atx_h5_marker] = ACTIONS(2175), + [sym_atx_h6_marker] = ACTIONS(2175), + [sym__thematic_break] = ACTIONS(2175), + [sym__list_marker_minus] = ACTIONS(2175), + [sym__list_marker_plus] = ACTIONS(2175), + [sym__list_marker_star] = ACTIONS(2175), + [sym__list_marker_parenthesis] = ACTIONS(2175), + [sym__list_marker_dot] = ACTIONS(2175), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2175), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(2168), - [sym_minus_metadata] = ACTIONS(2168), - [sym__pipe_table_start] = ACTIONS(2168), - [sym__fenced_div_start] = ACTIONS(2168), - [sym__fenced_div_end] = ACTIONS(2168), - [sym_ref_id_specifier] = ACTIONS(2168), - [sym__code_span_start] = ACTIONS(2168), - [sym__html_comment] = ACTIONS(2168), - [sym__autolink] = ACTIONS(2168), - [sym__highlight_span_start] = ACTIONS(2168), - [sym__insert_span_start] = ACTIONS(2168), - [sym__delete_span_start] = ACTIONS(2168), - [sym__edit_comment_span_start] = ACTIONS(2168), - [sym__single_quote_span_open] = ACTIONS(2168), - [sym__double_quote_span_open] = ACTIONS(2168), - [sym__shortcode_open_escaped] = ACTIONS(2168), - [sym__shortcode_open] = ACTIONS(2168), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2168), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2168), - [sym__cite_author_in_text] = ACTIONS(2168), - [sym__cite_suppress_author] = ACTIONS(2168), - [sym__strikeout_open] = ACTIONS(2168), - [sym__subscript_open] = ACTIONS(2168), - [sym__superscript_open] = ACTIONS(2168), - [sym__inline_note_start_token] = ACTIONS(2168), - [sym__strong_emphasis_open_star] = ACTIONS(2168), - [sym__strong_emphasis_open_underscore] = ACTIONS(2168), - [sym__emphasis_open_star] = ACTIONS(2168), - [sym__emphasis_open_underscore] = ACTIONS(2168), - [sym_inline_note_reference] = ACTIONS(2168), - [sym_html_element] = ACTIONS(2168), - [sym__pandoc_line_break] = ACTIONS(2168), + [sym__fenced_code_block_start_backtick] = ACTIONS(2175), + [sym_minus_metadata] = ACTIONS(2175), + [sym__pipe_table_start] = ACTIONS(2175), + [sym__fenced_div_start] = ACTIONS(2175), + [sym__fenced_div_end] = ACTIONS(2175), + [sym_ref_id_specifier] = ACTIONS(2175), + [sym__code_span_start] = ACTIONS(2175), + [sym__html_comment] = ACTIONS(2175), + [sym__autolink] = ACTIONS(2175), + [sym__highlight_span_start] = ACTIONS(2175), + [sym__insert_span_start] = ACTIONS(2175), + [sym__delete_span_start] = ACTIONS(2175), + [sym__edit_comment_span_start] = ACTIONS(2175), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2175), + [sym__shortcode_open_escaped] = ACTIONS(2175), + [sym__shortcode_open] = ACTIONS(2175), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2175), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2175), + [sym__cite_author_in_text] = ACTIONS(2175), + [sym__cite_suppress_author] = ACTIONS(2175), + [sym__strikeout_open] = ACTIONS(2175), + [sym__subscript_open] = ACTIONS(2175), + [sym__superscript_open] = ACTIONS(2175), + [sym__inline_note_start_token] = ACTIONS(2175), + [sym__strong_emphasis_open_star] = ACTIONS(2175), + [sym__strong_emphasis_open_underscore] = ACTIONS(2175), + [sym__emphasis_open_star] = ACTIONS(2175), + [sym__emphasis_open_underscore] = ACTIONS(2175), + [sym_inline_note_reference] = ACTIONS(2175), + [sym_html_element] = ACTIONS(2175), + [sym__pandoc_line_break] = ACTIONS(2175), + [sym_grid_table] = ACTIONS(2175), }, [STATE(145)] = { - [sym_list_marker_dot] = STATE(17), - [sym__list_item_dot] = STATE(145), - [aux_sym__list_dot_repeat1] = STATE(145), - [anon_sym_COLON] = ACTIONS(2172), - [sym_entity_reference] = ACTIONS(2172), - [sym_numeric_character_reference] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_BANG_LBRACK] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2174), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [aux_sym_pandoc_str_token1] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2172), - [sym__whitespace] = ACTIONS(2172), - [sym__line_ending] = ACTIONS(2172), - [sym__soft_line_ending] = ACTIONS(2172), - [sym__block_close] = ACTIONS(2172), - [sym__block_quote_start] = ACTIONS(2172), - [sym_atx_h1_marker] = ACTIONS(2172), - [sym_atx_h2_marker] = ACTIONS(2172), - [sym_atx_h3_marker] = ACTIONS(2172), - [sym_atx_h4_marker] = ACTIONS(2172), - [sym_atx_h5_marker] = ACTIONS(2172), - [sym_atx_h6_marker] = ACTIONS(2172), - [sym__thematic_break] = ACTIONS(2172), - [sym__list_marker_minus] = ACTIONS(2172), - [sym__list_marker_plus] = ACTIONS(2172), - [sym__list_marker_star] = ACTIONS(2172), - [sym__list_marker_parenthesis] = ACTIONS(2172), - [sym__list_marker_dot] = ACTIONS(2176), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_example] = ACTIONS(2172), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2172), - [sym__fenced_code_block_start_backtick] = ACTIONS(2172), - [sym_minus_metadata] = ACTIONS(2172), - [sym__pipe_table_start] = ACTIONS(2172), - [sym__fenced_div_start] = ACTIONS(2172), - [sym__fenced_div_end] = ACTIONS(2172), - [sym_ref_id_specifier] = ACTIONS(2172), - [sym__code_span_start] = ACTIONS(2172), - [sym__html_comment] = ACTIONS(2172), - [sym__autolink] = ACTIONS(2172), - [sym__highlight_span_start] = ACTIONS(2172), - [sym__insert_span_start] = ACTIONS(2172), - [sym__delete_span_start] = ACTIONS(2172), - [sym__edit_comment_span_start] = ACTIONS(2172), - [sym__single_quote_span_open] = ACTIONS(2172), - [sym__double_quote_span_open] = ACTIONS(2172), - [sym__shortcode_open_escaped] = ACTIONS(2172), - [sym__shortcode_open] = ACTIONS(2172), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2172), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2172), - [sym__cite_author_in_text] = ACTIONS(2172), - [sym__cite_suppress_author] = ACTIONS(2172), - [sym__strikeout_open] = ACTIONS(2172), - [sym__subscript_open] = ACTIONS(2172), - [sym__superscript_open] = ACTIONS(2172), - [sym__inline_note_start_token] = ACTIONS(2172), - [sym__strong_emphasis_open_star] = ACTIONS(2172), - [sym__strong_emphasis_open_underscore] = ACTIONS(2172), - [sym__emphasis_open_star] = ACTIONS(2172), - [sym__emphasis_open_underscore] = ACTIONS(2172), - [sym_inline_note_reference] = ACTIONS(2172), - [sym_html_element] = ACTIONS(2172), - [sym__pandoc_line_break] = ACTIONS(2172), + [sym_caption] = STATE(3262), + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [anon_sym_COLON] = ACTIONS(2105), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(146)] = { - [sym_list_marker_minus] = STATE(7), - [sym__list_item_minus] = STATE(170), - [aux_sym__list_minus_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [sym_entity_reference] = ACTIONS(2138), - [sym_numeric_character_reference] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_BANG_LBRACK] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [aux_sym_pandoc_str_token1] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(2138), - [sym__line_ending] = ACTIONS(2138), - [sym__soft_line_ending] = ACTIONS(2138), - [sym__block_quote_start] = ACTIONS(2138), - [sym_atx_h1_marker] = ACTIONS(2138), - [sym_atx_h2_marker] = ACTIONS(2138), - [sym_atx_h3_marker] = ACTIONS(2138), - [sym_atx_h4_marker] = ACTIONS(2138), - [sym_atx_h5_marker] = ACTIONS(2138), - [sym_atx_h6_marker] = ACTIONS(2138), - [sym__thematic_break] = ACTIONS(2138), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(2138), - [sym__list_marker_star] = ACTIONS(2138), - [sym__list_marker_parenthesis] = ACTIONS(2138), - [sym__list_marker_dot] = ACTIONS(2138), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_example] = ACTIONS(2138), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2138), - [sym__fenced_code_block_start_backtick] = ACTIONS(2138), - [sym_minus_metadata] = ACTIONS(2138), - [sym__pipe_table_start] = ACTIONS(2138), - [sym__fenced_div_start] = ACTIONS(2138), - [sym_ref_id_specifier] = ACTIONS(2138), - [sym__code_span_start] = ACTIONS(2138), - [sym__html_comment] = ACTIONS(2138), - [sym__autolink] = ACTIONS(2138), - [sym__highlight_span_start] = ACTIONS(2138), - [sym__insert_span_start] = ACTIONS(2138), - [sym__delete_span_start] = ACTIONS(2138), - [sym__edit_comment_span_start] = ACTIONS(2138), - [sym__single_quote_span_open] = ACTIONS(2138), - [sym__double_quote_span_open] = ACTIONS(2138), - [sym__shortcode_open_escaped] = ACTIONS(2138), - [sym__shortcode_open] = ACTIONS(2138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2138), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2138), - [sym__cite_author_in_text] = ACTIONS(2138), - [sym__cite_suppress_author] = ACTIONS(2138), - [sym__strikeout_open] = ACTIONS(2138), - [sym__subscript_open] = ACTIONS(2138), - [sym__superscript_open] = ACTIONS(2138), - [sym__inline_note_start_token] = ACTIONS(2138), - [sym__strong_emphasis_open_star] = ACTIONS(2138), - [sym__strong_emphasis_open_underscore] = ACTIONS(2138), - [sym__emphasis_open_star] = ACTIONS(2138), - [sym__emphasis_open_underscore] = ACTIONS(2138), - [sym_inline_note_reference] = ACTIONS(2138), - [sym_html_element] = ACTIONS(2138), - [sym__pandoc_line_break] = ACTIONS(2138), + [sym_list_marker_plus] = STATE(7), + [sym__list_item_plus] = STATE(146), + [aux_sym__list_plus_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(2047), + [anon_sym_COLON] = ACTIONS(2047), + [sym_entity_reference] = ACTIONS(2047), + [sym_numeric_character_reference] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_BANG_LBRACK] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [aux_sym_pandoc_str_token1] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2047), + [sym__whitespace] = ACTIONS(2047), + [sym__line_ending] = ACTIONS(2047), + [sym__soft_line_ending] = ACTIONS(2047), + [sym__block_quote_start] = ACTIONS(2047), + [sym_atx_h1_marker] = ACTIONS(2047), + [sym_atx_h2_marker] = ACTIONS(2047), + [sym_atx_h3_marker] = ACTIONS(2047), + [sym_atx_h4_marker] = ACTIONS(2047), + [sym_atx_h5_marker] = ACTIONS(2047), + [sym_atx_h6_marker] = ACTIONS(2047), + [sym__thematic_break] = ACTIONS(2047), + [sym__list_marker_minus] = ACTIONS(2047), + [sym__list_marker_plus] = ACTIONS(2051), + [sym__list_marker_star] = ACTIONS(2047), + [sym__list_marker_parenthesis] = ACTIONS(2047), + [sym__list_marker_dot] = ACTIONS(2047), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2051), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_example] = ACTIONS(2047), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2047), + [sym__fenced_code_block_start_backtick] = ACTIONS(2047), + [sym_minus_metadata] = ACTIONS(2047), + [sym__pipe_table_start] = ACTIONS(2047), + [sym__fenced_div_start] = ACTIONS(2047), + [sym_ref_id_specifier] = ACTIONS(2047), + [sym__code_span_start] = ACTIONS(2047), + [sym__html_comment] = ACTIONS(2047), + [sym__autolink] = ACTIONS(2047), + [sym__highlight_span_start] = ACTIONS(2047), + [sym__insert_span_start] = ACTIONS(2047), + [sym__delete_span_start] = ACTIONS(2047), + [sym__edit_comment_span_start] = ACTIONS(2047), + [sym__single_quote_span_open] = ACTIONS(2047), + [sym__double_quote_span_open] = ACTIONS(2047), + [sym__shortcode_open_escaped] = ACTIONS(2047), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2047), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2047), + [sym__cite_author_in_text] = ACTIONS(2047), + [sym__cite_suppress_author] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2047), + [sym__subscript_open] = ACTIONS(2047), + [sym__superscript_open] = ACTIONS(2047), + [sym__inline_note_start_token] = ACTIONS(2047), + [sym__strong_emphasis_open_star] = ACTIONS(2047), + [sym__strong_emphasis_open_underscore] = ACTIONS(2047), + [sym__emphasis_open_star] = ACTIONS(2047), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym_inline_note_reference] = ACTIONS(2047), + [sym_html_element] = ACTIONS(2047), + [sym__pandoc_line_break] = ACTIONS(2047), + [sym_grid_table] = ACTIONS(2047), }, [STATE(147)] = { - [sym_list_marker_star] = STATE(10), - [sym__list_item_star] = STATE(147), - [aux_sym__list_star_repeat1] = STATE(147), - [anon_sym_COLON] = ACTIONS(2149), - [sym_entity_reference] = ACTIONS(2149), - [sym_numeric_character_reference] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_BANG_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2149), - [sym__whitespace] = ACTIONS(2149), - [sym__line_ending] = ACTIONS(2149), - [sym__soft_line_ending] = ACTIONS(2149), - [sym__block_close] = ACTIONS(2149), - [sym__block_quote_start] = ACTIONS(2149), - [sym_atx_h1_marker] = ACTIONS(2149), - [sym_atx_h2_marker] = ACTIONS(2149), - [sym_atx_h3_marker] = ACTIONS(2149), - [sym_atx_h4_marker] = ACTIONS(2149), - [sym_atx_h5_marker] = ACTIONS(2149), - [sym_atx_h6_marker] = ACTIONS(2149), - [sym__thematic_break] = ACTIONS(2149), - [sym__list_marker_minus] = ACTIONS(2149), - [sym__list_marker_plus] = ACTIONS(2149), - [sym__list_marker_star] = ACTIONS(2153), - [sym__list_marker_parenthesis] = ACTIONS(2149), - [sym__list_marker_dot] = ACTIONS(2149), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2153), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_example] = ACTIONS(2149), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2149), - [sym__fenced_code_block_start_backtick] = ACTIONS(2149), - [sym_minus_metadata] = ACTIONS(2149), - [sym__pipe_table_start] = ACTIONS(2149), - [sym__fenced_div_start] = ACTIONS(2149), - [sym_ref_id_specifier] = ACTIONS(2149), - [sym__code_span_start] = ACTIONS(2149), - [sym__html_comment] = ACTIONS(2149), - [sym__autolink] = ACTIONS(2149), - [sym__highlight_span_start] = ACTIONS(2149), - [sym__insert_span_start] = ACTIONS(2149), - [sym__delete_span_start] = ACTIONS(2149), - [sym__edit_comment_span_start] = ACTIONS(2149), - [sym__single_quote_span_open] = ACTIONS(2149), - [sym__double_quote_span_open] = ACTIONS(2149), - [sym__shortcode_open_escaped] = ACTIONS(2149), - [sym__shortcode_open] = ACTIONS(2149), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2149), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2149), - [sym__cite_author_in_text] = ACTIONS(2149), - [sym__cite_suppress_author] = ACTIONS(2149), - [sym__strikeout_open] = ACTIONS(2149), - [sym__subscript_open] = ACTIONS(2149), - [sym__superscript_open] = ACTIONS(2149), - [sym__inline_note_start_token] = ACTIONS(2149), - [sym__strong_emphasis_open_star] = ACTIONS(2149), - [sym__strong_emphasis_open_underscore] = ACTIONS(2149), - [sym__emphasis_open_star] = ACTIONS(2149), - [sym__emphasis_open_underscore] = ACTIONS(2149), - [sym_inline_note_reference] = ACTIONS(2149), - [sym_html_element] = ACTIONS(2149), - [sym__pandoc_line_break] = ACTIONS(2149), + [sym_list_marker_dot] = STATE(12), + [sym__list_item_dot] = STATE(147), + [aux_sym__list_dot_repeat1] = STATE(147), + [anon_sym_COLON] = ACTIONS(2068), + [sym_entity_reference] = ACTIONS(2068), + [sym_numeric_character_reference] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [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__whitespace] = ACTIONS(2068), + [sym__line_ending] = ACTIONS(2068), + [sym__soft_line_ending] = ACTIONS(2068), + [sym__block_close] = 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(2072), + [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(2072), + [sym__list_marker_example] = ACTIONS(2068), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2068), + [sym__fenced_code_block_start_backtick] = 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_line_break] = ACTIONS(2068), + [sym_grid_table] = ACTIONS(2068), }, [STATE(148)] = { - [sym_list_marker_minus] = STATE(9), - [sym__list_item_minus] = STATE(168), - [aux_sym__list_minus_repeat1] = STATE(168), - [anon_sym_COLON] = ACTIONS(2138), - [sym_entity_reference] = ACTIONS(2138), - [sym_numeric_character_reference] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_BANG_LBRACK] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [aux_sym_pandoc_str_token1] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(2138), - [sym__line_ending] = ACTIONS(2138), - [sym__soft_line_ending] = ACTIONS(2138), - [sym__block_close] = ACTIONS(2138), - [sym__block_quote_start] = ACTIONS(2138), - [sym_atx_h1_marker] = ACTIONS(2138), - [sym_atx_h2_marker] = ACTIONS(2138), - [sym_atx_h3_marker] = ACTIONS(2138), - [sym_atx_h4_marker] = ACTIONS(2138), - [sym_atx_h5_marker] = ACTIONS(2138), - [sym_atx_h6_marker] = ACTIONS(2138), - [sym__thematic_break] = ACTIONS(2138), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(2138), - [sym__list_marker_star] = ACTIONS(2138), - [sym__list_marker_parenthesis] = ACTIONS(2138), - [sym__list_marker_dot] = ACTIONS(2138), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2138), - [sym__list_marker_example] = ACTIONS(2138), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2138), - [sym__fenced_code_block_start_backtick] = ACTIONS(2138), - [sym_minus_metadata] = ACTIONS(2138), - [sym__pipe_table_start] = ACTIONS(2138), - [sym__fenced_div_start] = ACTIONS(2138), - [sym_ref_id_specifier] = ACTIONS(2138), - [sym__code_span_start] = ACTIONS(2138), - [sym__html_comment] = ACTIONS(2138), - [sym__autolink] = ACTIONS(2138), - [sym__highlight_span_start] = ACTIONS(2138), - [sym__insert_span_start] = ACTIONS(2138), - [sym__delete_span_start] = ACTIONS(2138), - [sym__edit_comment_span_start] = ACTIONS(2138), - [sym__single_quote_span_open] = ACTIONS(2138), - [sym__double_quote_span_open] = ACTIONS(2138), - [sym__shortcode_open_escaped] = ACTIONS(2138), - [sym__shortcode_open] = ACTIONS(2138), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2138), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2138), - [sym__cite_author_in_text] = ACTIONS(2138), - [sym__cite_suppress_author] = ACTIONS(2138), - [sym__strikeout_open] = ACTIONS(2138), - [sym__subscript_open] = ACTIONS(2138), - [sym__superscript_open] = ACTIONS(2138), - [sym__inline_note_start_token] = ACTIONS(2138), - [sym__strong_emphasis_open_star] = ACTIONS(2138), - [sym__strong_emphasis_open_underscore] = ACTIONS(2138), - [sym__emphasis_open_star] = ACTIONS(2138), - [sym__emphasis_open_underscore] = ACTIONS(2138), - [sym_inline_note_reference] = ACTIONS(2138), - [sym_html_element] = ACTIONS(2138), - [sym__pandoc_line_break] = ACTIONS(2138), + [sym_list_marker_parenthesis] = STATE(13), + [sym__list_item_parenthesis] = STATE(148), + [aux_sym__list_parenthesis_repeat1] = STATE(148), + [anon_sym_COLON] = ACTIONS(2083), + [sym_entity_reference] = ACTIONS(2083), + [sym_numeric_character_reference] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_BANG_LBRACK] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [aux_sym_pandoc_str_token1] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2083), + [sym__whitespace] = ACTIONS(2083), + [sym__line_ending] = ACTIONS(2083), + [sym__soft_line_ending] = ACTIONS(2083), + [sym__block_close] = ACTIONS(2083), + [sym__block_quote_start] = ACTIONS(2083), + [sym_atx_h1_marker] = ACTIONS(2083), + [sym_atx_h2_marker] = ACTIONS(2083), + [sym_atx_h3_marker] = ACTIONS(2083), + [sym_atx_h4_marker] = ACTIONS(2083), + [sym_atx_h5_marker] = ACTIONS(2083), + [sym_atx_h6_marker] = ACTIONS(2083), + [sym__thematic_break] = ACTIONS(2083), + [sym__list_marker_minus] = ACTIONS(2083), + [sym__list_marker_plus] = ACTIONS(2083), + [sym__list_marker_star] = ACTIONS(2083), + [sym__list_marker_parenthesis] = ACTIONS(2087), + [sym__list_marker_dot] = ACTIONS(2083), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2087), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_example] = ACTIONS(2083), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2083), + [sym__fenced_code_block_start_backtick] = ACTIONS(2083), + [sym_minus_metadata] = ACTIONS(2083), + [sym__pipe_table_start] = ACTIONS(2083), + [sym__fenced_div_start] = ACTIONS(2083), + [sym_ref_id_specifier] = ACTIONS(2083), + [sym__code_span_start] = ACTIONS(2083), + [sym__html_comment] = ACTIONS(2083), + [sym__autolink] = ACTIONS(2083), + [sym__highlight_span_start] = ACTIONS(2083), + [sym__insert_span_start] = ACTIONS(2083), + [sym__delete_span_start] = ACTIONS(2083), + [sym__edit_comment_span_start] = ACTIONS(2083), + [sym__single_quote_span_open] = ACTIONS(2083), + [sym__double_quote_span_open] = ACTIONS(2083), + [sym__shortcode_open_escaped] = ACTIONS(2083), + [sym__shortcode_open] = ACTIONS(2083), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2083), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2083), + [sym__cite_author_in_text] = ACTIONS(2083), + [sym__cite_suppress_author] = ACTIONS(2083), + [sym__strikeout_open] = ACTIONS(2083), + [sym__subscript_open] = ACTIONS(2083), + [sym__superscript_open] = ACTIONS(2083), + [sym__inline_note_start_token] = ACTIONS(2083), + [sym__strong_emphasis_open_star] = ACTIONS(2083), + [sym__strong_emphasis_open_underscore] = ACTIONS(2083), + [sym__emphasis_open_star] = ACTIONS(2083), + [sym__emphasis_open_underscore] = ACTIONS(2083), + [sym_inline_note_reference] = ACTIONS(2083), + [sym_html_element] = ACTIONS(2083), + [sym__pandoc_line_break] = ACTIONS(2083), + [sym_grid_table] = ACTIONS(2083), }, [STATE(149)] = { - [sym_list_marker_example] = STATE(6), + [sym_list_marker_example] = STATE(14), [sym__list_item_example] = STATE(149), [aux_sym__list_example_repeat1] = STATE(149), - [ts_builtin_sym_end] = ACTIONS(2127), - [anon_sym_COLON] = ACTIONS(2127), - [sym_entity_reference] = ACTIONS(2127), - [sym_numeric_character_reference] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_BANG_LBRACK] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [aux_sym_pandoc_str_token1] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2127), - [sym__whitespace] = ACTIONS(2127), - [sym__line_ending] = ACTIONS(2127), - [sym__soft_line_ending] = ACTIONS(2127), - [sym__block_quote_start] = ACTIONS(2127), - [sym_atx_h1_marker] = ACTIONS(2127), - [sym_atx_h2_marker] = ACTIONS(2127), - [sym_atx_h3_marker] = ACTIONS(2127), - [sym_atx_h4_marker] = ACTIONS(2127), - [sym_atx_h5_marker] = ACTIONS(2127), - [sym_atx_h6_marker] = ACTIONS(2127), - [sym__thematic_break] = ACTIONS(2127), - [sym__list_marker_minus] = ACTIONS(2127), - [sym__list_marker_plus] = ACTIONS(2127), - [sym__list_marker_star] = ACTIONS(2127), - [sym__list_marker_parenthesis] = ACTIONS(2127), - [sym__list_marker_dot] = ACTIONS(2127), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_example] = ACTIONS(2131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2131), - [sym__fenced_code_block_start_backtick] = ACTIONS(2127), - [sym_minus_metadata] = ACTIONS(2127), - [sym__pipe_table_start] = ACTIONS(2127), - [sym__fenced_div_start] = ACTIONS(2127), - [sym_ref_id_specifier] = ACTIONS(2127), - [sym__code_span_start] = ACTIONS(2127), - [sym__html_comment] = ACTIONS(2127), - [sym__autolink] = ACTIONS(2127), - [sym__highlight_span_start] = ACTIONS(2127), - [sym__insert_span_start] = ACTIONS(2127), - [sym__delete_span_start] = ACTIONS(2127), - [sym__edit_comment_span_start] = ACTIONS(2127), - [sym__single_quote_span_open] = ACTIONS(2127), - [sym__double_quote_span_open] = ACTIONS(2127), - [sym__shortcode_open_escaped] = ACTIONS(2127), - [sym__shortcode_open] = ACTIONS(2127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2127), - [sym__cite_author_in_text] = ACTIONS(2127), - [sym__cite_suppress_author] = ACTIONS(2127), - [sym__strikeout_open] = ACTIONS(2127), - [sym__subscript_open] = ACTIONS(2127), - [sym__superscript_open] = ACTIONS(2127), - [sym__inline_note_start_token] = ACTIONS(2127), - [sym__strong_emphasis_open_star] = ACTIONS(2127), - [sym__strong_emphasis_open_underscore] = ACTIONS(2127), - [sym__emphasis_open_star] = ACTIONS(2127), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2127), - [sym_html_element] = ACTIONS(2127), - [sym__pandoc_line_break] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2094), + [sym_entity_reference] = ACTIONS(2094), + [sym_numeric_character_reference] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_BANG_LBRACK] = ACTIONS(2094), + [anon_sym_DOLLAR] = ACTIONS(2096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [aux_sym_pandoc_str_token1] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2094), + [sym__whitespace] = ACTIONS(2094), + [sym__line_ending] = ACTIONS(2094), + [sym__soft_line_ending] = ACTIONS(2094), + [sym__block_close] = ACTIONS(2094), + [sym__block_quote_start] = ACTIONS(2094), + [sym_atx_h1_marker] = ACTIONS(2094), + [sym_atx_h2_marker] = ACTIONS(2094), + [sym_atx_h3_marker] = ACTIONS(2094), + [sym_atx_h4_marker] = ACTIONS(2094), + [sym_atx_h5_marker] = ACTIONS(2094), + [sym_atx_h6_marker] = ACTIONS(2094), + [sym__thematic_break] = ACTIONS(2094), + [sym__list_marker_minus] = ACTIONS(2094), + [sym__list_marker_plus] = ACTIONS(2094), + [sym__list_marker_star] = ACTIONS(2094), + [sym__list_marker_parenthesis] = ACTIONS(2094), + [sym__list_marker_dot] = ACTIONS(2094), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_example] = ACTIONS(2098), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2098), + [sym__fenced_code_block_start_backtick] = ACTIONS(2094), + [sym_minus_metadata] = ACTIONS(2094), + [sym__pipe_table_start] = ACTIONS(2094), + [sym__fenced_div_start] = ACTIONS(2094), + [sym_ref_id_specifier] = ACTIONS(2094), + [sym__code_span_start] = ACTIONS(2094), + [sym__html_comment] = ACTIONS(2094), + [sym__autolink] = ACTIONS(2094), + [sym__highlight_span_start] = ACTIONS(2094), + [sym__insert_span_start] = ACTIONS(2094), + [sym__delete_span_start] = ACTIONS(2094), + [sym__edit_comment_span_start] = ACTIONS(2094), + [sym__single_quote_span_open] = ACTIONS(2094), + [sym__double_quote_span_open] = ACTIONS(2094), + [sym__shortcode_open_escaped] = ACTIONS(2094), + [sym__shortcode_open] = ACTIONS(2094), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2094), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2094), + [sym__cite_author_in_text] = ACTIONS(2094), + [sym__cite_suppress_author] = ACTIONS(2094), + [sym__strikeout_open] = ACTIONS(2094), + [sym__subscript_open] = ACTIONS(2094), + [sym__superscript_open] = ACTIONS(2094), + [sym__inline_note_start_token] = ACTIONS(2094), + [sym__strong_emphasis_open_star] = ACTIONS(2094), + [sym__strong_emphasis_open_underscore] = ACTIONS(2094), + [sym__emphasis_open_star] = ACTIONS(2094), + [sym__emphasis_open_underscore] = ACTIONS(2094), + [sym_inline_note_reference] = ACTIONS(2094), + [sym_html_element] = ACTIONS(2094), + [sym__pandoc_line_break] = ACTIONS(2094), + [sym_grid_table] = ACTIONS(2094), }, [STATE(150)] = { - [sym_list_marker_star] = STATE(4), - [sym__list_item_star] = STATE(150), - [aux_sym__list_star_repeat1] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(2149), - [anon_sym_COLON] = ACTIONS(2149), - [sym_entity_reference] = ACTIONS(2149), - [sym_numeric_character_reference] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_BANG_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2149), - [sym__whitespace] = ACTIONS(2149), - [sym__line_ending] = ACTIONS(2149), - [sym__soft_line_ending] = ACTIONS(2149), - [sym__block_quote_start] = ACTIONS(2149), - [sym_atx_h1_marker] = ACTIONS(2149), - [sym_atx_h2_marker] = ACTIONS(2149), - [sym_atx_h3_marker] = ACTIONS(2149), - [sym_atx_h4_marker] = ACTIONS(2149), - [sym_atx_h5_marker] = ACTIONS(2149), - [sym_atx_h6_marker] = ACTIONS(2149), - [sym__thematic_break] = ACTIONS(2149), - [sym__list_marker_minus] = ACTIONS(2149), - [sym__list_marker_plus] = ACTIONS(2149), - [sym__list_marker_star] = ACTIONS(2153), - [sym__list_marker_parenthesis] = ACTIONS(2149), - [sym__list_marker_dot] = ACTIONS(2149), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2153), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2149), - [sym__list_marker_example] = ACTIONS(2149), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2149), - [sym__fenced_code_block_start_backtick] = ACTIONS(2149), - [sym_minus_metadata] = ACTIONS(2149), - [sym__pipe_table_start] = ACTIONS(2149), - [sym__fenced_div_start] = ACTIONS(2149), - [sym_ref_id_specifier] = ACTIONS(2149), - [sym__code_span_start] = ACTIONS(2149), - [sym__html_comment] = ACTIONS(2149), - [sym__autolink] = ACTIONS(2149), - [sym__highlight_span_start] = ACTIONS(2149), - [sym__insert_span_start] = ACTIONS(2149), - [sym__delete_span_start] = ACTIONS(2149), - [sym__edit_comment_span_start] = ACTIONS(2149), - [sym__single_quote_span_open] = ACTIONS(2149), - [sym__double_quote_span_open] = ACTIONS(2149), - [sym__shortcode_open_escaped] = ACTIONS(2149), - [sym__shortcode_open] = ACTIONS(2149), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2149), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2149), - [sym__cite_author_in_text] = ACTIONS(2149), - [sym__cite_suppress_author] = ACTIONS(2149), - [sym__strikeout_open] = ACTIONS(2149), - [sym__subscript_open] = ACTIONS(2149), - [sym__superscript_open] = ACTIONS(2149), - [sym__inline_note_start_token] = ACTIONS(2149), - [sym__strong_emphasis_open_star] = ACTIONS(2149), - [sym__strong_emphasis_open_underscore] = ACTIONS(2149), - [sym__emphasis_open_star] = ACTIONS(2149), - [sym__emphasis_open_underscore] = ACTIONS(2149), - [sym_inline_note_reference] = ACTIONS(2149), - [sym_html_element] = ACTIONS(2149), - [sym__pandoc_line_break] = ACTIONS(2149), + [sym_list_marker_dot] = STATE(12), + [sym__list_item_dot] = STATE(147), + [aux_sym__list_dot_repeat1] = STATE(147), + [anon_sym_COLON] = ACTIONS(2101), + [sym_entity_reference] = ACTIONS(2101), + [sym_numeric_character_reference] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_BANG_LBRACK] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2103), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [aux_sym_pandoc_str_token1] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2101), + [sym__whitespace] = ACTIONS(2101), + [sym__line_ending] = ACTIONS(2101), + [sym__soft_line_ending] = ACTIONS(2101), + [sym__block_close] = ACTIONS(2101), + [sym__block_quote_start] = ACTIONS(2101), + [sym_atx_h1_marker] = ACTIONS(2101), + [sym_atx_h2_marker] = ACTIONS(2101), + [sym_atx_h3_marker] = ACTIONS(2101), + [sym_atx_h4_marker] = ACTIONS(2101), + [sym_atx_h5_marker] = ACTIONS(2101), + [sym_atx_h6_marker] = ACTIONS(2101), + [sym__thematic_break] = ACTIONS(2101), + [sym__list_marker_minus] = ACTIONS(2101), + [sym__list_marker_plus] = ACTIONS(2101), + [sym__list_marker_star] = ACTIONS(2101), + [sym__list_marker_parenthesis] = ACTIONS(2101), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(2101), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2101), + [sym__fenced_code_block_start_backtick] = ACTIONS(2101), + [sym_minus_metadata] = ACTIONS(2101), + [sym__pipe_table_start] = ACTIONS(2101), + [sym__fenced_div_start] = ACTIONS(2101), + [sym_ref_id_specifier] = ACTIONS(2101), + [sym__code_span_start] = ACTIONS(2101), + [sym__html_comment] = ACTIONS(2101), + [sym__autolink] = ACTIONS(2101), + [sym__highlight_span_start] = ACTIONS(2101), + [sym__insert_span_start] = ACTIONS(2101), + [sym__delete_span_start] = ACTIONS(2101), + [sym__edit_comment_span_start] = ACTIONS(2101), + [sym__single_quote_span_open] = ACTIONS(2101), + [sym__double_quote_span_open] = ACTIONS(2101), + [sym__shortcode_open_escaped] = ACTIONS(2101), + [sym__shortcode_open] = ACTIONS(2101), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2101), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2101), + [sym__cite_author_in_text] = ACTIONS(2101), + [sym__cite_suppress_author] = ACTIONS(2101), + [sym__strikeout_open] = ACTIONS(2101), + [sym__subscript_open] = ACTIONS(2101), + [sym__superscript_open] = ACTIONS(2101), + [sym__inline_note_start_token] = ACTIONS(2101), + [sym__strong_emphasis_open_star] = ACTIONS(2101), + [sym__strong_emphasis_open_underscore] = ACTIONS(2101), + [sym__emphasis_open_star] = ACTIONS(2101), + [sym__emphasis_open_underscore] = ACTIONS(2101), + [sym_inline_note_reference] = ACTIONS(2101), + [sym_html_element] = ACTIONS(2101), + [sym__pandoc_line_break] = ACTIONS(2101), + [sym_grid_table] = ACTIONS(2101), }, [STATE(151)] = { - [sym_list_marker_plus] = STATE(8), - [sym__list_item_plus] = STATE(167), - [aux_sym__list_plus_repeat1] = STATE(167), - [anon_sym_COLON] = ACTIONS(2134), - [sym_entity_reference] = ACTIONS(2134), - [sym_numeric_character_reference] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_BANG_LBRACK] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [aux_sym_pandoc_str_token1] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2134), - [sym__whitespace] = ACTIONS(2134), - [sym__line_ending] = ACTIONS(2134), - [sym__soft_line_ending] = ACTIONS(2134), - [sym__block_close] = ACTIONS(2134), - [sym__block_quote_start] = ACTIONS(2134), - [sym_atx_h1_marker] = ACTIONS(2134), - [sym_atx_h2_marker] = ACTIONS(2134), - [sym_atx_h3_marker] = ACTIONS(2134), - [sym_atx_h4_marker] = ACTIONS(2134), - [sym_atx_h5_marker] = ACTIONS(2134), - [sym_atx_h6_marker] = ACTIONS(2134), - [sym__thematic_break] = ACTIONS(2134), - [sym__list_marker_minus] = ACTIONS(2134), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(2134), - [sym__list_marker_parenthesis] = ACTIONS(2134), - [sym__list_marker_dot] = ACTIONS(2134), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_example] = ACTIONS(2134), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2134), - [sym__fenced_code_block_start_backtick] = ACTIONS(2134), - [sym_minus_metadata] = ACTIONS(2134), - [sym__pipe_table_start] = ACTIONS(2134), - [sym__fenced_div_start] = ACTIONS(2134), - [sym_ref_id_specifier] = ACTIONS(2134), - [sym__code_span_start] = ACTIONS(2134), - [sym__html_comment] = ACTIONS(2134), - [sym__autolink] = ACTIONS(2134), - [sym__highlight_span_start] = ACTIONS(2134), - [sym__insert_span_start] = ACTIONS(2134), - [sym__delete_span_start] = ACTIONS(2134), - [sym__edit_comment_span_start] = ACTIONS(2134), - [sym__single_quote_span_open] = ACTIONS(2134), - [sym__double_quote_span_open] = ACTIONS(2134), - [sym__shortcode_open_escaped] = ACTIONS(2134), - [sym__shortcode_open] = ACTIONS(2134), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2134), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2134), - [sym__cite_author_in_text] = ACTIONS(2134), - [sym__cite_suppress_author] = ACTIONS(2134), - [sym__strikeout_open] = ACTIONS(2134), - [sym__subscript_open] = ACTIONS(2134), - [sym__superscript_open] = ACTIONS(2134), - [sym__inline_note_start_token] = ACTIONS(2134), - [sym__strong_emphasis_open_star] = ACTIONS(2134), - [sym__strong_emphasis_open_underscore] = ACTIONS(2134), - [sym__emphasis_open_star] = ACTIONS(2134), - [sym__emphasis_open_underscore] = ACTIONS(2134), - [sym_inline_note_reference] = ACTIONS(2134), - [sym_html_element] = ACTIONS(2134), - [sym__pandoc_line_break] = ACTIONS(2134), + [sym_list_marker_parenthesis] = STATE(13), + [sym__list_item_parenthesis] = STATE(148), + [aux_sym__list_parenthesis_repeat1] = STATE(148), + [anon_sym_COLON] = ACTIONS(2171), + [sym_entity_reference] = ACTIONS(2171), + [sym_numeric_character_reference] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_BANG_LBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [aux_sym_pandoc_str_token1] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2171), + [sym__whitespace] = ACTIONS(2171), + [sym__line_ending] = ACTIONS(2171), + [sym__soft_line_ending] = ACTIONS(2171), + [sym__block_close] = ACTIONS(2171), + [sym__block_quote_start] = ACTIONS(2171), + [sym_atx_h1_marker] = ACTIONS(2171), + [sym_atx_h2_marker] = ACTIONS(2171), + [sym_atx_h3_marker] = ACTIONS(2171), + [sym_atx_h4_marker] = ACTIONS(2171), + [sym_atx_h5_marker] = ACTIONS(2171), + [sym_atx_h6_marker] = ACTIONS(2171), + [sym__thematic_break] = ACTIONS(2171), + [sym__list_marker_minus] = ACTIONS(2171), + [sym__list_marker_plus] = ACTIONS(2171), + [sym__list_marker_star] = ACTIONS(2171), + [sym__list_marker_parenthesis] = ACTIONS(51), + [sym__list_marker_dot] = ACTIONS(2171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_example] = ACTIONS(2171), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2171), + [sym__fenced_code_block_start_backtick] = ACTIONS(2171), + [sym_minus_metadata] = ACTIONS(2171), + [sym__pipe_table_start] = ACTIONS(2171), + [sym__fenced_div_start] = ACTIONS(2171), + [sym_ref_id_specifier] = ACTIONS(2171), + [sym__code_span_start] = ACTIONS(2171), + [sym__html_comment] = ACTIONS(2171), + [sym__autolink] = ACTIONS(2171), + [sym__highlight_span_start] = ACTIONS(2171), + [sym__insert_span_start] = ACTIONS(2171), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2171), + [sym__single_quote_span_open] = ACTIONS(2171), + [sym__double_quote_span_open] = ACTIONS(2171), + [sym__shortcode_open_escaped] = ACTIONS(2171), + [sym__shortcode_open] = ACTIONS(2171), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2171), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2171), + [sym__cite_author_in_text] = ACTIONS(2171), + [sym__cite_suppress_author] = ACTIONS(2171), + [sym__strikeout_open] = ACTIONS(2171), + [sym__subscript_open] = ACTIONS(2171), + [sym__superscript_open] = ACTIONS(2171), + [sym__inline_note_start_token] = ACTIONS(2171), + [sym__strong_emphasis_open_star] = ACTIONS(2171), + [sym__strong_emphasis_open_underscore] = ACTIONS(2171), + [sym__emphasis_open_star] = ACTIONS(2171), + [sym__emphasis_open_underscore] = ACTIONS(2171), + [sym_inline_note_reference] = ACTIONS(2171), + [sym_html_element] = ACTIONS(2171), + [sym__pandoc_line_break] = ACTIONS(2171), + [sym_grid_table] = ACTIONS(2171), }, [STATE(152)] = { - [sym_list_marker_star] = STATE(4), - [sym__list_item_star] = STATE(150), - [aux_sym__list_star_repeat1] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(2156), - [anon_sym_COLON] = ACTIONS(2156), - [sym_entity_reference] = ACTIONS(2156), - [sym_numeric_character_reference] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_BANG_LBRACK] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [aux_sym_pandoc_str_token1] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2156), - [sym__whitespace] = ACTIONS(2156), - [sym__line_ending] = ACTIONS(2156), - [sym__soft_line_ending] = ACTIONS(2156), - [sym__block_quote_start] = ACTIONS(2156), - [sym_atx_h1_marker] = ACTIONS(2156), - [sym_atx_h2_marker] = ACTIONS(2156), - [sym_atx_h3_marker] = ACTIONS(2156), - [sym_atx_h4_marker] = ACTIONS(2156), - [sym_atx_h5_marker] = ACTIONS(2156), - [sym_atx_h6_marker] = ACTIONS(2156), - [sym__thematic_break] = ACTIONS(2156), - [sym__list_marker_minus] = ACTIONS(2156), - [sym__list_marker_plus] = ACTIONS(2156), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(2156), - [sym__list_marker_dot] = ACTIONS(2156), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_example] = ACTIONS(2156), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2156), - [sym__fenced_code_block_start_backtick] = ACTIONS(2156), - [sym_minus_metadata] = ACTIONS(2156), - [sym__pipe_table_start] = ACTIONS(2156), - [sym__fenced_div_start] = ACTIONS(2156), - [sym_ref_id_specifier] = ACTIONS(2156), - [sym__code_span_start] = ACTIONS(2156), - [sym__html_comment] = ACTIONS(2156), - [sym__autolink] = ACTIONS(2156), - [sym__highlight_span_start] = ACTIONS(2156), - [sym__insert_span_start] = ACTIONS(2156), - [sym__delete_span_start] = ACTIONS(2156), - [sym__edit_comment_span_start] = ACTIONS(2156), - [sym__single_quote_span_open] = ACTIONS(2156), - [sym__double_quote_span_open] = ACTIONS(2156), - [sym__shortcode_open_escaped] = ACTIONS(2156), - [sym__shortcode_open] = ACTIONS(2156), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2156), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2156), - [sym__cite_author_in_text] = ACTIONS(2156), - [sym__cite_suppress_author] = ACTIONS(2156), - [sym__strikeout_open] = ACTIONS(2156), - [sym__subscript_open] = ACTIONS(2156), - [sym__superscript_open] = ACTIONS(2156), - [sym__inline_note_start_token] = ACTIONS(2156), - [sym__strong_emphasis_open_star] = ACTIONS(2156), - [sym__strong_emphasis_open_underscore] = ACTIONS(2156), - [sym__emphasis_open_star] = ACTIONS(2156), - [sym__emphasis_open_underscore] = ACTIONS(2156), - [sym_inline_note_reference] = ACTIONS(2156), - [sym_html_element] = ACTIONS(2156), - [sym__pandoc_line_break] = ACTIONS(2156), + [sym_list_marker_example] = STATE(14), + [sym__list_item_example] = STATE(149), + [aux_sym__list_example_repeat1] = STATE(149), + [anon_sym_COLON] = ACTIONS(2175), + [sym_entity_reference] = ACTIONS(2175), + [sym_numeric_character_reference] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_BANG_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [aux_sym_pandoc_str_token1] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2175), + [sym__whitespace] = ACTIONS(2175), + [sym__line_ending] = ACTIONS(2175), + [sym__soft_line_ending] = ACTIONS(2175), + [sym__block_close] = ACTIONS(2175), + [sym__block_quote_start] = ACTIONS(2175), + [sym_atx_h1_marker] = ACTIONS(2175), + [sym_atx_h2_marker] = ACTIONS(2175), + [sym_atx_h3_marker] = ACTIONS(2175), + [sym_atx_h4_marker] = ACTIONS(2175), + [sym_atx_h5_marker] = ACTIONS(2175), + [sym_atx_h6_marker] = ACTIONS(2175), + [sym__thematic_break] = ACTIONS(2175), + [sym__list_marker_minus] = ACTIONS(2175), + [sym__list_marker_plus] = ACTIONS(2175), + [sym__list_marker_star] = ACTIONS(2175), + [sym__list_marker_parenthesis] = ACTIONS(2175), + [sym__list_marker_dot] = ACTIONS(2175), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_example] = ACTIONS(55), + [sym__list_marker_example_dont_interrupt] = ACTIONS(55), + [sym__fenced_code_block_start_backtick] = ACTIONS(2175), + [sym_minus_metadata] = ACTIONS(2175), + [sym__pipe_table_start] = ACTIONS(2175), + [sym__fenced_div_start] = ACTIONS(2175), + [sym_ref_id_specifier] = ACTIONS(2175), + [sym__code_span_start] = ACTIONS(2175), + [sym__html_comment] = ACTIONS(2175), + [sym__autolink] = ACTIONS(2175), + [sym__highlight_span_start] = ACTIONS(2175), + [sym__insert_span_start] = ACTIONS(2175), + [sym__delete_span_start] = ACTIONS(2175), + [sym__edit_comment_span_start] = ACTIONS(2175), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2175), + [sym__shortcode_open_escaped] = ACTIONS(2175), + [sym__shortcode_open] = ACTIONS(2175), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2175), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2175), + [sym__cite_author_in_text] = ACTIONS(2175), + [sym__cite_suppress_author] = ACTIONS(2175), + [sym__strikeout_open] = ACTIONS(2175), + [sym__subscript_open] = ACTIONS(2175), + [sym__superscript_open] = ACTIONS(2175), + [sym__inline_note_start_token] = ACTIONS(2175), + [sym__strong_emphasis_open_star] = ACTIONS(2175), + [sym__strong_emphasis_open_underscore] = ACTIONS(2175), + [sym__emphasis_open_star] = ACTIONS(2175), + [sym__emphasis_open_underscore] = ACTIONS(2175), + [sym_inline_note_reference] = ACTIONS(2175), + [sym_html_element] = ACTIONS(2175), + [sym__pandoc_line_break] = ACTIONS(2175), + [sym_grid_table] = ACTIONS(2175), }, [STATE(153)] = { - [sym_list_marker_dot] = STATE(3), - [sym__list_item_dot] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(2160), - [anon_sym_COLON] = ACTIONS(2160), - [sym_entity_reference] = ACTIONS(2160), - [sym_numeric_character_reference] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_BANG_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [aux_sym_pandoc_str_token1] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2160), - [sym__whitespace] = ACTIONS(2160), - [sym__line_ending] = ACTIONS(2160), - [sym__soft_line_ending] = ACTIONS(2160), - [sym__block_quote_start] = ACTIONS(2160), - [sym_atx_h1_marker] = ACTIONS(2160), - [sym_atx_h2_marker] = ACTIONS(2160), - [sym_atx_h3_marker] = ACTIONS(2160), - [sym_atx_h4_marker] = ACTIONS(2160), - [sym_atx_h5_marker] = ACTIONS(2160), - [sym_atx_h6_marker] = ACTIONS(2160), - [sym__thematic_break] = ACTIONS(2160), - [sym__list_marker_minus] = ACTIONS(2160), - [sym__list_marker_plus] = ACTIONS(2160), - [sym__list_marker_star] = ACTIONS(2160), - [sym__list_marker_parenthesis] = ACTIONS(2160), + [sym_list_marker_dot] = STATE(8), + [sym__list_item_dot] = STATE(159), + [aux_sym__list_dot_repeat1] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(2101), + [anon_sym_COLON] = ACTIONS(2101), + [sym_entity_reference] = ACTIONS(2101), + [sym_numeric_character_reference] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_BANG_LBRACK] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2103), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [aux_sym_pandoc_str_token1] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2101), + [sym__whitespace] = ACTIONS(2101), + [sym__line_ending] = ACTIONS(2101), + [sym__soft_line_ending] = ACTIONS(2101), + [sym__block_quote_start] = ACTIONS(2101), + [sym_atx_h1_marker] = ACTIONS(2101), + [sym_atx_h2_marker] = ACTIONS(2101), + [sym_atx_h3_marker] = ACTIONS(2101), + [sym_atx_h4_marker] = ACTIONS(2101), + [sym_atx_h5_marker] = ACTIONS(2101), + [sym_atx_h6_marker] = ACTIONS(2101), + [sym__thematic_break] = ACTIONS(2101), + [sym__list_marker_minus] = ACTIONS(2101), + [sym__list_marker_plus] = ACTIONS(2101), + [sym__list_marker_star] = ACTIONS(2101), + [sym__list_marker_parenthesis] = ACTIONS(2101), [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2160), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2101), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2101), [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(2160), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2160), - [sym__fenced_code_block_start_backtick] = ACTIONS(2160), - [sym_minus_metadata] = ACTIONS(2160), - [sym__pipe_table_start] = ACTIONS(2160), - [sym__fenced_div_start] = ACTIONS(2160), - [sym_ref_id_specifier] = ACTIONS(2160), - [sym__code_span_start] = ACTIONS(2160), - [sym__html_comment] = ACTIONS(2160), - [sym__autolink] = ACTIONS(2160), - [sym__highlight_span_start] = ACTIONS(2160), - [sym__insert_span_start] = ACTIONS(2160), - [sym__delete_span_start] = ACTIONS(2160), - [sym__edit_comment_span_start] = ACTIONS(2160), - [sym__single_quote_span_open] = ACTIONS(2160), - [sym__double_quote_span_open] = ACTIONS(2160), - [sym__shortcode_open_escaped] = ACTIONS(2160), - [sym__shortcode_open] = ACTIONS(2160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2160), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2160), - [sym__cite_author_in_text] = ACTIONS(2160), - [sym__cite_suppress_author] = ACTIONS(2160), - [sym__strikeout_open] = ACTIONS(2160), - [sym__subscript_open] = ACTIONS(2160), - [sym__superscript_open] = ACTIONS(2160), - [sym__inline_note_start_token] = ACTIONS(2160), - [sym__strong_emphasis_open_star] = ACTIONS(2160), - [sym__strong_emphasis_open_underscore] = ACTIONS(2160), - [sym__emphasis_open_star] = ACTIONS(2160), - [sym__emphasis_open_underscore] = ACTIONS(2160), - [sym_inline_note_reference] = ACTIONS(2160), - [sym_html_element] = ACTIONS(2160), - [sym__pandoc_line_break] = ACTIONS(2160), + [sym__list_marker_example] = ACTIONS(2101), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2101), + [sym__fenced_code_block_start_backtick] = ACTIONS(2101), + [sym_minus_metadata] = ACTIONS(2101), + [sym__pipe_table_start] = ACTIONS(2101), + [sym__fenced_div_start] = ACTIONS(2101), + [sym_ref_id_specifier] = ACTIONS(2101), + [sym__code_span_start] = ACTIONS(2101), + [sym__html_comment] = ACTIONS(2101), + [sym__autolink] = ACTIONS(2101), + [sym__highlight_span_start] = ACTIONS(2101), + [sym__insert_span_start] = ACTIONS(2101), + [sym__delete_span_start] = ACTIONS(2101), + [sym__edit_comment_span_start] = ACTIONS(2101), + [sym__single_quote_span_open] = ACTIONS(2101), + [sym__double_quote_span_open] = ACTIONS(2101), + [sym__shortcode_open_escaped] = ACTIONS(2101), + [sym__shortcode_open] = ACTIONS(2101), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2101), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2101), + [sym__cite_author_in_text] = ACTIONS(2101), + [sym__cite_suppress_author] = ACTIONS(2101), + [sym__strikeout_open] = ACTIONS(2101), + [sym__subscript_open] = ACTIONS(2101), + [sym__superscript_open] = ACTIONS(2101), + [sym__inline_note_start_token] = ACTIONS(2101), + [sym__strong_emphasis_open_star] = ACTIONS(2101), + [sym__strong_emphasis_open_underscore] = ACTIONS(2101), + [sym__emphasis_open_star] = ACTIONS(2101), + [sym__emphasis_open_underscore] = ACTIONS(2101), + [sym_inline_note_reference] = ACTIONS(2101), + [sym_html_element] = ACTIONS(2101), + [sym__pandoc_line_break] = ACTIONS(2101), + [sym_grid_table] = ACTIONS(2101), }, [STATE(154)] = { [sym_list_marker_parenthesis] = STATE(5), - [sym__list_item_parenthesis] = STATE(164), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [ts_builtin_sym_end] = ACTIONS(2164), - [anon_sym_COLON] = ACTIONS(2164), - [sym_entity_reference] = ACTIONS(2164), - [sym_numeric_character_reference] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_BANG_LBRACK] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2166), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [aux_sym_pandoc_str_token1] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2164), - [sym__whitespace] = ACTIONS(2164), - [sym__line_ending] = ACTIONS(2164), - [sym__soft_line_ending] = ACTIONS(2164), - [sym__block_quote_start] = ACTIONS(2164), - [sym_atx_h1_marker] = ACTIONS(2164), - [sym_atx_h2_marker] = ACTIONS(2164), - [sym_atx_h3_marker] = ACTIONS(2164), - [sym_atx_h4_marker] = ACTIONS(2164), - [sym_atx_h5_marker] = ACTIONS(2164), - [sym_atx_h6_marker] = ACTIONS(2164), - [sym__thematic_break] = ACTIONS(2164), - [sym__list_marker_minus] = ACTIONS(2164), - [sym__list_marker_plus] = ACTIONS(2164), - [sym__list_marker_star] = ACTIONS(2164), + [sym__list_item_parenthesis] = STATE(160), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2171), + [sym_entity_reference] = ACTIONS(2171), + [sym_numeric_character_reference] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_BANG_LBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [aux_sym_pandoc_str_token1] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2171), + [sym__whitespace] = ACTIONS(2171), + [sym__line_ending] = ACTIONS(2171), + [sym__soft_line_ending] = ACTIONS(2171), + [sym__block_quote_start] = ACTIONS(2171), + [sym_atx_h1_marker] = ACTIONS(2171), + [sym_atx_h2_marker] = ACTIONS(2171), + [sym_atx_h3_marker] = ACTIONS(2171), + [sym_atx_h4_marker] = ACTIONS(2171), + [sym_atx_h5_marker] = ACTIONS(2171), + [sym_atx_h6_marker] = ACTIONS(2171), + [sym__thematic_break] = ACTIONS(2171), + [sym__list_marker_minus] = ACTIONS(2171), + [sym__list_marker_plus] = ACTIONS(2171), + [sym__list_marker_star] = ACTIONS(2171), [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(2164), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2164), + [sym__list_marker_dot] = ACTIONS(2171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2171), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_example] = ACTIONS(2164), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2164), - [sym__fenced_code_block_start_backtick] = ACTIONS(2164), - [sym_minus_metadata] = ACTIONS(2164), - [sym__pipe_table_start] = ACTIONS(2164), - [sym__fenced_div_start] = ACTIONS(2164), - [sym_ref_id_specifier] = ACTIONS(2164), - [sym__code_span_start] = ACTIONS(2164), - [sym__html_comment] = ACTIONS(2164), - [sym__autolink] = ACTIONS(2164), - [sym__highlight_span_start] = ACTIONS(2164), - [sym__insert_span_start] = ACTIONS(2164), - [sym__delete_span_start] = ACTIONS(2164), - [sym__edit_comment_span_start] = ACTIONS(2164), - [sym__single_quote_span_open] = ACTIONS(2164), - [sym__double_quote_span_open] = ACTIONS(2164), - [sym__shortcode_open_escaped] = ACTIONS(2164), - [sym__shortcode_open] = ACTIONS(2164), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2164), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2164), - [sym__cite_author_in_text] = ACTIONS(2164), - [sym__cite_suppress_author] = ACTIONS(2164), - [sym__strikeout_open] = ACTIONS(2164), - [sym__subscript_open] = ACTIONS(2164), - [sym__superscript_open] = ACTIONS(2164), - [sym__inline_note_start_token] = ACTIONS(2164), - [sym__strong_emphasis_open_star] = ACTIONS(2164), - [sym__strong_emphasis_open_underscore] = ACTIONS(2164), - [sym__emphasis_open_star] = ACTIONS(2164), - [sym__emphasis_open_underscore] = ACTIONS(2164), - [sym_inline_note_reference] = ACTIONS(2164), - [sym_html_element] = ACTIONS(2164), - [sym__pandoc_line_break] = ACTIONS(2164), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_example] = ACTIONS(2171), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2171), + [sym__fenced_code_block_start_backtick] = ACTIONS(2171), + [sym_minus_metadata] = ACTIONS(2171), + [sym__pipe_table_start] = ACTIONS(2171), + [sym__fenced_div_start] = ACTIONS(2171), + [sym_ref_id_specifier] = ACTIONS(2171), + [sym__code_span_start] = ACTIONS(2171), + [sym__html_comment] = ACTIONS(2171), + [sym__autolink] = ACTIONS(2171), + [sym__highlight_span_start] = ACTIONS(2171), + [sym__insert_span_start] = ACTIONS(2171), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2171), + [sym__single_quote_span_open] = ACTIONS(2171), + [sym__double_quote_span_open] = ACTIONS(2171), + [sym__shortcode_open_escaped] = ACTIONS(2171), + [sym__shortcode_open] = ACTIONS(2171), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2171), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2171), + [sym__cite_author_in_text] = ACTIONS(2171), + [sym__cite_suppress_author] = ACTIONS(2171), + [sym__strikeout_open] = ACTIONS(2171), + [sym__subscript_open] = ACTIONS(2171), + [sym__superscript_open] = ACTIONS(2171), + [sym__inline_note_start_token] = ACTIONS(2171), + [sym__strong_emphasis_open_star] = ACTIONS(2171), + [sym__strong_emphasis_open_underscore] = ACTIONS(2171), + [sym__emphasis_open_star] = ACTIONS(2171), + [sym__emphasis_open_underscore] = ACTIONS(2171), + [sym_inline_note_reference] = ACTIONS(2171), + [sym_html_element] = ACTIONS(2171), + [sym__pandoc_line_break] = ACTIONS(2171), + [sym_grid_table] = ACTIONS(2171), }, [STATE(155)] = { [sym_list_marker_example] = STATE(6), - [sym__list_item_example] = STATE(149), - [aux_sym__list_example_repeat1] = STATE(149), - [ts_builtin_sym_end] = ACTIONS(2168), - [anon_sym_COLON] = ACTIONS(2168), - [sym_entity_reference] = ACTIONS(2168), - [sym_numeric_character_reference] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_BANG_LBRACK] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [aux_sym_pandoc_str_token1] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2168), - [sym__whitespace] = ACTIONS(2168), - [sym__line_ending] = ACTIONS(2168), - [sym__soft_line_ending] = ACTIONS(2168), - [sym__block_quote_start] = ACTIONS(2168), - [sym_atx_h1_marker] = ACTIONS(2168), - [sym_atx_h2_marker] = ACTIONS(2168), - [sym_atx_h3_marker] = ACTIONS(2168), - [sym_atx_h4_marker] = ACTIONS(2168), - [sym_atx_h5_marker] = ACTIONS(2168), - [sym_atx_h6_marker] = ACTIONS(2168), - [sym__thematic_break] = ACTIONS(2168), - [sym__list_marker_minus] = ACTIONS(2168), - [sym__list_marker_plus] = ACTIONS(2168), - [sym__list_marker_star] = ACTIONS(2168), - [sym__list_marker_parenthesis] = ACTIONS(2168), - [sym__list_marker_dot] = ACTIONS(2168), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2168), + [sym__list_item_example] = STATE(161), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [sym_entity_reference] = ACTIONS(2175), + [sym_numeric_character_reference] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_BANG_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [aux_sym_pandoc_str_token1] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2175), + [sym__whitespace] = ACTIONS(2175), + [sym__line_ending] = ACTIONS(2175), + [sym__soft_line_ending] = ACTIONS(2175), + [sym__block_quote_start] = ACTIONS(2175), + [sym_atx_h1_marker] = ACTIONS(2175), + [sym_atx_h2_marker] = ACTIONS(2175), + [sym_atx_h3_marker] = ACTIONS(2175), + [sym_atx_h4_marker] = ACTIONS(2175), + [sym_atx_h5_marker] = ACTIONS(2175), + [sym_atx_h6_marker] = ACTIONS(2175), + [sym__thematic_break] = ACTIONS(2175), + [sym__list_marker_minus] = ACTIONS(2175), + [sym__list_marker_plus] = ACTIONS(2175), + [sym__list_marker_star] = ACTIONS(2175), + [sym__list_marker_parenthesis] = ACTIONS(2175), + [sym__list_marker_dot] = ACTIONS(2175), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2175), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(2168), - [sym_minus_metadata] = ACTIONS(2168), - [sym__pipe_table_start] = ACTIONS(2168), - [sym__fenced_div_start] = ACTIONS(2168), - [sym_ref_id_specifier] = ACTIONS(2168), - [sym__code_span_start] = ACTIONS(2168), - [sym__html_comment] = ACTIONS(2168), - [sym__autolink] = ACTIONS(2168), - [sym__highlight_span_start] = ACTIONS(2168), - [sym__insert_span_start] = ACTIONS(2168), - [sym__delete_span_start] = ACTIONS(2168), - [sym__edit_comment_span_start] = ACTIONS(2168), - [sym__single_quote_span_open] = ACTIONS(2168), - [sym__double_quote_span_open] = ACTIONS(2168), - [sym__shortcode_open_escaped] = ACTIONS(2168), - [sym__shortcode_open] = ACTIONS(2168), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2168), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2168), - [sym__cite_author_in_text] = ACTIONS(2168), - [sym__cite_suppress_author] = ACTIONS(2168), - [sym__strikeout_open] = ACTIONS(2168), - [sym__subscript_open] = ACTIONS(2168), - [sym__superscript_open] = ACTIONS(2168), - [sym__inline_note_start_token] = ACTIONS(2168), - [sym__strong_emphasis_open_star] = ACTIONS(2168), - [sym__strong_emphasis_open_underscore] = ACTIONS(2168), - [sym__emphasis_open_star] = ACTIONS(2168), - [sym__emphasis_open_underscore] = ACTIONS(2168), - [sym_inline_note_reference] = ACTIONS(2168), - [sym_html_element] = ACTIONS(2168), - [sym__pandoc_line_break] = ACTIONS(2168), + [sym__fenced_code_block_start_backtick] = ACTIONS(2175), + [sym_minus_metadata] = ACTIONS(2175), + [sym__pipe_table_start] = ACTIONS(2175), + [sym__fenced_div_start] = ACTIONS(2175), + [sym_ref_id_specifier] = ACTIONS(2175), + [sym__code_span_start] = ACTIONS(2175), + [sym__html_comment] = ACTIONS(2175), + [sym__autolink] = ACTIONS(2175), + [sym__highlight_span_start] = ACTIONS(2175), + [sym__insert_span_start] = ACTIONS(2175), + [sym__delete_span_start] = ACTIONS(2175), + [sym__edit_comment_span_start] = ACTIONS(2175), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2175), + [sym__shortcode_open_escaped] = ACTIONS(2175), + [sym__shortcode_open] = ACTIONS(2175), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2175), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2175), + [sym__cite_author_in_text] = ACTIONS(2175), + [sym__cite_suppress_author] = ACTIONS(2175), + [sym__strikeout_open] = ACTIONS(2175), + [sym__subscript_open] = ACTIONS(2175), + [sym__superscript_open] = ACTIONS(2175), + [sym__inline_note_start_token] = ACTIONS(2175), + [sym__strong_emphasis_open_star] = ACTIONS(2175), + [sym__strong_emphasis_open_underscore] = ACTIONS(2175), + [sym__emphasis_open_star] = ACTIONS(2175), + [sym__emphasis_open_underscore] = ACTIONS(2175), + [sym_inline_note_reference] = ACTIONS(2175), + [sym_html_element] = ACTIONS(2175), + [sym__pandoc_line_break] = ACTIONS(2175), + [sym_grid_table] = ACTIONS(2175), }, [STATE(156)] = { - [sym_list_marker_dot] = STATE(11), - [sym__list_item_dot] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(156), - [anon_sym_COLON] = ACTIONS(2172), - [sym_entity_reference] = ACTIONS(2172), - [sym_numeric_character_reference] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_BANG_LBRACK] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2174), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [aux_sym_pandoc_str_token1] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2172), - [sym__whitespace] = ACTIONS(2172), - [sym__line_ending] = ACTIONS(2172), - [sym__soft_line_ending] = ACTIONS(2172), - [sym__block_close] = ACTIONS(2172), - [sym__block_quote_start] = ACTIONS(2172), - [sym_atx_h1_marker] = ACTIONS(2172), - [sym_atx_h2_marker] = ACTIONS(2172), - [sym_atx_h3_marker] = ACTIONS(2172), - [sym_atx_h4_marker] = ACTIONS(2172), - [sym_atx_h5_marker] = ACTIONS(2172), - [sym_atx_h6_marker] = ACTIONS(2172), - [sym__thematic_break] = ACTIONS(2172), - [sym__list_marker_minus] = ACTIONS(2172), - [sym__list_marker_plus] = ACTIONS(2172), - [sym__list_marker_star] = ACTIONS(2172), - [sym__list_marker_parenthesis] = ACTIONS(2172), - [sym__list_marker_dot] = ACTIONS(2176), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_example] = ACTIONS(2172), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2172), - [sym__fenced_code_block_start_backtick] = ACTIONS(2172), - [sym_minus_metadata] = ACTIONS(2172), - [sym__pipe_table_start] = ACTIONS(2172), - [sym__fenced_div_start] = ACTIONS(2172), - [sym_ref_id_specifier] = ACTIONS(2172), - [sym__code_span_start] = ACTIONS(2172), - [sym__html_comment] = ACTIONS(2172), - [sym__autolink] = ACTIONS(2172), - [sym__highlight_span_start] = ACTIONS(2172), - [sym__insert_span_start] = ACTIONS(2172), - [sym__delete_span_start] = ACTIONS(2172), - [sym__edit_comment_span_start] = ACTIONS(2172), - [sym__single_quote_span_open] = ACTIONS(2172), - [sym__double_quote_span_open] = ACTIONS(2172), - [sym__shortcode_open_escaped] = ACTIONS(2172), - [sym__shortcode_open] = ACTIONS(2172), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2172), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2172), - [sym__cite_author_in_text] = ACTIONS(2172), - [sym__cite_suppress_author] = ACTIONS(2172), - [sym__strikeout_open] = ACTIONS(2172), - [sym__subscript_open] = ACTIONS(2172), - [sym__superscript_open] = ACTIONS(2172), - [sym__inline_note_start_token] = ACTIONS(2172), - [sym__strong_emphasis_open_star] = ACTIONS(2172), - [sym__strong_emphasis_open_underscore] = ACTIONS(2172), - [sym__emphasis_open_star] = ACTIONS(2172), - [sym__emphasis_open_underscore] = ACTIONS(2172), - [sym_inline_note_reference] = ACTIONS(2172), - [sym_html_element] = ACTIONS(2172), - [sym__pandoc_line_break] = ACTIONS(2172), + [sym_list_marker_minus] = STATE(4), + [sym__list_item_minus] = STATE(157), + [aux_sym__list_minus_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BANG_LBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [aux_sym_pandoc_str_token1] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2079), + [sym__whitespace] = ACTIONS(2079), + [sym__line_ending] = ACTIONS(2079), + [sym__soft_line_ending] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(2079), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_example] = ACTIONS(2079), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym_minus_metadata] = ACTIONS(2079), + [sym__pipe_table_start] = ACTIONS(2079), + [sym__fenced_div_start] = ACTIONS(2079), + [sym_ref_id_specifier] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__html_comment] = ACTIONS(2079), + [sym__autolink] = ACTIONS(2079), + [sym__highlight_span_start] = ACTIONS(2079), + [sym__insert_span_start] = ACTIONS(2079), + [sym__delete_span_start] = ACTIONS(2079), + [sym__edit_comment_span_start] = ACTIONS(2079), + [sym__single_quote_span_open] = ACTIONS(2079), + [sym__double_quote_span_open] = ACTIONS(2079), + [sym__shortcode_open_escaped] = ACTIONS(2079), + [sym__shortcode_open] = ACTIONS(2079), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2079), + [sym__cite_author_in_text] = ACTIONS(2079), + [sym__cite_suppress_author] = ACTIONS(2079), + [sym__strikeout_open] = ACTIONS(2079), + [sym__subscript_open] = ACTIONS(2079), + [sym__superscript_open] = ACTIONS(2079), + [sym__inline_note_start_token] = ACTIONS(2079), + [sym__strong_emphasis_open_star] = ACTIONS(2079), + [sym__strong_emphasis_open_underscore] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), + [sym_inline_note_reference] = ACTIONS(2079), + [sym_html_element] = ACTIONS(2079), + [sym__pandoc_line_break] = ACTIONS(2079), + [sym_grid_table] = ACTIONS(2079), }, [STATE(157)] = { - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_parenthesis] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(157), - [anon_sym_COLON] = ACTIONS(2120), - [sym_entity_reference] = ACTIONS(2120), - [sym_numeric_character_reference] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_BANG_LBRACK] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [aux_sym_pandoc_str_token1] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2120), - [sym__whitespace] = ACTIONS(2120), - [sym__line_ending] = ACTIONS(2120), - [sym__soft_line_ending] = ACTIONS(2120), - [sym__block_close] = ACTIONS(2120), - [sym__block_quote_start] = ACTIONS(2120), - [sym_atx_h1_marker] = ACTIONS(2120), - [sym_atx_h2_marker] = ACTIONS(2120), - [sym_atx_h3_marker] = ACTIONS(2120), - [sym_atx_h4_marker] = ACTIONS(2120), - [sym_atx_h5_marker] = ACTIONS(2120), - [sym_atx_h6_marker] = ACTIONS(2120), - [sym__thematic_break] = ACTIONS(2120), - [sym__list_marker_minus] = ACTIONS(2120), - [sym__list_marker_plus] = ACTIONS(2120), - [sym__list_marker_star] = ACTIONS(2120), - [sym__list_marker_parenthesis] = ACTIONS(2124), - [sym__list_marker_dot] = ACTIONS(2120), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_example] = ACTIONS(2120), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2120), - [sym__fenced_code_block_start_backtick] = ACTIONS(2120), - [sym_minus_metadata] = ACTIONS(2120), - [sym__pipe_table_start] = ACTIONS(2120), - [sym__fenced_div_start] = ACTIONS(2120), - [sym_ref_id_specifier] = ACTIONS(2120), - [sym__code_span_start] = ACTIONS(2120), - [sym__html_comment] = ACTIONS(2120), - [sym__autolink] = ACTIONS(2120), - [sym__highlight_span_start] = ACTIONS(2120), - [sym__insert_span_start] = ACTIONS(2120), - [sym__delete_span_start] = ACTIONS(2120), - [sym__edit_comment_span_start] = ACTIONS(2120), - [sym__single_quote_span_open] = ACTIONS(2120), - [sym__double_quote_span_open] = ACTIONS(2120), - [sym__shortcode_open_escaped] = ACTIONS(2120), - [sym__shortcode_open] = ACTIONS(2120), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2120), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2120), - [sym__cite_author_in_text] = ACTIONS(2120), - [sym__cite_suppress_author] = ACTIONS(2120), - [sym__strikeout_open] = ACTIONS(2120), - [sym__subscript_open] = ACTIONS(2120), - [sym__superscript_open] = ACTIONS(2120), - [sym__inline_note_start_token] = ACTIONS(2120), - [sym__strong_emphasis_open_star] = ACTIONS(2120), - [sym__strong_emphasis_open_underscore] = ACTIONS(2120), - [sym__emphasis_open_star] = ACTIONS(2120), - [sym__emphasis_open_underscore] = ACTIONS(2120), - [sym_inline_note_reference] = ACTIONS(2120), - [sym_html_element] = ACTIONS(2120), - [sym__pandoc_line_break] = ACTIONS(2120), + [sym_list_marker_minus] = STATE(4), + [sym__list_item_minus] = STATE(157), + [aux_sym__list_minus_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(2054), + [anon_sym_COLON] = ACTIONS(2054), + [sym_entity_reference] = ACTIONS(2054), + [sym_numeric_character_reference] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_BANG_LBRACK] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [aux_sym_pandoc_str_token1] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2054), + [sym__whitespace] = ACTIONS(2054), + [sym__line_ending] = ACTIONS(2054), + [sym__soft_line_ending] = ACTIONS(2054), + [sym__block_quote_start] = ACTIONS(2054), + [sym_atx_h1_marker] = ACTIONS(2054), + [sym_atx_h2_marker] = ACTIONS(2054), + [sym_atx_h3_marker] = ACTIONS(2054), + [sym_atx_h4_marker] = ACTIONS(2054), + [sym_atx_h5_marker] = ACTIONS(2054), + [sym_atx_h6_marker] = ACTIONS(2054), + [sym__thematic_break] = ACTIONS(2054), + [sym__list_marker_minus] = ACTIONS(2058), + [sym__list_marker_plus] = ACTIONS(2054), + [sym__list_marker_star] = ACTIONS(2054), + [sym__list_marker_parenthesis] = ACTIONS(2054), + [sym__list_marker_dot] = ACTIONS(2054), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2058), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_example] = ACTIONS(2054), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2054), + [sym__fenced_code_block_start_backtick] = ACTIONS(2054), + [sym_minus_metadata] = ACTIONS(2054), + [sym__pipe_table_start] = ACTIONS(2054), + [sym__fenced_div_start] = ACTIONS(2054), + [sym_ref_id_specifier] = ACTIONS(2054), + [sym__code_span_start] = ACTIONS(2054), + [sym__html_comment] = ACTIONS(2054), + [sym__autolink] = ACTIONS(2054), + [sym__highlight_span_start] = ACTIONS(2054), + [sym__insert_span_start] = ACTIONS(2054), + [sym__delete_span_start] = ACTIONS(2054), + [sym__edit_comment_span_start] = ACTIONS(2054), + [sym__single_quote_span_open] = ACTIONS(2054), + [sym__double_quote_span_open] = ACTIONS(2054), + [sym__shortcode_open_escaped] = ACTIONS(2054), + [sym__shortcode_open] = ACTIONS(2054), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2054), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2054), + [sym__cite_author_in_text] = ACTIONS(2054), + [sym__cite_suppress_author] = ACTIONS(2054), + [sym__strikeout_open] = ACTIONS(2054), + [sym__subscript_open] = ACTIONS(2054), + [sym__superscript_open] = ACTIONS(2054), + [sym__inline_note_start_token] = ACTIONS(2054), + [sym__strong_emphasis_open_star] = ACTIONS(2054), + [sym__strong_emphasis_open_underscore] = ACTIONS(2054), + [sym__emphasis_open_star] = ACTIONS(2054), + [sym__emphasis_open_underscore] = ACTIONS(2054), + [sym_inline_note_reference] = ACTIONS(2054), + [sym_html_element] = ACTIONS(2054), + [sym__pandoc_line_break] = ACTIONS(2054), + [sym_grid_table] = ACTIONS(2054), }, [STATE(158)] = { - [sym_list_marker_dot] = STATE(3), - [sym__list_item_dot] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(2172), - [anon_sym_COLON] = ACTIONS(2172), - [sym_entity_reference] = ACTIONS(2172), - [sym_numeric_character_reference] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_BANG_LBRACK] = ACTIONS(2172), - [anon_sym_DOLLAR] = ACTIONS(2174), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [aux_sym_pandoc_str_token1] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2172), - [sym__whitespace] = ACTIONS(2172), - [sym__line_ending] = ACTIONS(2172), - [sym__soft_line_ending] = ACTIONS(2172), - [sym__block_quote_start] = ACTIONS(2172), - [sym_atx_h1_marker] = ACTIONS(2172), - [sym_atx_h2_marker] = ACTIONS(2172), - [sym_atx_h3_marker] = ACTIONS(2172), - [sym_atx_h4_marker] = ACTIONS(2172), - [sym_atx_h5_marker] = ACTIONS(2172), - [sym_atx_h6_marker] = ACTIONS(2172), - [sym__thematic_break] = ACTIONS(2172), - [sym__list_marker_minus] = ACTIONS(2172), - [sym__list_marker_plus] = ACTIONS(2172), - [sym__list_marker_star] = ACTIONS(2172), - [sym__list_marker_parenthesis] = ACTIONS(2172), - [sym__list_marker_dot] = ACTIONS(2176), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2172), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2176), - [sym__list_marker_example] = ACTIONS(2172), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2172), - [sym__fenced_code_block_start_backtick] = ACTIONS(2172), - [sym_minus_metadata] = ACTIONS(2172), - [sym__pipe_table_start] = ACTIONS(2172), - [sym__fenced_div_start] = ACTIONS(2172), - [sym_ref_id_specifier] = ACTIONS(2172), - [sym__code_span_start] = ACTIONS(2172), - [sym__html_comment] = ACTIONS(2172), - [sym__autolink] = ACTIONS(2172), - [sym__highlight_span_start] = ACTIONS(2172), - [sym__insert_span_start] = ACTIONS(2172), - [sym__delete_span_start] = ACTIONS(2172), - [sym__edit_comment_span_start] = ACTIONS(2172), - [sym__single_quote_span_open] = ACTIONS(2172), - [sym__double_quote_span_open] = ACTIONS(2172), - [sym__shortcode_open_escaped] = ACTIONS(2172), - [sym__shortcode_open] = ACTIONS(2172), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2172), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2172), - [sym__cite_author_in_text] = ACTIONS(2172), - [sym__cite_suppress_author] = ACTIONS(2172), - [sym__strikeout_open] = ACTIONS(2172), - [sym__subscript_open] = ACTIONS(2172), - [sym__superscript_open] = ACTIONS(2172), - [sym__inline_note_start_token] = ACTIONS(2172), - [sym__strong_emphasis_open_star] = ACTIONS(2172), - [sym__strong_emphasis_open_underscore] = ACTIONS(2172), - [sym__emphasis_open_star] = ACTIONS(2172), - [sym__emphasis_open_underscore] = ACTIONS(2172), - [sym_inline_note_reference] = ACTIONS(2172), - [sym_html_element] = ACTIONS(2172), - [sym__pandoc_line_break] = ACTIONS(2172), + [sym_list_marker_star] = STATE(3), + [sym__list_item_star] = STATE(158), + [aux_sym__list_star_repeat1] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(2061), + [anon_sym_COLON] = ACTIONS(2061), + [sym_entity_reference] = ACTIONS(2061), + [sym_numeric_character_reference] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_BANG_LBRACK] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [aux_sym_pandoc_str_token1] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2061), + [sym__whitespace] = ACTIONS(2061), + [sym__line_ending] = ACTIONS(2061), + [sym__soft_line_ending] = ACTIONS(2061), + [sym__block_quote_start] = ACTIONS(2061), + [sym_atx_h1_marker] = ACTIONS(2061), + [sym_atx_h2_marker] = ACTIONS(2061), + [sym_atx_h3_marker] = ACTIONS(2061), + [sym_atx_h4_marker] = ACTIONS(2061), + [sym_atx_h5_marker] = ACTIONS(2061), + [sym_atx_h6_marker] = ACTIONS(2061), + [sym__thematic_break] = ACTIONS(2061), + [sym__list_marker_minus] = ACTIONS(2061), + [sym__list_marker_plus] = ACTIONS(2061), + [sym__list_marker_star] = ACTIONS(2065), + [sym__list_marker_parenthesis] = ACTIONS(2061), + [sym__list_marker_dot] = ACTIONS(2061), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_example] = ACTIONS(2061), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2061), + [sym__fenced_code_block_start_backtick] = ACTIONS(2061), + [sym_minus_metadata] = ACTIONS(2061), + [sym__pipe_table_start] = ACTIONS(2061), + [sym__fenced_div_start] = ACTIONS(2061), + [sym_ref_id_specifier] = ACTIONS(2061), + [sym__code_span_start] = ACTIONS(2061), + [sym__html_comment] = ACTIONS(2061), + [sym__autolink] = ACTIONS(2061), + [sym__highlight_span_start] = ACTIONS(2061), + [sym__insert_span_start] = ACTIONS(2061), + [sym__delete_span_start] = ACTIONS(2061), + [sym__edit_comment_span_start] = ACTIONS(2061), + [sym__single_quote_span_open] = ACTIONS(2061), + [sym__double_quote_span_open] = ACTIONS(2061), + [sym__shortcode_open_escaped] = ACTIONS(2061), + [sym__shortcode_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2061), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2061), + [sym__cite_author_in_text] = ACTIONS(2061), + [sym__cite_suppress_author] = ACTIONS(2061), + [sym__strikeout_open] = ACTIONS(2061), + [sym__subscript_open] = ACTIONS(2061), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2061), + [sym__strong_emphasis_open_star] = ACTIONS(2061), + [sym__strong_emphasis_open_underscore] = ACTIONS(2061), + [sym__emphasis_open_star] = ACTIONS(2061), + [sym__emphasis_open_underscore] = ACTIONS(2061), + [sym_inline_note_reference] = ACTIONS(2061), + [sym_html_element] = ACTIONS(2061), + [sym__pandoc_line_break] = ACTIONS(2061), + [sym_grid_table] = ACTIONS(2061), }, [STATE(159)] = { - [sym_list_marker_dot] = STATE(11), - [sym__list_item_dot] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(156), - [anon_sym_COLON] = ACTIONS(2160), - [sym_entity_reference] = ACTIONS(2160), - [sym_numeric_character_reference] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_BANG_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2162), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [aux_sym_pandoc_str_token1] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2160), - [sym__whitespace] = ACTIONS(2160), - [sym__line_ending] = ACTIONS(2160), - [sym__soft_line_ending] = ACTIONS(2160), - [sym__block_close] = ACTIONS(2160), - [sym__block_quote_start] = ACTIONS(2160), - [sym_atx_h1_marker] = ACTIONS(2160), - [sym_atx_h2_marker] = ACTIONS(2160), - [sym_atx_h3_marker] = ACTIONS(2160), - [sym_atx_h4_marker] = ACTIONS(2160), - [sym_atx_h5_marker] = ACTIONS(2160), - [sym_atx_h6_marker] = ACTIONS(2160), - [sym__thematic_break] = ACTIONS(2160), - [sym__list_marker_minus] = ACTIONS(2160), - [sym__list_marker_plus] = ACTIONS(2160), - [sym__list_marker_star] = ACTIONS(2160), - [sym__list_marker_parenthesis] = ACTIONS(2160), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2160), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(2160), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2160), - [sym__fenced_code_block_start_backtick] = ACTIONS(2160), - [sym_minus_metadata] = ACTIONS(2160), - [sym__pipe_table_start] = ACTIONS(2160), - [sym__fenced_div_start] = ACTIONS(2160), - [sym_ref_id_specifier] = ACTIONS(2160), - [sym__code_span_start] = ACTIONS(2160), - [sym__html_comment] = ACTIONS(2160), - [sym__autolink] = ACTIONS(2160), - [sym__highlight_span_start] = ACTIONS(2160), - [sym__insert_span_start] = ACTIONS(2160), - [sym__delete_span_start] = ACTIONS(2160), - [sym__edit_comment_span_start] = ACTIONS(2160), - [sym__single_quote_span_open] = ACTIONS(2160), - [sym__double_quote_span_open] = ACTIONS(2160), - [sym__shortcode_open_escaped] = ACTIONS(2160), - [sym__shortcode_open] = ACTIONS(2160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2160), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2160), - [sym__cite_author_in_text] = ACTIONS(2160), - [sym__cite_suppress_author] = ACTIONS(2160), - [sym__strikeout_open] = ACTIONS(2160), - [sym__subscript_open] = ACTIONS(2160), - [sym__superscript_open] = ACTIONS(2160), - [sym__inline_note_start_token] = ACTIONS(2160), - [sym__strong_emphasis_open_star] = ACTIONS(2160), - [sym__strong_emphasis_open_underscore] = ACTIONS(2160), - [sym__emphasis_open_star] = ACTIONS(2160), - [sym__emphasis_open_underscore] = ACTIONS(2160), - [sym_inline_note_reference] = ACTIONS(2160), - [sym_html_element] = ACTIONS(2160), - [sym__pandoc_line_break] = ACTIONS(2160), + [sym_list_marker_dot] = STATE(8), + [sym__list_item_dot] = STATE(159), + [aux_sym__list_dot_repeat1] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(2068), + [anon_sym_COLON] = ACTIONS(2068), + [sym_entity_reference] = ACTIONS(2068), + [sym_numeric_character_reference] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [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__whitespace] = ACTIONS(2068), + [sym__line_ending] = ACTIONS(2068), + [sym__soft_line_ending] = 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(2072), + [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(2072), + [sym__list_marker_example] = ACTIONS(2068), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2068), + [sym__fenced_code_block_start_backtick] = 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_line_break] = ACTIONS(2068), + [sym_grid_table] = ACTIONS(2068), }, [STATE(160)] = { - [sym_list_marker_example] = STATE(13), - [sym__list_item_example] = STATE(160), - [aux_sym__list_example_repeat1] = STATE(160), - [anon_sym_COLON] = ACTIONS(2127), - [sym_entity_reference] = ACTIONS(2127), - [sym_numeric_character_reference] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_BANG_LBRACK] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [aux_sym_pandoc_str_token1] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2127), - [sym__whitespace] = ACTIONS(2127), - [sym__line_ending] = ACTIONS(2127), - [sym__soft_line_ending] = ACTIONS(2127), - [sym__block_close] = ACTIONS(2127), - [sym__block_quote_start] = ACTIONS(2127), - [sym_atx_h1_marker] = ACTIONS(2127), - [sym_atx_h2_marker] = ACTIONS(2127), - [sym_atx_h3_marker] = ACTIONS(2127), - [sym_atx_h4_marker] = ACTIONS(2127), - [sym_atx_h5_marker] = ACTIONS(2127), - [sym_atx_h6_marker] = ACTIONS(2127), - [sym__thematic_break] = ACTIONS(2127), - [sym__list_marker_minus] = ACTIONS(2127), - [sym__list_marker_plus] = ACTIONS(2127), - [sym__list_marker_star] = ACTIONS(2127), - [sym__list_marker_parenthesis] = ACTIONS(2127), - [sym__list_marker_dot] = ACTIONS(2127), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2127), - [sym__list_marker_example] = ACTIONS(2131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2131), - [sym__fenced_code_block_start_backtick] = ACTIONS(2127), - [sym_minus_metadata] = ACTIONS(2127), - [sym__pipe_table_start] = ACTIONS(2127), - [sym__fenced_div_start] = ACTIONS(2127), - [sym_ref_id_specifier] = ACTIONS(2127), - [sym__code_span_start] = ACTIONS(2127), - [sym__html_comment] = ACTIONS(2127), - [sym__autolink] = ACTIONS(2127), - [sym__highlight_span_start] = ACTIONS(2127), - [sym__insert_span_start] = ACTIONS(2127), - [sym__delete_span_start] = ACTIONS(2127), - [sym__edit_comment_span_start] = ACTIONS(2127), - [sym__single_quote_span_open] = ACTIONS(2127), - [sym__double_quote_span_open] = ACTIONS(2127), - [sym__shortcode_open_escaped] = ACTIONS(2127), - [sym__shortcode_open] = ACTIONS(2127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2127), - [sym__cite_author_in_text] = ACTIONS(2127), - [sym__cite_suppress_author] = ACTIONS(2127), - [sym__strikeout_open] = ACTIONS(2127), - [sym__subscript_open] = ACTIONS(2127), - [sym__superscript_open] = ACTIONS(2127), - [sym__inline_note_start_token] = ACTIONS(2127), - [sym__strong_emphasis_open_star] = ACTIONS(2127), - [sym__strong_emphasis_open_underscore] = ACTIONS(2127), - [sym__emphasis_open_star] = ACTIONS(2127), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2127), - [sym_html_element] = ACTIONS(2127), - [sym__pandoc_line_break] = ACTIONS(2127), + [sym_list_marker_parenthesis] = STATE(5), + [sym__list_item_parenthesis] = STATE(160), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(2083), + [anon_sym_COLON] = ACTIONS(2083), + [sym_entity_reference] = ACTIONS(2083), + [sym_numeric_character_reference] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_BANG_LBRACK] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [aux_sym_pandoc_str_token1] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2083), + [sym__whitespace] = ACTIONS(2083), + [sym__line_ending] = ACTIONS(2083), + [sym__soft_line_ending] = ACTIONS(2083), + [sym__block_quote_start] = ACTIONS(2083), + [sym_atx_h1_marker] = ACTIONS(2083), + [sym_atx_h2_marker] = ACTIONS(2083), + [sym_atx_h3_marker] = ACTIONS(2083), + [sym_atx_h4_marker] = ACTIONS(2083), + [sym_atx_h5_marker] = ACTIONS(2083), + [sym_atx_h6_marker] = ACTIONS(2083), + [sym__thematic_break] = ACTIONS(2083), + [sym__list_marker_minus] = ACTIONS(2083), + [sym__list_marker_plus] = ACTIONS(2083), + [sym__list_marker_star] = ACTIONS(2083), + [sym__list_marker_parenthesis] = ACTIONS(2087), + [sym__list_marker_dot] = ACTIONS(2083), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2087), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_example] = ACTIONS(2083), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2083), + [sym__fenced_code_block_start_backtick] = ACTIONS(2083), + [sym_minus_metadata] = ACTIONS(2083), + [sym__pipe_table_start] = ACTIONS(2083), + [sym__fenced_div_start] = ACTIONS(2083), + [sym_ref_id_specifier] = ACTIONS(2083), + [sym__code_span_start] = ACTIONS(2083), + [sym__html_comment] = ACTIONS(2083), + [sym__autolink] = ACTIONS(2083), + [sym__highlight_span_start] = ACTIONS(2083), + [sym__insert_span_start] = ACTIONS(2083), + [sym__delete_span_start] = ACTIONS(2083), + [sym__edit_comment_span_start] = ACTIONS(2083), + [sym__single_quote_span_open] = ACTIONS(2083), + [sym__double_quote_span_open] = ACTIONS(2083), + [sym__shortcode_open_escaped] = ACTIONS(2083), + [sym__shortcode_open] = ACTIONS(2083), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2083), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2083), + [sym__cite_author_in_text] = ACTIONS(2083), + [sym__cite_suppress_author] = ACTIONS(2083), + [sym__strikeout_open] = ACTIONS(2083), + [sym__subscript_open] = ACTIONS(2083), + [sym__superscript_open] = ACTIONS(2083), + [sym__inline_note_start_token] = ACTIONS(2083), + [sym__strong_emphasis_open_star] = ACTIONS(2083), + [sym__strong_emphasis_open_underscore] = ACTIONS(2083), + [sym__emphasis_open_star] = ACTIONS(2083), + [sym__emphasis_open_underscore] = ACTIONS(2083), + [sym_inline_note_reference] = ACTIONS(2083), + [sym_html_element] = ACTIONS(2083), + [sym__pandoc_line_break] = ACTIONS(2083), + [sym_grid_table] = ACTIONS(2083), }, [STATE(161)] = { - [sym_list_marker_plus] = STATE(2), - [sym__list_item_plus] = STATE(169), - [aux_sym__list_plus_repeat1] = STATE(169), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_COLON] = ACTIONS(2134), - [sym_entity_reference] = ACTIONS(2134), - [sym_numeric_character_reference] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_BANG_LBRACK] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [aux_sym_pandoc_str_token1] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2134), - [sym__whitespace] = ACTIONS(2134), - [sym__line_ending] = ACTIONS(2134), - [sym__soft_line_ending] = ACTIONS(2134), - [sym__block_quote_start] = ACTIONS(2134), - [sym_atx_h1_marker] = ACTIONS(2134), - [sym_atx_h2_marker] = ACTIONS(2134), - [sym_atx_h3_marker] = ACTIONS(2134), - [sym_atx_h4_marker] = ACTIONS(2134), - [sym_atx_h5_marker] = ACTIONS(2134), - [sym_atx_h6_marker] = ACTIONS(2134), - [sym__thematic_break] = ACTIONS(2134), - [sym__list_marker_minus] = ACTIONS(2134), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(2134), - [sym__list_marker_parenthesis] = ACTIONS(2134), - [sym__list_marker_dot] = ACTIONS(2134), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2134), - [sym__list_marker_example] = ACTIONS(2134), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2134), - [sym__fenced_code_block_start_backtick] = ACTIONS(2134), - [sym_minus_metadata] = ACTIONS(2134), - [sym__pipe_table_start] = ACTIONS(2134), - [sym__fenced_div_start] = ACTIONS(2134), - [sym_ref_id_specifier] = ACTIONS(2134), - [sym__code_span_start] = ACTIONS(2134), - [sym__html_comment] = ACTIONS(2134), - [sym__autolink] = ACTIONS(2134), - [sym__highlight_span_start] = ACTIONS(2134), - [sym__insert_span_start] = ACTIONS(2134), - [sym__delete_span_start] = ACTIONS(2134), - [sym__edit_comment_span_start] = ACTIONS(2134), - [sym__single_quote_span_open] = ACTIONS(2134), - [sym__double_quote_span_open] = ACTIONS(2134), - [sym__shortcode_open_escaped] = ACTIONS(2134), - [sym__shortcode_open] = ACTIONS(2134), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2134), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2134), - [sym__cite_author_in_text] = ACTIONS(2134), - [sym__cite_suppress_author] = ACTIONS(2134), - [sym__strikeout_open] = ACTIONS(2134), - [sym__subscript_open] = ACTIONS(2134), - [sym__superscript_open] = ACTIONS(2134), - [sym__inline_note_start_token] = ACTIONS(2134), - [sym__strong_emphasis_open_star] = ACTIONS(2134), - [sym__strong_emphasis_open_underscore] = ACTIONS(2134), - [sym__emphasis_open_star] = ACTIONS(2134), - [sym__emphasis_open_underscore] = ACTIONS(2134), - [sym_inline_note_reference] = ACTIONS(2134), - [sym_html_element] = ACTIONS(2134), - [sym__pandoc_line_break] = ACTIONS(2134), + [sym_list_marker_example] = STATE(6), + [sym__list_item_example] = STATE(161), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_COLON] = ACTIONS(2094), + [sym_entity_reference] = ACTIONS(2094), + [sym_numeric_character_reference] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_BANG_LBRACK] = ACTIONS(2094), + [anon_sym_DOLLAR] = ACTIONS(2096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [aux_sym_pandoc_str_token1] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2094), + [sym__whitespace] = ACTIONS(2094), + [sym__line_ending] = ACTIONS(2094), + [sym__soft_line_ending] = ACTIONS(2094), + [sym__block_quote_start] = ACTIONS(2094), + [sym_atx_h1_marker] = ACTIONS(2094), + [sym_atx_h2_marker] = ACTIONS(2094), + [sym_atx_h3_marker] = ACTIONS(2094), + [sym_atx_h4_marker] = ACTIONS(2094), + [sym_atx_h5_marker] = ACTIONS(2094), + [sym_atx_h6_marker] = ACTIONS(2094), + [sym__thematic_break] = ACTIONS(2094), + [sym__list_marker_minus] = ACTIONS(2094), + [sym__list_marker_plus] = ACTIONS(2094), + [sym__list_marker_star] = ACTIONS(2094), + [sym__list_marker_parenthesis] = ACTIONS(2094), + [sym__list_marker_dot] = ACTIONS(2094), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2094), + [sym__list_marker_example] = ACTIONS(2098), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2098), + [sym__fenced_code_block_start_backtick] = ACTIONS(2094), + [sym_minus_metadata] = ACTIONS(2094), + [sym__pipe_table_start] = ACTIONS(2094), + [sym__fenced_div_start] = ACTIONS(2094), + [sym_ref_id_specifier] = ACTIONS(2094), + [sym__code_span_start] = ACTIONS(2094), + [sym__html_comment] = ACTIONS(2094), + [sym__autolink] = ACTIONS(2094), + [sym__highlight_span_start] = ACTIONS(2094), + [sym__insert_span_start] = ACTIONS(2094), + [sym__delete_span_start] = ACTIONS(2094), + [sym__edit_comment_span_start] = ACTIONS(2094), + [sym__single_quote_span_open] = ACTIONS(2094), + [sym__double_quote_span_open] = ACTIONS(2094), + [sym__shortcode_open_escaped] = ACTIONS(2094), + [sym__shortcode_open] = ACTIONS(2094), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2094), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2094), + [sym__cite_author_in_text] = ACTIONS(2094), + [sym__cite_suppress_author] = ACTIONS(2094), + [sym__strikeout_open] = ACTIONS(2094), + [sym__subscript_open] = ACTIONS(2094), + [sym__superscript_open] = ACTIONS(2094), + [sym__inline_note_start_token] = ACTIONS(2094), + [sym__strong_emphasis_open_star] = ACTIONS(2094), + [sym__strong_emphasis_open_underscore] = ACTIONS(2094), + [sym__emphasis_open_star] = ACTIONS(2094), + [sym__emphasis_open_underscore] = ACTIONS(2094), + [sym_inline_note_reference] = ACTIONS(2094), + [sym_html_element] = ACTIONS(2094), + [sym__pandoc_line_break] = ACTIONS(2094), + [sym_grid_table] = ACTIONS(2094), }, [STATE(162)] = { - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_parenthesis] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(157), - [anon_sym_COLON] = ACTIONS(2164), - [sym_entity_reference] = ACTIONS(2164), - [sym_numeric_character_reference] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_BANG_LBRACK] = ACTIONS(2164), - [anon_sym_DOLLAR] = ACTIONS(2166), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [aux_sym_pandoc_str_token1] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2164), - [sym__whitespace] = ACTIONS(2164), - [sym__line_ending] = ACTIONS(2164), - [sym__soft_line_ending] = ACTIONS(2164), - [sym__block_close] = ACTIONS(2164), - [sym__block_quote_start] = ACTIONS(2164), - [sym_atx_h1_marker] = ACTIONS(2164), - [sym_atx_h2_marker] = ACTIONS(2164), - [sym_atx_h3_marker] = ACTIONS(2164), - [sym_atx_h4_marker] = ACTIONS(2164), - [sym_atx_h5_marker] = ACTIONS(2164), - [sym_atx_h6_marker] = ACTIONS(2164), - [sym__thematic_break] = ACTIONS(2164), - [sym__list_marker_minus] = ACTIONS(2164), - [sym__list_marker_plus] = ACTIONS(2164), - [sym__list_marker_star] = ACTIONS(2164), - [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(2164), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2164), - [sym__list_marker_example] = ACTIONS(2164), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2164), - [sym__fenced_code_block_start_backtick] = ACTIONS(2164), - [sym_minus_metadata] = ACTIONS(2164), - [sym__pipe_table_start] = ACTIONS(2164), - [sym__fenced_div_start] = ACTIONS(2164), - [sym_ref_id_specifier] = ACTIONS(2164), - [sym__code_span_start] = ACTIONS(2164), - [sym__html_comment] = ACTIONS(2164), - [sym__autolink] = ACTIONS(2164), - [sym__highlight_span_start] = ACTIONS(2164), - [sym__insert_span_start] = ACTIONS(2164), - [sym__delete_span_start] = ACTIONS(2164), - [sym__edit_comment_span_start] = ACTIONS(2164), - [sym__single_quote_span_open] = ACTIONS(2164), - [sym__double_quote_span_open] = ACTIONS(2164), - [sym__shortcode_open_escaped] = ACTIONS(2164), - [sym__shortcode_open] = ACTIONS(2164), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2164), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2164), - [sym__cite_author_in_text] = ACTIONS(2164), - [sym__cite_suppress_author] = ACTIONS(2164), - [sym__strikeout_open] = ACTIONS(2164), - [sym__subscript_open] = ACTIONS(2164), - [sym__superscript_open] = ACTIONS(2164), - [sym__inline_note_start_token] = ACTIONS(2164), - [sym__strong_emphasis_open_star] = ACTIONS(2164), - [sym__strong_emphasis_open_underscore] = ACTIONS(2164), - [sym__emphasis_open_star] = ACTIONS(2164), - [sym__emphasis_open_underscore] = ACTIONS(2164), - [sym_inline_note_reference] = ACTIONS(2164), - [sym_html_element] = ACTIONS(2164), - [sym__pandoc_line_break] = ACTIONS(2164), + [sym_list_marker_star] = STATE(3), + [sym__list_item_star] = STATE(158), + [aux_sym__list_star_repeat1] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(2090), + [anon_sym_COLON] = ACTIONS(2090), + [sym_entity_reference] = ACTIONS(2090), + [sym_numeric_character_reference] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_BANG_LBRACK] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [aux_sym_pandoc_str_token1] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2090), + [sym__whitespace] = ACTIONS(2090), + [sym__line_ending] = ACTIONS(2090), + [sym__soft_line_ending] = ACTIONS(2090), + [sym__block_quote_start] = ACTIONS(2090), + [sym_atx_h1_marker] = ACTIONS(2090), + [sym_atx_h2_marker] = ACTIONS(2090), + [sym_atx_h3_marker] = ACTIONS(2090), + [sym_atx_h4_marker] = ACTIONS(2090), + [sym_atx_h5_marker] = ACTIONS(2090), + [sym_atx_h6_marker] = ACTIONS(2090), + [sym__thematic_break] = ACTIONS(2090), + [sym__list_marker_minus] = ACTIONS(2090), + [sym__list_marker_plus] = ACTIONS(2090), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(2090), + [sym__list_marker_dot] = ACTIONS(2090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_example] = ACTIONS(2090), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2090), + [sym__fenced_code_block_start_backtick] = ACTIONS(2090), + [sym_minus_metadata] = ACTIONS(2090), + [sym__pipe_table_start] = ACTIONS(2090), + [sym__fenced_div_start] = ACTIONS(2090), + [sym_ref_id_specifier] = ACTIONS(2090), + [sym__code_span_start] = ACTIONS(2090), + [sym__html_comment] = ACTIONS(2090), + [sym__autolink] = ACTIONS(2090), + [sym__highlight_span_start] = ACTIONS(2090), + [sym__insert_span_start] = ACTIONS(2090), + [sym__delete_span_start] = ACTIONS(2090), + [sym__edit_comment_span_start] = ACTIONS(2090), + [sym__single_quote_span_open] = ACTIONS(2090), + [sym__double_quote_span_open] = ACTIONS(2090), + [sym__shortcode_open_escaped] = ACTIONS(2090), + [sym__shortcode_open] = ACTIONS(2090), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2090), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2090), + [sym__cite_author_in_text] = ACTIONS(2090), + [sym__cite_suppress_author] = ACTIONS(2090), + [sym__strikeout_open] = ACTIONS(2090), + [sym__subscript_open] = ACTIONS(2090), + [sym__superscript_open] = ACTIONS(2090), + [sym__inline_note_start_token] = ACTIONS(2090), + [sym__strong_emphasis_open_star] = ACTIONS(2090), + [sym__strong_emphasis_open_underscore] = ACTIONS(2090), + [sym__emphasis_open_star] = ACTIONS(2090), + [sym__emphasis_open_underscore] = ACTIONS(2090), + [sym_inline_note_reference] = ACTIONS(2090), + [sym_html_element] = ACTIONS(2090), + [sym__pandoc_line_break] = ACTIONS(2090), + [sym_grid_table] = ACTIONS(2090), }, [STATE(163)] = { - [sym_pipe_table_row] = STATE(3059), - [sym_pipe_table_cell] = STATE(2855), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(347), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2065), - [sym__line_ending] = ACTIONS(2067), - [sym__eof] = ACTIONS(2067), - [sym__pipe_table_line_ending] = ACTIONS(2067), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), + [sym_list_marker_plus] = STATE(9), + [sym__list_item_plus] = STATE(167), + [aux_sym__list_plus_repeat1] = STATE(167), + [anon_sym_COLON] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2075), + [sym_numeric_character_reference] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_BANG_LBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [aux_sym_pandoc_str_token1] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2075), + [sym__whitespace] = ACTIONS(2075), + [sym__line_ending] = ACTIONS(2075), + [sym__soft_line_ending] = ACTIONS(2075), + [sym__block_close] = ACTIONS(2075), + [sym__block_quote_start] = ACTIONS(2075), + [sym_atx_h1_marker] = ACTIONS(2075), + [sym_atx_h2_marker] = ACTIONS(2075), + [sym_atx_h3_marker] = ACTIONS(2075), + [sym_atx_h4_marker] = ACTIONS(2075), + [sym_atx_h5_marker] = ACTIONS(2075), + [sym_atx_h6_marker] = ACTIONS(2075), + [sym__thematic_break] = ACTIONS(2075), + [sym__list_marker_minus] = ACTIONS(2075), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(2075), + [sym__list_marker_parenthesis] = ACTIONS(2075), + [sym__list_marker_dot] = ACTIONS(2075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_example] = ACTIONS(2075), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2075), + [sym__fenced_code_block_start_backtick] = ACTIONS(2075), + [sym_minus_metadata] = ACTIONS(2075), + [sym__pipe_table_start] = ACTIONS(2075), + [sym__fenced_div_start] = ACTIONS(2075), + [sym_ref_id_specifier] = ACTIONS(2075), + [sym__code_span_start] = ACTIONS(2075), + [sym__html_comment] = ACTIONS(2075), + [sym__autolink] = ACTIONS(2075), + [sym__highlight_span_start] = ACTIONS(2075), + [sym__insert_span_start] = ACTIONS(2075), [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2111), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym__edit_comment_span_start] = ACTIONS(2075), + [sym__single_quote_span_open] = ACTIONS(2075), + [sym__double_quote_span_open] = ACTIONS(2075), + [sym__shortcode_open_escaped] = ACTIONS(2075), + [sym__shortcode_open] = ACTIONS(2075), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2075), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2075), + [sym__cite_author_in_text] = ACTIONS(2075), + [sym__cite_suppress_author] = ACTIONS(2075), + [sym__strikeout_open] = ACTIONS(2075), + [sym__subscript_open] = ACTIONS(2075), + [sym__superscript_open] = ACTIONS(2075), + [sym__inline_note_start_token] = ACTIONS(2075), + [sym__strong_emphasis_open_star] = ACTIONS(2075), + [sym__strong_emphasis_open_underscore] = ACTIONS(2075), + [sym__emphasis_open_star] = ACTIONS(2075), + [sym__emphasis_open_underscore] = ACTIONS(2075), + [sym_inline_note_reference] = ACTIONS(2075), + [sym_html_element] = ACTIONS(2075), + [sym__pandoc_line_break] = ACTIONS(2075), + [sym_grid_table] = ACTIONS(2075), }, [STATE(164)] = { - [sym_list_marker_parenthesis] = STATE(5), - [sym__list_item_parenthesis] = STATE(164), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_COLON] = ACTIONS(2120), - [sym_entity_reference] = ACTIONS(2120), - [sym_numeric_character_reference] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_BANG_LBRACK] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [aux_sym_pandoc_str_token1] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2120), - [sym__whitespace] = ACTIONS(2120), - [sym__line_ending] = ACTIONS(2120), - [sym__soft_line_ending] = ACTIONS(2120), - [sym__block_quote_start] = ACTIONS(2120), - [sym_atx_h1_marker] = ACTIONS(2120), - [sym_atx_h2_marker] = ACTIONS(2120), - [sym_atx_h3_marker] = ACTIONS(2120), - [sym_atx_h4_marker] = ACTIONS(2120), - [sym_atx_h5_marker] = ACTIONS(2120), - [sym_atx_h6_marker] = ACTIONS(2120), - [sym__thematic_break] = ACTIONS(2120), - [sym__list_marker_minus] = ACTIONS(2120), - [sym__list_marker_plus] = ACTIONS(2120), - [sym__list_marker_star] = ACTIONS(2120), - [sym__list_marker_parenthesis] = ACTIONS(2124), - [sym__list_marker_dot] = ACTIONS(2120), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2120), - [sym__list_marker_example] = ACTIONS(2120), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2120), - [sym__fenced_code_block_start_backtick] = ACTIONS(2120), - [sym_minus_metadata] = ACTIONS(2120), - [sym__pipe_table_start] = ACTIONS(2120), - [sym__fenced_div_start] = ACTIONS(2120), - [sym_ref_id_specifier] = ACTIONS(2120), - [sym__code_span_start] = ACTIONS(2120), - [sym__html_comment] = ACTIONS(2120), - [sym__autolink] = ACTIONS(2120), - [sym__highlight_span_start] = ACTIONS(2120), - [sym__insert_span_start] = ACTIONS(2120), - [sym__delete_span_start] = ACTIONS(2120), - [sym__edit_comment_span_start] = ACTIONS(2120), - [sym__single_quote_span_open] = ACTIONS(2120), - [sym__double_quote_span_open] = ACTIONS(2120), - [sym__shortcode_open_escaped] = ACTIONS(2120), - [sym__shortcode_open] = ACTIONS(2120), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2120), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2120), - [sym__cite_author_in_text] = ACTIONS(2120), - [sym__cite_suppress_author] = ACTIONS(2120), - [sym__strikeout_open] = ACTIONS(2120), - [sym__subscript_open] = ACTIONS(2120), - [sym__superscript_open] = ACTIONS(2120), - [sym__inline_note_start_token] = ACTIONS(2120), - [sym__strong_emphasis_open_star] = ACTIONS(2120), - [sym__strong_emphasis_open_underscore] = ACTIONS(2120), - [sym__emphasis_open_star] = ACTIONS(2120), - [sym__emphasis_open_underscore] = ACTIONS(2120), - [sym_inline_note_reference] = ACTIONS(2120), - [sym_html_element] = ACTIONS(2120), - [sym__pandoc_line_break] = ACTIONS(2120), + [sym_list_marker_minus] = STATE(10), + [sym__list_item_minus] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(168), + [anon_sym_COLON] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BANG_LBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [aux_sym_pandoc_str_token1] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2079), + [sym__whitespace] = ACTIONS(2079), + [sym__line_ending] = ACTIONS(2079), + [sym__soft_line_ending] = ACTIONS(2079), + [sym__block_close] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(2079), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_example] = ACTIONS(2079), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym_minus_metadata] = ACTIONS(2079), + [sym__pipe_table_start] = ACTIONS(2079), + [sym__fenced_div_start] = ACTIONS(2079), + [sym_ref_id_specifier] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__html_comment] = ACTIONS(2079), + [sym__autolink] = ACTIONS(2079), + [sym__highlight_span_start] = ACTIONS(2079), + [sym__insert_span_start] = ACTIONS(2079), + [sym__delete_span_start] = ACTIONS(2079), + [sym__edit_comment_span_start] = ACTIONS(2079), + [sym__single_quote_span_open] = ACTIONS(2079), + [sym__double_quote_span_open] = ACTIONS(2079), + [sym__shortcode_open_escaped] = ACTIONS(2079), + [sym__shortcode_open] = ACTIONS(2079), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2079), + [sym__cite_author_in_text] = ACTIONS(2079), + [sym__cite_suppress_author] = ACTIONS(2079), + [sym__strikeout_open] = ACTIONS(2079), + [sym__subscript_open] = ACTIONS(2079), + [sym__superscript_open] = ACTIONS(2079), + [sym__inline_note_start_token] = ACTIONS(2079), + [sym__strong_emphasis_open_star] = ACTIONS(2079), + [sym__strong_emphasis_open_underscore] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), + [sym_inline_note_reference] = ACTIONS(2079), + [sym_html_element] = ACTIONS(2079), + [sym__pandoc_line_break] = ACTIONS(2079), + [sym_grid_table] = ACTIONS(2079), }, [STATE(165)] = { - [sym_list_marker_example] = STATE(13), - [sym__list_item_example] = STATE(160), - [aux_sym__list_example_repeat1] = STATE(160), - [anon_sym_COLON] = ACTIONS(2168), - [sym_entity_reference] = ACTIONS(2168), - [sym_numeric_character_reference] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_BANG_LBRACK] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [aux_sym_pandoc_str_token1] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2168), - [sym__whitespace] = ACTIONS(2168), - [sym__line_ending] = ACTIONS(2168), - [sym__soft_line_ending] = ACTIONS(2168), - [sym__block_close] = ACTIONS(2168), - [sym__block_quote_start] = ACTIONS(2168), - [sym_atx_h1_marker] = ACTIONS(2168), - [sym_atx_h2_marker] = ACTIONS(2168), - [sym_atx_h3_marker] = ACTIONS(2168), - [sym_atx_h4_marker] = ACTIONS(2168), - [sym_atx_h5_marker] = ACTIONS(2168), - [sym_atx_h6_marker] = ACTIONS(2168), - [sym__thematic_break] = ACTIONS(2168), - [sym__list_marker_minus] = ACTIONS(2168), - [sym__list_marker_plus] = ACTIONS(2168), - [sym__list_marker_star] = ACTIONS(2168), - [sym__list_marker_parenthesis] = ACTIONS(2168), - [sym__list_marker_dot] = ACTIONS(2168), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2168), - [sym__list_marker_example] = ACTIONS(55), - [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(2168), - [sym_minus_metadata] = ACTIONS(2168), - [sym__pipe_table_start] = ACTIONS(2168), - [sym__fenced_div_start] = ACTIONS(2168), - [sym_ref_id_specifier] = ACTIONS(2168), - [sym__code_span_start] = ACTIONS(2168), - [sym__html_comment] = ACTIONS(2168), - [sym__autolink] = ACTIONS(2168), - [sym__highlight_span_start] = ACTIONS(2168), - [sym__insert_span_start] = ACTIONS(2168), - [sym__delete_span_start] = ACTIONS(2168), - [sym__edit_comment_span_start] = ACTIONS(2168), - [sym__single_quote_span_open] = ACTIONS(2168), - [sym__double_quote_span_open] = ACTIONS(2168), - [sym__shortcode_open_escaped] = ACTIONS(2168), - [sym__shortcode_open] = ACTIONS(2168), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2168), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2168), - [sym__cite_author_in_text] = ACTIONS(2168), - [sym__cite_suppress_author] = ACTIONS(2168), - [sym__strikeout_open] = ACTIONS(2168), - [sym__subscript_open] = ACTIONS(2168), - [sym__superscript_open] = ACTIONS(2168), - [sym__inline_note_start_token] = ACTIONS(2168), - [sym__strong_emphasis_open_star] = ACTIONS(2168), - [sym__strong_emphasis_open_underscore] = ACTIONS(2168), - [sym__emphasis_open_star] = ACTIONS(2168), - [sym__emphasis_open_underscore] = ACTIONS(2168), - [sym_inline_note_reference] = ACTIONS(2168), - [sym_html_element] = ACTIONS(2168), - [sym__pandoc_line_break] = ACTIONS(2168), - }, - [STATE(166)] = { - [sym_list_marker_star] = STATE(10), - [sym__list_item_star] = STATE(147), - [aux_sym__list_star_repeat1] = STATE(147), - [anon_sym_COLON] = ACTIONS(2156), - [sym_entity_reference] = ACTIONS(2156), - [sym_numeric_character_reference] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_BANG_LBRACK] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [aux_sym_pandoc_str_token1] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2156), - [sym__whitespace] = ACTIONS(2156), - [sym__line_ending] = ACTIONS(2156), - [sym__soft_line_ending] = ACTIONS(2156), - [sym__block_close] = ACTIONS(2156), - [sym__block_quote_start] = ACTIONS(2156), - [sym_atx_h1_marker] = ACTIONS(2156), - [sym_atx_h2_marker] = ACTIONS(2156), - [sym_atx_h3_marker] = ACTIONS(2156), - [sym_atx_h4_marker] = ACTIONS(2156), - [sym_atx_h5_marker] = ACTIONS(2156), - [sym_atx_h6_marker] = ACTIONS(2156), - [sym__thematic_break] = ACTIONS(2156), - [sym__list_marker_minus] = ACTIONS(2156), - [sym__list_marker_plus] = ACTIONS(2156), + [sym_list_marker_star] = STATE(11), + [sym__list_item_star] = STATE(169), + [aux_sym__list_star_repeat1] = STATE(169), + [anon_sym_COLON] = ACTIONS(2090), + [sym_entity_reference] = ACTIONS(2090), + [sym_numeric_character_reference] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_BANG_LBRACK] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [aux_sym_pandoc_str_token1] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2090), + [sym__whitespace] = ACTIONS(2090), + [sym__line_ending] = ACTIONS(2090), + [sym__soft_line_ending] = ACTIONS(2090), + [sym__block_close] = ACTIONS(2090), + [sym__block_quote_start] = ACTIONS(2090), + [sym_atx_h1_marker] = ACTIONS(2090), + [sym_atx_h2_marker] = ACTIONS(2090), + [sym_atx_h3_marker] = ACTIONS(2090), + [sym_atx_h4_marker] = ACTIONS(2090), + [sym_atx_h5_marker] = ACTIONS(2090), + [sym_atx_h6_marker] = ACTIONS(2090), + [sym__thematic_break] = ACTIONS(2090), + [sym__list_marker_minus] = ACTIONS(2090), + [sym__list_marker_plus] = ACTIONS(2090), [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(2156), - [sym__list_marker_dot] = ACTIONS(2156), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2156), + [sym__list_marker_parenthesis] = ACTIONS(2090), + [sym__list_marker_dot] = ACTIONS(2090), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2090), [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2156), - [sym__list_marker_example] = ACTIONS(2156), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2156), - [sym__fenced_code_block_start_backtick] = ACTIONS(2156), - [sym_minus_metadata] = ACTIONS(2156), - [sym__pipe_table_start] = ACTIONS(2156), - [sym__fenced_div_start] = ACTIONS(2156), - [sym_ref_id_specifier] = ACTIONS(2156), - [sym__code_span_start] = ACTIONS(2156), - [sym__html_comment] = ACTIONS(2156), - [sym__autolink] = ACTIONS(2156), - [sym__highlight_span_start] = ACTIONS(2156), - [sym__insert_span_start] = ACTIONS(2156), - [sym__delete_span_start] = ACTIONS(2156), - [sym__edit_comment_span_start] = ACTIONS(2156), - [sym__single_quote_span_open] = ACTIONS(2156), - [sym__double_quote_span_open] = ACTIONS(2156), - [sym__shortcode_open_escaped] = ACTIONS(2156), - [sym__shortcode_open] = ACTIONS(2156), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2156), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2156), - [sym__cite_author_in_text] = ACTIONS(2156), - [sym__cite_suppress_author] = ACTIONS(2156), - [sym__strikeout_open] = ACTIONS(2156), - [sym__subscript_open] = ACTIONS(2156), - [sym__superscript_open] = ACTIONS(2156), - [sym__inline_note_start_token] = ACTIONS(2156), - [sym__strong_emphasis_open_star] = ACTIONS(2156), - [sym__strong_emphasis_open_underscore] = ACTIONS(2156), - [sym__emphasis_open_star] = ACTIONS(2156), - [sym__emphasis_open_underscore] = ACTIONS(2156), - [sym_inline_note_reference] = ACTIONS(2156), - [sym_html_element] = ACTIONS(2156), - [sym__pandoc_line_break] = ACTIONS(2156), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_example] = ACTIONS(2090), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2090), + [sym__fenced_code_block_start_backtick] = ACTIONS(2090), + [sym_minus_metadata] = ACTIONS(2090), + [sym__pipe_table_start] = ACTIONS(2090), + [sym__fenced_div_start] = ACTIONS(2090), + [sym_ref_id_specifier] = ACTIONS(2090), + [sym__code_span_start] = ACTIONS(2090), + [sym__html_comment] = ACTIONS(2090), + [sym__autolink] = ACTIONS(2090), + [sym__highlight_span_start] = ACTIONS(2090), + [sym__insert_span_start] = ACTIONS(2090), + [sym__delete_span_start] = ACTIONS(2090), + [sym__edit_comment_span_start] = ACTIONS(2090), + [sym__single_quote_span_open] = ACTIONS(2090), + [sym__double_quote_span_open] = ACTIONS(2090), + [sym__shortcode_open_escaped] = ACTIONS(2090), + [sym__shortcode_open] = ACTIONS(2090), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2090), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2090), + [sym__cite_author_in_text] = ACTIONS(2090), + [sym__cite_suppress_author] = ACTIONS(2090), + [sym__strikeout_open] = ACTIONS(2090), + [sym__subscript_open] = ACTIONS(2090), + [sym__superscript_open] = ACTIONS(2090), + [sym__inline_note_start_token] = ACTIONS(2090), + [sym__strong_emphasis_open_star] = ACTIONS(2090), + [sym__strong_emphasis_open_underscore] = ACTIONS(2090), + [sym__emphasis_open_star] = ACTIONS(2090), + [sym__emphasis_open_underscore] = ACTIONS(2090), + [sym_inline_note_reference] = ACTIONS(2090), + [sym_html_element] = ACTIONS(2090), + [sym__pandoc_line_break] = ACTIONS(2090), + [sym_grid_table] = ACTIONS(2090), + }, + [STATE(166)] = { + [sym_list_marker_plus] = STATE(7), + [sym__list_item_plus] = STATE(146), + [aux_sym__list_plus_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2075), + [sym_numeric_character_reference] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_BANG_LBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [aux_sym_pandoc_str_token1] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2075), + [sym__whitespace] = ACTIONS(2075), + [sym__line_ending] = ACTIONS(2075), + [sym__soft_line_ending] = ACTIONS(2075), + [sym__block_quote_start] = ACTIONS(2075), + [sym_atx_h1_marker] = ACTIONS(2075), + [sym_atx_h2_marker] = ACTIONS(2075), + [sym_atx_h3_marker] = ACTIONS(2075), + [sym_atx_h4_marker] = ACTIONS(2075), + [sym_atx_h5_marker] = ACTIONS(2075), + [sym_atx_h6_marker] = ACTIONS(2075), + [sym__thematic_break] = ACTIONS(2075), + [sym__list_marker_minus] = ACTIONS(2075), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(2075), + [sym__list_marker_parenthesis] = ACTIONS(2075), + [sym__list_marker_dot] = ACTIONS(2075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_example] = ACTIONS(2075), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2075), + [sym__fenced_code_block_start_backtick] = ACTIONS(2075), + [sym_minus_metadata] = ACTIONS(2075), + [sym__pipe_table_start] = ACTIONS(2075), + [sym__fenced_div_start] = ACTIONS(2075), + [sym_ref_id_specifier] = ACTIONS(2075), + [sym__code_span_start] = ACTIONS(2075), + [sym__html_comment] = ACTIONS(2075), + [sym__autolink] = ACTIONS(2075), + [sym__highlight_span_start] = ACTIONS(2075), + [sym__insert_span_start] = ACTIONS(2075), + [sym__delete_span_start] = ACTIONS(2075), + [sym__edit_comment_span_start] = ACTIONS(2075), + [sym__single_quote_span_open] = ACTIONS(2075), + [sym__double_quote_span_open] = ACTIONS(2075), + [sym__shortcode_open_escaped] = ACTIONS(2075), + [sym__shortcode_open] = ACTIONS(2075), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2075), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2075), + [sym__cite_author_in_text] = ACTIONS(2075), + [sym__cite_suppress_author] = ACTIONS(2075), + [sym__strikeout_open] = ACTIONS(2075), + [sym__subscript_open] = ACTIONS(2075), + [sym__superscript_open] = ACTIONS(2075), + [sym__inline_note_start_token] = ACTIONS(2075), + [sym__strong_emphasis_open_star] = ACTIONS(2075), + [sym__strong_emphasis_open_underscore] = ACTIONS(2075), + [sym__emphasis_open_star] = ACTIONS(2075), + [sym__emphasis_open_underscore] = ACTIONS(2075), + [sym_inline_note_reference] = ACTIONS(2075), + [sym_html_element] = ACTIONS(2075), + [sym__pandoc_line_break] = ACTIONS(2075), + [sym_grid_table] = ACTIONS(2075), }, [STATE(167)] = { - [sym_list_marker_plus] = STATE(8), + [sym_list_marker_plus] = STATE(9), [sym__list_item_plus] = STATE(167), [aux_sym__list_plus_repeat1] = STATE(167), - [anon_sym_COLON] = ACTIONS(2113), - [sym_entity_reference] = ACTIONS(2113), - [sym_numeric_character_reference] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_BANG_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [aux_sym_pandoc_str_token1] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2113), - [sym__whitespace] = ACTIONS(2113), - [sym__line_ending] = ACTIONS(2113), - [sym__soft_line_ending] = ACTIONS(2113), - [sym__block_close] = ACTIONS(2113), - [sym__block_quote_start] = ACTIONS(2113), - [sym_atx_h1_marker] = ACTIONS(2113), - [sym_atx_h2_marker] = ACTIONS(2113), - [sym_atx_h3_marker] = ACTIONS(2113), - [sym_atx_h4_marker] = ACTIONS(2113), - [sym_atx_h5_marker] = ACTIONS(2113), - [sym_atx_h6_marker] = ACTIONS(2113), - [sym__thematic_break] = ACTIONS(2113), - [sym__list_marker_minus] = ACTIONS(2113), - [sym__list_marker_plus] = ACTIONS(2117), - [sym__list_marker_star] = ACTIONS(2113), - [sym__list_marker_parenthesis] = ACTIONS(2113), - [sym__list_marker_dot] = ACTIONS(2113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2117), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_example] = ACTIONS(2113), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2113), - [sym__fenced_code_block_start_backtick] = ACTIONS(2113), - [sym_minus_metadata] = ACTIONS(2113), - [sym__pipe_table_start] = ACTIONS(2113), - [sym__fenced_div_start] = ACTIONS(2113), - [sym_ref_id_specifier] = ACTIONS(2113), - [sym__code_span_start] = ACTIONS(2113), - [sym__html_comment] = ACTIONS(2113), - [sym__autolink] = ACTIONS(2113), - [sym__highlight_span_start] = ACTIONS(2113), - [sym__insert_span_start] = ACTIONS(2113), - [sym__delete_span_start] = ACTIONS(2113), - [sym__edit_comment_span_start] = ACTIONS(2113), - [sym__single_quote_span_open] = ACTIONS(2113), - [sym__double_quote_span_open] = ACTIONS(2113), - [sym__shortcode_open_escaped] = ACTIONS(2113), - [sym__shortcode_open] = ACTIONS(2113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2113), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2113), - [sym__cite_author_in_text] = ACTIONS(2113), - [sym__cite_suppress_author] = ACTIONS(2113), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2113), - [sym__superscript_open] = ACTIONS(2113), - [sym__inline_note_start_token] = ACTIONS(2113), - [sym__strong_emphasis_open_star] = ACTIONS(2113), - [sym__strong_emphasis_open_underscore] = ACTIONS(2113), - [sym__emphasis_open_star] = ACTIONS(2113), - [sym__emphasis_open_underscore] = ACTIONS(2113), - [sym_inline_note_reference] = ACTIONS(2113), - [sym_html_element] = ACTIONS(2113), - [sym__pandoc_line_break] = ACTIONS(2113), + [anon_sym_COLON] = ACTIONS(2047), + [sym_entity_reference] = ACTIONS(2047), + [sym_numeric_character_reference] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_BANG_LBRACK] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [aux_sym_pandoc_str_token1] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2047), + [sym__whitespace] = ACTIONS(2047), + [sym__line_ending] = ACTIONS(2047), + [sym__soft_line_ending] = ACTIONS(2047), + [sym__block_close] = ACTIONS(2047), + [sym__block_quote_start] = ACTIONS(2047), + [sym_atx_h1_marker] = ACTIONS(2047), + [sym_atx_h2_marker] = ACTIONS(2047), + [sym_atx_h3_marker] = ACTIONS(2047), + [sym_atx_h4_marker] = ACTIONS(2047), + [sym_atx_h5_marker] = ACTIONS(2047), + [sym_atx_h6_marker] = ACTIONS(2047), + [sym__thematic_break] = ACTIONS(2047), + [sym__list_marker_minus] = ACTIONS(2047), + [sym__list_marker_plus] = ACTIONS(2051), + [sym__list_marker_star] = ACTIONS(2047), + [sym__list_marker_parenthesis] = ACTIONS(2047), + [sym__list_marker_dot] = ACTIONS(2047), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2051), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2047), + [sym__list_marker_example] = ACTIONS(2047), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2047), + [sym__fenced_code_block_start_backtick] = ACTIONS(2047), + [sym_minus_metadata] = ACTIONS(2047), + [sym__pipe_table_start] = ACTIONS(2047), + [sym__fenced_div_start] = ACTIONS(2047), + [sym_ref_id_specifier] = ACTIONS(2047), + [sym__code_span_start] = ACTIONS(2047), + [sym__html_comment] = ACTIONS(2047), + [sym__autolink] = ACTIONS(2047), + [sym__highlight_span_start] = ACTIONS(2047), + [sym__insert_span_start] = ACTIONS(2047), + [sym__delete_span_start] = ACTIONS(2047), + [sym__edit_comment_span_start] = ACTIONS(2047), + [sym__single_quote_span_open] = ACTIONS(2047), + [sym__double_quote_span_open] = ACTIONS(2047), + [sym__shortcode_open_escaped] = ACTIONS(2047), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2047), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2047), + [sym__cite_author_in_text] = ACTIONS(2047), + [sym__cite_suppress_author] = ACTIONS(2047), + [sym__strikeout_open] = ACTIONS(2047), + [sym__subscript_open] = ACTIONS(2047), + [sym__superscript_open] = ACTIONS(2047), + [sym__inline_note_start_token] = ACTIONS(2047), + [sym__strong_emphasis_open_star] = ACTIONS(2047), + [sym__strong_emphasis_open_underscore] = ACTIONS(2047), + [sym__emphasis_open_star] = ACTIONS(2047), + [sym__emphasis_open_underscore] = ACTIONS(2047), + [sym_inline_note_reference] = ACTIONS(2047), + [sym_html_element] = ACTIONS(2047), + [sym__pandoc_line_break] = ACTIONS(2047), + [sym_grid_table] = ACTIONS(2047), }, [STATE(168)] = { - [sym_list_marker_minus] = STATE(9), + [sym_list_marker_minus] = STATE(10), [sym__list_item_minus] = STATE(168), [aux_sym__list_minus_repeat1] = STATE(168), - [anon_sym_COLON] = ACTIONS(2142), - [sym_entity_reference] = ACTIONS(2142), - [sym_numeric_character_reference] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_BANG_LBRACK] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [aux_sym_pandoc_str_token1] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2142), - [sym__whitespace] = ACTIONS(2142), - [sym__line_ending] = ACTIONS(2142), - [sym__soft_line_ending] = ACTIONS(2142), - [sym__block_close] = ACTIONS(2142), - [sym__block_quote_start] = ACTIONS(2142), - [sym_atx_h1_marker] = ACTIONS(2142), - [sym_atx_h2_marker] = ACTIONS(2142), - [sym_atx_h3_marker] = ACTIONS(2142), - [sym_atx_h4_marker] = ACTIONS(2142), - [sym_atx_h5_marker] = ACTIONS(2142), - [sym_atx_h6_marker] = ACTIONS(2142), - [sym__thematic_break] = ACTIONS(2142), - [sym__list_marker_minus] = ACTIONS(2146), - [sym__list_marker_plus] = ACTIONS(2142), - [sym__list_marker_star] = ACTIONS(2142), - [sym__list_marker_parenthesis] = ACTIONS(2142), - [sym__list_marker_dot] = ACTIONS(2142), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2146), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_example] = ACTIONS(2142), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2142), - [sym__fenced_code_block_start_backtick] = ACTIONS(2142), - [sym_minus_metadata] = ACTIONS(2142), - [sym__pipe_table_start] = ACTIONS(2142), - [sym__fenced_div_start] = ACTIONS(2142), - [sym_ref_id_specifier] = ACTIONS(2142), - [sym__code_span_start] = ACTIONS(2142), - [sym__html_comment] = ACTIONS(2142), - [sym__autolink] = ACTIONS(2142), - [sym__highlight_span_start] = ACTIONS(2142), - [sym__insert_span_start] = ACTIONS(2142), - [sym__delete_span_start] = ACTIONS(2142), - [sym__edit_comment_span_start] = ACTIONS(2142), - [sym__single_quote_span_open] = ACTIONS(2142), - [sym__double_quote_span_open] = ACTIONS(2142), - [sym__shortcode_open_escaped] = ACTIONS(2142), - [sym__shortcode_open] = ACTIONS(2142), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2142), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2142), - [sym__cite_author_in_text] = ACTIONS(2142), - [sym__cite_suppress_author] = ACTIONS(2142), - [sym__strikeout_open] = ACTIONS(2142), - [sym__subscript_open] = ACTIONS(2142), - [sym__superscript_open] = ACTIONS(2142), - [sym__inline_note_start_token] = ACTIONS(2142), - [sym__strong_emphasis_open_star] = ACTIONS(2142), - [sym__strong_emphasis_open_underscore] = ACTIONS(2142), - [sym__emphasis_open_star] = ACTIONS(2142), - [sym__emphasis_open_underscore] = ACTIONS(2142), - [sym_inline_note_reference] = ACTIONS(2142), - [sym_html_element] = ACTIONS(2142), - [sym__pandoc_line_break] = ACTIONS(2142), + [anon_sym_COLON] = ACTIONS(2054), + [sym_entity_reference] = ACTIONS(2054), + [sym_numeric_character_reference] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_BANG_LBRACK] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [aux_sym_pandoc_str_token1] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2054), + [sym__whitespace] = ACTIONS(2054), + [sym__line_ending] = ACTIONS(2054), + [sym__soft_line_ending] = ACTIONS(2054), + [sym__block_close] = ACTIONS(2054), + [sym__block_quote_start] = ACTIONS(2054), + [sym_atx_h1_marker] = ACTIONS(2054), + [sym_atx_h2_marker] = ACTIONS(2054), + [sym_atx_h3_marker] = ACTIONS(2054), + [sym_atx_h4_marker] = ACTIONS(2054), + [sym_atx_h5_marker] = ACTIONS(2054), + [sym_atx_h6_marker] = ACTIONS(2054), + [sym__thematic_break] = ACTIONS(2054), + [sym__list_marker_minus] = ACTIONS(2058), + [sym__list_marker_plus] = ACTIONS(2054), + [sym__list_marker_star] = ACTIONS(2054), + [sym__list_marker_parenthesis] = ACTIONS(2054), + [sym__list_marker_dot] = ACTIONS(2054), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2058), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2054), + [sym__list_marker_example] = ACTIONS(2054), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2054), + [sym__fenced_code_block_start_backtick] = ACTIONS(2054), + [sym_minus_metadata] = ACTIONS(2054), + [sym__pipe_table_start] = ACTIONS(2054), + [sym__fenced_div_start] = ACTIONS(2054), + [sym_ref_id_specifier] = ACTIONS(2054), + [sym__code_span_start] = ACTIONS(2054), + [sym__html_comment] = ACTIONS(2054), + [sym__autolink] = ACTIONS(2054), + [sym__highlight_span_start] = ACTIONS(2054), + [sym__insert_span_start] = ACTIONS(2054), + [sym__delete_span_start] = ACTIONS(2054), + [sym__edit_comment_span_start] = ACTIONS(2054), + [sym__single_quote_span_open] = ACTIONS(2054), + [sym__double_quote_span_open] = ACTIONS(2054), + [sym__shortcode_open_escaped] = ACTIONS(2054), + [sym__shortcode_open] = ACTIONS(2054), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2054), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2054), + [sym__cite_author_in_text] = ACTIONS(2054), + [sym__cite_suppress_author] = ACTIONS(2054), + [sym__strikeout_open] = ACTIONS(2054), + [sym__subscript_open] = ACTIONS(2054), + [sym__superscript_open] = ACTIONS(2054), + [sym__inline_note_start_token] = ACTIONS(2054), + [sym__strong_emphasis_open_star] = ACTIONS(2054), + [sym__strong_emphasis_open_underscore] = ACTIONS(2054), + [sym__emphasis_open_star] = ACTIONS(2054), + [sym__emphasis_open_underscore] = ACTIONS(2054), + [sym_inline_note_reference] = ACTIONS(2054), + [sym_html_element] = ACTIONS(2054), + [sym__pandoc_line_break] = ACTIONS(2054), + [sym_grid_table] = ACTIONS(2054), }, [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(2113), - [anon_sym_COLON] = ACTIONS(2113), - [sym_entity_reference] = ACTIONS(2113), - [sym_numeric_character_reference] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_BANG_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [aux_sym_pandoc_str_token1] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2113), - [sym__whitespace] = ACTIONS(2113), - [sym__line_ending] = ACTIONS(2113), - [sym__soft_line_ending] = ACTIONS(2113), - [sym__block_quote_start] = ACTIONS(2113), - [sym_atx_h1_marker] = ACTIONS(2113), - [sym_atx_h2_marker] = ACTIONS(2113), - [sym_atx_h3_marker] = ACTIONS(2113), - [sym_atx_h4_marker] = ACTIONS(2113), - [sym_atx_h5_marker] = ACTIONS(2113), - [sym_atx_h6_marker] = ACTIONS(2113), - [sym__thematic_break] = ACTIONS(2113), - [sym__list_marker_minus] = ACTIONS(2113), - [sym__list_marker_plus] = ACTIONS(2117), - [sym__list_marker_star] = ACTIONS(2113), - [sym__list_marker_parenthesis] = ACTIONS(2113), - [sym__list_marker_dot] = ACTIONS(2113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2117), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2113), - [sym__list_marker_example] = ACTIONS(2113), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2113), - [sym__fenced_code_block_start_backtick] = ACTIONS(2113), - [sym_minus_metadata] = ACTIONS(2113), - [sym__pipe_table_start] = ACTIONS(2113), - [sym__fenced_div_start] = ACTIONS(2113), - [sym_ref_id_specifier] = ACTIONS(2113), - [sym__code_span_start] = ACTIONS(2113), - [sym__html_comment] = ACTIONS(2113), - [sym__autolink] = ACTIONS(2113), - [sym__highlight_span_start] = ACTIONS(2113), - [sym__insert_span_start] = ACTIONS(2113), - [sym__delete_span_start] = ACTIONS(2113), - [sym__edit_comment_span_start] = ACTIONS(2113), - [sym__single_quote_span_open] = ACTIONS(2113), - [sym__double_quote_span_open] = ACTIONS(2113), - [sym__shortcode_open_escaped] = ACTIONS(2113), - [sym__shortcode_open] = ACTIONS(2113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2113), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2113), - [sym__cite_author_in_text] = ACTIONS(2113), - [sym__cite_suppress_author] = ACTIONS(2113), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2113), - [sym__superscript_open] = ACTIONS(2113), - [sym__inline_note_start_token] = ACTIONS(2113), - [sym__strong_emphasis_open_star] = ACTIONS(2113), - [sym__strong_emphasis_open_underscore] = ACTIONS(2113), - [sym__emphasis_open_star] = ACTIONS(2113), - [sym__emphasis_open_underscore] = ACTIONS(2113), - [sym_inline_note_reference] = ACTIONS(2113), - [sym_html_element] = ACTIONS(2113), - [sym__pandoc_line_break] = ACTIONS(2113), + [sym_list_marker_star] = STATE(11), + [sym__list_item_star] = STATE(169), + [aux_sym__list_star_repeat1] = STATE(169), + [anon_sym_COLON] = ACTIONS(2061), + [sym_entity_reference] = ACTIONS(2061), + [sym_numeric_character_reference] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_BANG_LBRACK] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [aux_sym_pandoc_str_token1] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2061), + [sym__whitespace] = ACTIONS(2061), + [sym__line_ending] = ACTIONS(2061), + [sym__soft_line_ending] = ACTIONS(2061), + [sym__block_close] = ACTIONS(2061), + [sym__block_quote_start] = ACTIONS(2061), + [sym_atx_h1_marker] = ACTIONS(2061), + [sym_atx_h2_marker] = ACTIONS(2061), + [sym_atx_h3_marker] = ACTIONS(2061), + [sym_atx_h4_marker] = ACTIONS(2061), + [sym_atx_h5_marker] = ACTIONS(2061), + [sym_atx_h6_marker] = ACTIONS(2061), + [sym__thematic_break] = ACTIONS(2061), + [sym__list_marker_minus] = ACTIONS(2061), + [sym__list_marker_plus] = ACTIONS(2061), + [sym__list_marker_star] = ACTIONS(2065), + [sym__list_marker_parenthesis] = ACTIONS(2061), + [sym__list_marker_dot] = ACTIONS(2061), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2061), + [sym__list_marker_example] = ACTIONS(2061), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2061), + [sym__fenced_code_block_start_backtick] = ACTIONS(2061), + [sym_minus_metadata] = ACTIONS(2061), + [sym__pipe_table_start] = ACTIONS(2061), + [sym__fenced_div_start] = ACTIONS(2061), + [sym_ref_id_specifier] = ACTIONS(2061), + [sym__code_span_start] = ACTIONS(2061), + [sym__html_comment] = ACTIONS(2061), + [sym__autolink] = ACTIONS(2061), + [sym__highlight_span_start] = ACTIONS(2061), + [sym__insert_span_start] = ACTIONS(2061), + [sym__delete_span_start] = ACTIONS(2061), + [sym__edit_comment_span_start] = ACTIONS(2061), + [sym__single_quote_span_open] = ACTIONS(2061), + [sym__double_quote_span_open] = ACTIONS(2061), + [sym__shortcode_open_escaped] = ACTIONS(2061), + [sym__shortcode_open] = ACTIONS(2061), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2061), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2061), + [sym__cite_author_in_text] = ACTIONS(2061), + [sym__cite_suppress_author] = ACTIONS(2061), + [sym__strikeout_open] = ACTIONS(2061), + [sym__subscript_open] = ACTIONS(2061), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2061), + [sym__strong_emphasis_open_star] = ACTIONS(2061), + [sym__strong_emphasis_open_underscore] = ACTIONS(2061), + [sym__emphasis_open_star] = ACTIONS(2061), + [sym__emphasis_open_underscore] = ACTIONS(2061), + [sym_inline_note_reference] = ACTIONS(2061), + [sym_html_element] = ACTIONS(2061), + [sym__pandoc_line_break] = ACTIONS(2061), + [sym_grid_table] = ACTIONS(2061), }, [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(2142), - [anon_sym_COLON] = ACTIONS(2142), - [sym_entity_reference] = ACTIONS(2142), - [sym_numeric_character_reference] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_BANG_LBRACK] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [aux_sym_pandoc_str_token1] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2142), - [sym__whitespace] = ACTIONS(2142), - [sym__line_ending] = ACTIONS(2142), - [sym__soft_line_ending] = ACTIONS(2142), - [sym__block_quote_start] = ACTIONS(2142), - [sym_atx_h1_marker] = ACTIONS(2142), - [sym_atx_h2_marker] = ACTIONS(2142), - [sym_atx_h3_marker] = ACTIONS(2142), - [sym_atx_h4_marker] = ACTIONS(2142), - [sym_atx_h5_marker] = ACTIONS(2142), - [sym_atx_h6_marker] = ACTIONS(2142), - [sym__thematic_break] = ACTIONS(2142), - [sym__list_marker_minus] = ACTIONS(2146), - [sym__list_marker_plus] = ACTIONS(2142), - [sym__list_marker_star] = ACTIONS(2142), - [sym__list_marker_parenthesis] = ACTIONS(2142), - [sym__list_marker_dot] = ACTIONS(2142), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2146), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2142), - [sym__list_marker_example] = ACTIONS(2142), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2142), - [sym__fenced_code_block_start_backtick] = ACTIONS(2142), - [sym_minus_metadata] = ACTIONS(2142), - [sym__pipe_table_start] = ACTIONS(2142), - [sym__fenced_div_start] = ACTIONS(2142), - [sym_ref_id_specifier] = ACTIONS(2142), - [sym__code_span_start] = ACTIONS(2142), - [sym__html_comment] = ACTIONS(2142), - [sym__autolink] = ACTIONS(2142), - [sym__highlight_span_start] = ACTIONS(2142), - [sym__insert_span_start] = ACTIONS(2142), - [sym__delete_span_start] = ACTIONS(2142), - [sym__edit_comment_span_start] = ACTIONS(2142), - [sym__single_quote_span_open] = ACTIONS(2142), - [sym__double_quote_span_open] = ACTIONS(2142), - [sym__shortcode_open_escaped] = ACTIONS(2142), - [sym__shortcode_open] = ACTIONS(2142), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2142), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2142), - [sym__cite_author_in_text] = ACTIONS(2142), - [sym__cite_suppress_author] = ACTIONS(2142), - [sym__strikeout_open] = ACTIONS(2142), - [sym__subscript_open] = ACTIONS(2142), - [sym__superscript_open] = ACTIONS(2142), - [sym__inline_note_start_token] = ACTIONS(2142), - [sym__strong_emphasis_open_star] = ACTIONS(2142), - [sym__strong_emphasis_open_underscore] = ACTIONS(2142), - [sym__emphasis_open_star] = ACTIONS(2142), - [sym__emphasis_open_underscore] = ACTIONS(2142), - [sym_inline_note_reference] = ACTIONS(2142), - [sym_html_element] = ACTIONS(2142), - [sym__pandoc_line_break] = ACTIONS(2142), - }, - [STATE(171)] = { - [sym__inlines] = STATE(3309), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1855), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(643), - [sym__inline_whitespace] = STATE(643), + [anon_sym_COLON] = ACTIONS(2179), [sym_entity_reference] = ACTIONS(2179), [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2183), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2199), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_BANG_LBRACK] = ACTIONS(2179), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [aux_sym_pandoc_str_token1] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2179), + [sym__whitespace] = ACTIONS(2179), + [sym__line_ending] = ACTIONS(2179), + [sym__soft_line_ending] = ACTIONS(2179), + [sym__block_close] = ACTIONS(2179), + [sym_block_continuation] = ACTIONS(2179), + [sym__block_quote_start] = ACTIONS(2179), + [sym_atx_h1_marker] = ACTIONS(2179), + [sym_atx_h2_marker] = ACTIONS(2179), + [sym_atx_h3_marker] = ACTIONS(2179), + [sym_atx_h4_marker] = ACTIONS(2179), + [sym_atx_h5_marker] = ACTIONS(2179), + [sym_atx_h6_marker] = ACTIONS(2179), + [sym__thematic_break] = ACTIONS(2179), + [sym__list_marker_minus] = ACTIONS(2179), + [sym__list_marker_plus] = ACTIONS(2179), + [sym__list_marker_star] = ACTIONS(2179), + [sym__list_marker_parenthesis] = ACTIONS(2179), + [sym__list_marker_dot] = ACTIONS(2179), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_example] = ACTIONS(2179), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2179), + [sym__fenced_code_block_start_backtick] = ACTIONS(2179), + [sym__blank_line_start] = ACTIONS(2179), + [sym_minus_metadata] = ACTIONS(2179), + [sym__pipe_table_start] = ACTIONS(2179), + [sym__fenced_div_start] = ACTIONS(2179), + [sym_ref_id_specifier] = ACTIONS(2179), + [sym__code_span_start] = ACTIONS(2179), [sym__html_comment] = ACTIONS(2179), [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), + [sym__highlight_span_start] = ACTIONS(2179), + [sym__insert_span_start] = ACTIONS(2179), + [sym__delete_span_start] = ACTIONS(2179), + [sym__edit_comment_span_start] = ACTIONS(2179), + [sym__single_quote_span_open] = ACTIONS(2179), + [sym__double_quote_span_open] = ACTIONS(2179), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2179), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2179), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), + [sym__cite_author_in_text] = ACTIONS(2179), + [sym__cite_suppress_author] = ACTIONS(2179), + [sym__strikeout_open] = ACTIONS(2179), + [sym__subscript_open] = ACTIONS(2179), + [sym__superscript_open] = ACTIONS(2179), + [sym__inline_note_start_token] = ACTIONS(2179), + [sym__strong_emphasis_open_star] = ACTIONS(2179), + [sym__strong_emphasis_open_underscore] = ACTIONS(2179), + [sym__emphasis_open_star] = ACTIONS(2179), + [sym__emphasis_open_underscore] = ACTIONS(2179), [sym_inline_note_reference] = ACTIONS(2179), [sym_html_element] = ACTIONS(2179), [sym__pandoc_line_break] = ACTIONS(2179), + [sym_grid_table] = ACTIONS(2179), + }, + [STATE(171)] = { + [sym_pipe_table_row] = STATE(3059), + [sym_pipe_table_cell] = STATE(2855), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(418), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2123), + [sym__line_ending] = ACTIONS(2125), + [sym__eof] = ACTIONS(2125), + [sym__pipe_table_line_ending] = ACTIONS(2125), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2169), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(172)] = { - [anon_sym_COLON] = ACTIONS(2245), - [sym_entity_reference] = ACTIONS(2245), - [sym_numeric_character_reference] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_BANG_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [aux_sym_pandoc_str_token1] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2245), - [sym__whitespace] = ACTIONS(2245), - [sym__line_ending] = ACTIONS(2245), - [sym__soft_line_ending] = ACTIONS(2245), - [sym__block_close] = ACTIONS(2245), - [sym_block_continuation] = ACTIONS(2249), - [sym__block_quote_start] = ACTIONS(2245), - [sym_atx_h1_marker] = ACTIONS(2245), - [sym_atx_h2_marker] = ACTIONS(2245), - [sym_atx_h3_marker] = ACTIONS(2245), - [sym_atx_h4_marker] = ACTIONS(2245), - [sym_atx_h5_marker] = ACTIONS(2245), - [sym_atx_h6_marker] = ACTIONS(2245), - [sym__thematic_break] = ACTIONS(2245), - [sym__list_marker_minus] = ACTIONS(2245), - [sym__list_marker_plus] = ACTIONS(2245), - [sym__list_marker_star] = ACTIONS(2245), - [sym__list_marker_parenthesis] = ACTIONS(2245), - [sym__list_marker_dot] = ACTIONS(2245), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_example] = ACTIONS(2245), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2245), - [sym__fenced_code_block_start_backtick] = ACTIONS(2245), - [sym_minus_metadata] = ACTIONS(2245), - [sym__pipe_table_start] = ACTIONS(2245), - [sym__fenced_div_start] = ACTIONS(2245), - [sym__fenced_div_end] = ACTIONS(2245), - [sym_ref_id_specifier] = ACTIONS(2245), - [sym__code_span_start] = ACTIONS(2245), - [sym__html_comment] = ACTIONS(2245), - [sym__autolink] = ACTIONS(2245), - [sym__highlight_span_start] = ACTIONS(2245), - [sym__insert_span_start] = ACTIONS(2245), - [sym__delete_span_start] = ACTIONS(2245), - [sym__edit_comment_span_start] = ACTIONS(2245), - [sym__single_quote_span_open] = ACTIONS(2245), - [sym__double_quote_span_open] = ACTIONS(2245), - [sym__shortcode_open_escaped] = ACTIONS(2245), - [sym__shortcode_open] = ACTIONS(2245), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2245), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2245), - [sym__cite_author_in_text] = ACTIONS(2245), - [sym__cite_suppress_author] = ACTIONS(2245), - [sym__strikeout_open] = ACTIONS(2245), - [sym__subscript_open] = ACTIONS(2245), - [sym__superscript_open] = ACTIONS(2245), - [sym__inline_note_start_token] = ACTIONS(2245), - [sym__strong_emphasis_open_star] = ACTIONS(2245), - [sym__strong_emphasis_open_underscore] = ACTIONS(2245), - [sym__emphasis_open_star] = ACTIONS(2245), - [sym__emphasis_open_underscore] = ACTIONS(2245), - [sym_inline_note_reference] = ACTIONS(2245), - [sym_html_element] = ACTIONS(2245), - [sym__pandoc_line_break] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(2183), + [sym_entity_reference] = ACTIONS(2183), + [sym_numeric_character_reference] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_BANG_LBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [aux_sym_pandoc_str_token1] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2183), + [sym__whitespace] = ACTIONS(2183), + [sym__line_ending] = ACTIONS(2183), + [sym__soft_line_ending] = ACTIONS(2183), + [sym__block_close] = ACTIONS(2183), + [sym_block_continuation] = ACTIONS(2187), + [sym__block_quote_start] = ACTIONS(2183), + [sym_atx_h1_marker] = ACTIONS(2183), + [sym_atx_h2_marker] = ACTIONS(2183), + [sym_atx_h3_marker] = ACTIONS(2183), + [sym_atx_h4_marker] = ACTIONS(2183), + [sym_atx_h5_marker] = ACTIONS(2183), + [sym_atx_h6_marker] = ACTIONS(2183), + [sym__thematic_break] = ACTIONS(2183), + [sym__list_marker_minus] = ACTIONS(2183), + [sym__list_marker_plus] = ACTIONS(2183), + [sym__list_marker_star] = ACTIONS(2183), + [sym__list_marker_parenthesis] = ACTIONS(2183), + [sym__list_marker_dot] = ACTIONS(2183), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_example] = ACTIONS(2183), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2183), + [sym__fenced_code_block_start_backtick] = ACTIONS(2183), + [sym_minus_metadata] = ACTIONS(2183), + [sym__pipe_table_start] = ACTIONS(2183), + [sym__fenced_div_start] = ACTIONS(2183), + [sym__fenced_div_end] = ACTIONS(2183), + [sym_ref_id_specifier] = ACTIONS(2183), + [sym__code_span_start] = ACTIONS(2183), + [sym__html_comment] = ACTIONS(2183), + [sym__autolink] = ACTIONS(2183), + [sym__highlight_span_start] = ACTIONS(2183), + [sym__insert_span_start] = ACTIONS(2183), + [sym__delete_span_start] = ACTIONS(2183), + [sym__edit_comment_span_start] = ACTIONS(2183), + [sym__single_quote_span_open] = ACTIONS(2183), + [sym__double_quote_span_open] = ACTIONS(2183), + [sym__shortcode_open_escaped] = ACTIONS(2183), + [sym__shortcode_open] = ACTIONS(2183), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2183), + [sym__cite_author_in_text] = ACTIONS(2183), + [sym__cite_suppress_author] = ACTIONS(2183), + [sym__strikeout_open] = ACTIONS(2183), + [sym__subscript_open] = ACTIONS(2183), + [sym__superscript_open] = ACTIONS(2183), + [sym__inline_note_start_token] = ACTIONS(2183), + [sym__strong_emphasis_open_star] = ACTIONS(2183), + [sym__strong_emphasis_open_underscore] = ACTIONS(2183), + [sym__emphasis_open_star] = ACTIONS(2183), + [sym__emphasis_open_underscore] = ACTIONS(2183), + [sym_inline_note_reference] = ACTIONS(2183), + [sym_html_element] = ACTIONS(2183), + [sym__pandoc_line_break] = ACTIONS(2183), + [sym_grid_table] = ACTIONS(2183), }, [STATE(173)] = { - [anon_sym_COLON] = ACTIONS(2251), - [sym_entity_reference] = ACTIONS(2251), - [sym_numeric_character_reference] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_BANG_LBRACK] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [aux_sym_pandoc_str_token1] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2251), - [sym__whitespace] = ACTIONS(2251), - [sym__line_ending] = ACTIONS(2251), - [sym__soft_line_ending] = ACTIONS(2251), - [sym__block_close] = ACTIONS(2251), - [sym_block_continuation] = ACTIONS(2255), - [sym__block_quote_start] = ACTIONS(2251), - [sym_atx_h1_marker] = ACTIONS(2251), - [sym_atx_h2_marker] = ACTIONS(2251), - [sym_atx_h3_marker] = ACTIONS(2251), - [sym_atx_h4_marker] = ACTIONS(2251), - [sym_atx_h5_marker] = ACTIONS(2251), - [sym_atx_h6_marker] = ACTIONS(2251), - [sym__thematic_break] = ACTIONS(2251), - [sym__list_marker_minus] = ACTIONS(2251), - [sym__list_marker_plus] = ACTIONS(2251), - [sym__list_marker_star] = ACTIONS(2251), - [sym__list_marker_parenthesis] = ACTIONS(2251), - [sym__list_marker_dot] = ACTIONS(2251), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_example] = ACTIONS(2251), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2251), - [sym__fenced_code_block_start_backtick] = ACTIONS(2251), - [sym_minus_metadata] = ACTIONS(2251), - [sym__pipe_table_start] = ACTIONS(2251), - [sym__fenced_div_start] = ACTIONS(2251), - [sym__fenced_div_end] = ACTIONS(2251), - [sym_ref_id_specifier] = ACTIONS(2251), - [sym__code_span_start] = ACTIONS(2251), - [sym__html_comment] = ACTIONS(2251), - [sym__autolink] = ACTIONS(2251), - [sym__highlight_span_start] = ACTIONS(2251), - [sym__insert_span_start] = ACTIONS(2251), - [sym__delete_span_start] = ACTIONS(2251), - [sym__edit_comment_span_start] = ACTIONS(2251), - [sym__single_quote_span_open] = ACTIONS(2251), - [sym__double_quote_span_open] = ACTIONS(2251), - [sym__shortcode_open_escaped] = ACTIONS(2251), - [sym__shortcode_open] = ACTIONS(2251), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2251), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2251), - [sym__cite_author_in_text] = ACTIONS(2251), - [sym__cite_suppress_author] = ACTIONS(2251), - [sym__strikeout_open] = ACTIONS(2251), - [sym__subscript_open] = ACTIONS(2251), - [sym__superscript_open] = ACTIONS(2251), - [sym__inline_note_start_token] = ACTIONS(2251), - [sym__strong_emphasis_open_star] = ACTIONS(2251), - [sym__strong_emphasis_open_underscore] = ACTIONS(2251), - [sym__emphasis_open_star] = ACTIONS(2251), - [sym__emphasis_open_underscore] = ACTIONS(2251), - [sym_inline_note_reference] = ACTIONS(2251), - [sym_html_element] = ACTIONS(2251), - [sym__pandoc_line_break] = ACTIONS(2251), + [anon_sym_COLON] = ACTIONS(2189), + [sym_entity_reference] = ACTIONS(2189), + [sym_numeric_character_reference] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BANG_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [aux_sym_pandoc_str_token1] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2189), + [sym__whitespace] = ACTIONS(2189), + [sym__line_ending] = ACTIONS(2189), + [sym__soft_line_ending] = ACTIONS(2189), + [sym__block_close] = ACTIONS(2189), + [sym_block_continuation] = ACTIONS(2193), + [sym__block_quote_start] = ACTIONS(2189), + [sym_atx_h1_marker] = ACTIONS(2189), + [sym_atx_h2_marker] = ACTIONS(2189), + [sym_atx_h3_marker] = ACTIONS(2189), + [sym_atx_h4_marker] = ACTIONS(2189), + [sym_atx_h5_marker] = ACTIONS(2189), + [sym_atx_h6_marker] = ACTIONS(2189), + [sym__thematic_break] = ACTIONS(2189), + [sym__list_marker_minus] = ACTIONS(2189), + [sym__list_marker_plus] = ACTIONS(2189), + [sym__list_marker_star] = ACTIONS(2189), + [sym__list_marker_parenthesis] = ACTIONS(2189), + [sym__list_marker_dot] = ACTIONS(2189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_example] = ACTIONS(2189), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2189), + [sym__fenced_code_block_start_backtick] = ACTIONS(2189), + [sym_minus_metadata] = ACTIONS(2189), + [sym__pipe_table_start] = ACTIONS(2189), + [sym__fenced_div_start] = ACTIONS(2189), + [sym__fenced_div_end] = ACTIONS(2189), + [sym_ref_id_specifier] = ACTIONS(2189), + [sym__code_span_start] = ACTIONS(2189), + [sym__html_comment] = ACTIONS(2189), + [sym__autolink] = ACTIONS(2189), + [sym__highlight_span_start] = ACTIONS(2189), + [sym__insert_span_start] = ACTIONS(2189), + [sym__delete_span_start] = ACTIONS(2189), + [sym__edit_comment_span_start] = ACTIONS(2189), + [sym__single_quote_span_open] = ACTIONS(2189), + [sym__double_quote_span_open] = ACTIONS(2189), + [sym__shortcode_open_escaped] = ACTIONS(2189), + [sym__shortcode_open] = ACTIONS(2189), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2189), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2189), + [sym__cite_author_in_text] = ACTIONS(2189), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2189), + [sym__subscript_open] = ACTIONS(2189), + [sym__superscript_open] = ACTIONS(2189), + [sym__inline_note_start_token] = ACTIONS(2189), + [sym__strong_emphasis_open_star] = ACTIONS(2189), + [sym__strong_emphasis_open_underscore] = ACTIONS(2189), + [sym__emphasis_open_star] = ACTIONS(2189), + [sym__emphasis_open_underscore] = ACTIONS(2189), + [sym_inline_note_reference] = ACTIONS(2189), + [sym_html_element] = ACTIONS(2189), + [sym__pandoc_line_break] = ACTIONS(2189), + [sym_grid_table] = ACTIONS(2189), }, [STATE(174)] = { - [anon_sym_COLON] = ACTIONS(2257), - [sym_entity_reference] = ACTIONS(2257), - [sym_numeric_character_reference] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_BANG_LBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [aux_sym_pandoc_str_token1] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2257), - [sym__whitespace] = ACTIONS(2257), - [sym__line_ending] = ACTIONS(2257), - [sym__soft_line_ending] = ACTIONS(2257), - [sym__block_close] = ACTIONS(2257), - [sym_block_continuation] = ACTIONS(2261), - [sym__block_quote_start] = ACTIONS(2257), - [sym_atx_h1_marker] = ACTIONS(2257), - [sym_atx_h2_marker] = ACTIONS(2257), - [sym_atx_h3_marker] = ACTIONS(2257), - [sym_atx_h4_marker] = ACTIONS(2257), - [sym_atx_h5_marker] = ACTIONS(2257), - [sym_atx_h6_marker] = ACTIONS(2257), - [sym__thematic_break] = ACTIONS(2257), - [sym__list_marker_minus] = ACTIONS(2257), - [sym__list_marker_plus] = ACTIONS(2257), - [sym__list_marker_star] = ACTIONS(2257), - [sym__list_marker_parenthesis] = ACTIONS(2257), - [sym__list_marker_dot] = ACTIONS(2257), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_example] = ACTIONS(2257), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2257), - [sym__fenced_code_block_start_backtick] = ACTIONS(2257), - [sym_minus_metadata] = ACTIONS(2257), - [sym__pipe_table_start] = ACTIONS(2257), - [sym__fenced_div_start] = ACTIONS(2257), - [sym__fenced_div_end] = ACTIONS(2257), - [sym_ref_id_specifier] = ACTIONS(2257), - [sym__code_span_start] = ACTIONS(2257), - [sym__html_comment] = ACTIONS(2257), - [sym__autolink] = ACTIONS(2257), - [sym__highlight_span_start] = ACTIONS(2257), - [sym__insert_span_start] = ACTIONS(2257), - [sym__delete_span_start] = ACTIONS(2257), - [sym__edit_comment_span_start] = ACTIONS(2257), - [sym__single_quote_span_open] = ACTIONS(2257), - [sym__double_quote_span_open] = ACTIONS(2257), - [sym__shortcode_open_escaped] = ACTIONS(2257), - [sym__shortcode_open] = ACTIONS(2257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2257), - [sym__cite_author_in_text] = ACTIONS(2257), - [sym__cite_suppress_author] = ACTIONS(2257), - [sym__strikeout_open] = ACTIONS(2257), - [sym__subscript_open] = ACTIONS(2257), - [sym__superscript_open] = ACTIONS(2257), - [sym__inline_note_start_token] = ACTIONS(2257), - [sym__strong_emphasis_open_star] = ACTIONS(2257), - [sym__strong_emphasis_open_underscore] = ACTIONS(2257), - [sym__emphasis_open_star] = ACTIONS(2257), - [sym__emphasis_open_underscore] = ACTIONS(2257), - [sym_inline_note_reference] = ACTIONS(2257), - [sym_html_element] = ACTIONS(2257), - [sym__pandoc_line_break] = ACTIONS(2257), + [anon_sym_COLON] = ACTIONS(2195), + [sym_entity_reference] = ACTIONS(2195), + [sym_numeric_character_reference] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_BANG_LBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [aux_sym_pandoc_str_token1] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2195), + [sym__whitespace] = ACTIONS(2195), + [sym__line_ending] = ACTIONS(2195), + [sym__soft_line_ending] = ACTIONS(2195), + [sym__block_close] = ACTIONS(2195), + [sym_block_continuation] = ACTIONS(2199), + [sym__block_quote_start] = ACTIONS(2195), + [sym_atx_h1_marker] = ACTIONS(2195), + [sym_atx_h2_marker] = ACTIONS(2195), + [sym_atx_h3_marker] = ACTIONS(2195), + [sym_atx_h4_marker] = ACTIONS(2195), + [sym_atx_h5_marker] = ACTIONS(2195), + [sym_atx_h6_marker] = ACTIONS(2195), + [sym__thematic_break] = ACTIONS(2195), + [sym__list_marker_minus] = ACTIONS(2195), + [sym__list_marker_plus] = ACTIONS(2195), + [sym__list_marker_star] = ACTIONS(2195), + [sym__list_marker_parenthesis] = ACTIONS(2195), + [sym__list_marker_dot] = ACTIONS(2195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_example] = ACTIONS(2195), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2195), + [sym__fenced_code_block_start_backtick] = ACTIONS(2195), + [sym_minus_metadata] = ACTIONS(2195), + [sym__pipe_table_start] = ACTIONS(2195), + [sym__fenced_div_start] = ACTIONS(2195), + [sym__fenced_div_end] = ACTIONS(2195), + [sym_ref_id_specifier] = ACTIONS(2195), + [sym__code_span_start] = ACTIONS(2195), + [sym__html_comment] = ACTIONS(2195), + [sym__autolink] = ACTIONS(2195), + [sym__highlight_span_start] = ACTIONS(2195), + [sym__insert_span_start] = ACTIONS(2195), + [sym__delete_span_start] = ACTIONS(2195), + [sym__edit_comment_span_start] = ACTIONS(2195), + [sym__single_quote_span_open] = ACTIONS(2195), + [sym__double_quote_span_open] = ACTIONS(2195), + [sym__shortcode_open_escaped] = ACTIONS(2195), + [sym__shortcode_open] = ACTIONS(2195), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2195), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2195), + [sym__cite_author_in_text] = ACTIONS(2195), + [sym__cite_suppress_author] = ACTIONS(2195), + [sym__strikeout_open] = ACTIONS(2195), + [sym__subscript_open] = ACTIONS(2195), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2195), + [sym__strong_emphasis_open_star] = ACTIONS(2195), + [sym__strong_emphasis_open_underscore] = ACTIONS(2195), + [sym__emphasis_open_star] = ACTIONS(2195), + [sym__emphasis_open_underscore] = ACTIONS(2195), + [sym_inline_note_reference] = ACTIONS(2195), + [sym_html_element] = ACTIONS(2195), + [sym__pandoc_line_break] = ACTIONS(2195), + [sym_grid_table] = ACTIONS(2195), }, [STATE(175)] = { - [anon_sym_COLON] = ACTIONS(2263), - [sym_entity_reference] = ACTIONS(2263), - [sym_numeric_character_reference] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_BANG_LBRACK] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [aux_sym_pandoc_str_token1] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2263), - [sym__whitespace] = ACTIONS(2263), - [sym__line_ending] = ACTIONS(2263), - [sym__soft_line_ending] = ACTIONS(2263), - [sym__block_close] = ACTIONS(2263), - [sym_block_continuation] = ACTIONS(2267), - [sym__block_quote_start] = ACTIONS(2263), - [sym_atx_h1_marker] = ACTIONS(2263), - [sym_atx_h2_marker] = ACTIONS(2263), - [sym_atx_h3_marker] = ACTIONS(2263), - [sym_atx_h4_marker] = ACTIONS(2263), - [sym_atx_h5_marker] = ACTIONS(2263), - [sym_atx_h6_marker] = ACTIONS(2263), - [sym__thematic_break] = ACTIONS(2263), - [sym__list_marker_minus] = ACTIONS(2263), - [sym__list_marker_plus] = ACTIONS(2263), - [sym__list_marker_star] = ACTIONS(2263), - [sym__list_marker_parenthesis] = ACTIONS(2263), - [sym__list_marker_dot] = ACTIONS(2263), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_example] = ACTIONS(2263), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2263), - [sym__fenced_code_block_start_backtick] = ACTIONS(2263), - [sym_minus_metadata] = ACTIONS(2263), - [sym__pipe_table_start] = ACTIONS(2263), - [sym__fenced_div_start] = ACTIONS(2263), - [sym__fenced_div_end] = ACTIONS(2263), - [sym_ref_id_specifier] = ACTIONS(2263), - [sym__code_span_start] = ACTIONS(2263), - [sym__html_comment] = ACTIONS(2263), - [sym__autolink] = ACTIONS(2263), - [sym__highlight_span_start] = ACTIONS(2263), - [sym__insert_span_start] = ACTIONS(2263), - [sym__delete_span_start] = ACTIONS(2263), - [sym__edit_comment_span_start] = ACTIONS(2263), - [sym__single_quote_span_open] = ACTIONS(2263), - [sym__double_quote_span_open] = ACTIONS(2263), - [sym__shortcode_open_escaped] = ACTIONS(2263), - [sym__shortcode_open] = ACTIONS(2263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2263), - [sym__cite_author_in_text] = ACTIONS(2263), - [sym__cite_suppress_author] = ACTIONS(2263), - [sym__strikeout_open] = ACTIONS(2263), - [sym__subscript_open] = ACTIONS(2263), - [sym__superscript_open] = ACTIONS(2263), - [sym__inline_note_start_token] = ACTIONS(2263), - [sym__strong_emphasis_open_star] = ACTIONS(2263), - [sym__strong_emphasis_open_underscore] = ACTIONS(2263), - [sym__emphasis_open_star] = ACTIONS(2263), - [sym__emphasis_open_underscore] = ACTIONS(2263), - [sym_inline_note_reference] = ACTIONS(2263), - [sym_html_element] = ACTIONS(2263), - [sym__pandoc_line_break] = ACTIONS(2263), + [anon_sym_COLON] = ACTIONS(2201), + [sym_entity_reference] = ACTIONS(2201), + [sym_numeric_character_reference] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_BANG_LBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [aux_sym_pandoc_str_token1] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2201), + [sym__whitespace] = ACTIONS(2201), + [sym__line_ending] = ACTIONS(2201), + [sym__soft_line_ending] = ACTIONS(2201), + [sym__block_close] = ACTIONS(2201), + [sym_block_continuation] = ACTIONS(2205), + [sym__block_quote_start] = ACTIONS(2201), + [sym_atx_h1_marker] = ACTIONS(2201), + [sym_atx_h2_marker] = ACTIONS(2201), + [sym_atx_h3_marker] = ACTIONS(2201), + [sym_atx_h4_marker] = ACTIONS(2201), + [sym_atx_h5_marker] = ACTIONS(2201), + [sym_atx_h6_marker] = ACTIONS(2201), + [sym__thematic_break] = ACTIONS(2201), + [sym__list_marker_minus] = ACTIONS(2201), + [sym__list_marker_plus] = ACTIONS(2201), + [sym__list_marker_star] = ACTIONS(2201), + [sym__list_marker_parenthesis] = ACTIONS(2201), + [sym__list_marker_dot] = ACTIONS(2201), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_example] = ACTIONS(2201), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2201), + [sym__fenced_code_block_start_backtick] = ACTIONS(2201), + [sym_minus_metadata] = ACTIONS(2201), + [sym__pipe_table_start] = ACTIONS(2201), + [sym__fenced_div_start] = ACTIONS(2201), + [sym__fenced_div_end] = ACTIONS(2201), + [sym_ref_id_specifier] = ACTIONS(2201), + [sym__code_span_start] = ACTIONS(2201), + [sym__html_comment] = ACTIONS(2201), + [sym__autolink] = ACTIONS(2201), + [sym__highlight_span_start] = ACTIONS(2201), + [sym__insert_span_start] = ACTIONS(2201), + [sym__delete_span_start] = ACTIONS(2201), + [sym__edit_comment_span_start] = ACTIONS(2201), + [sym__single_quote_span_open] = ACTIONS(2201), + [sym__double_quote_span_open] = ACTIONS(2201), + [sym__shortcode_open_escaped] = ACTIONS(2201), + [sym__shortcode_open] = ACTIONS(2201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2201), + [sym__cite_author_in_text] = ACTIONS(2201), + [sym__cite_suppress_author] = ACTIONS(2201), + [sym__strikeout_open] = ACTIONS(2201), + [sym__subscript_open] = ACTIONS(2201), + [sym__superscript_open] = ACTIONS(2201), + [sym__inline_note_start_token] = ACTIONS(2201), + [sym__strong_emphasis_open_star] = ACTIONS(2201), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2201), + [sym__emphasis_open_underscore] = ACTIONS(2201), + [sym_inline_note_reference] = ACTIONS(2201), + [sym_html_element] = ACTIONS(2201), + [sym__pandoc_line_break] = ACTIONS(2201), + [sym_grid_table] = ACTIONS(2201), }, [STATE(176)] = { - [anon_sym_COLON] = ACTIONS(2269), - [sym_entity_reference] = ACTIONS(2269), - [sym_numeric_character_reference] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_BANG_LBRACK] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [aux_sym_pandoc_str_token1] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2269), - [sym__whitespace] = ACTIONS(2269), - [sym__line_ending] = ACTIONS(2269), - [sym__soft_line_ending] = ACTIONS(2269), - [sym__block_close] = ACTIONS(2269), - [sym_block_continuation] = ACTIONS(2273), - [sym__block_quote_start] = ACTIONS(2269), - [sym_atx_h1_marker] = ACTIONS(2269), - [sym_atx_h2_marker] = ACTIONS(2269), - [sym_atx_h3_marker] = ACTIONS(2269), - [sym_atx_h4_marker] = ACTIONS(2269), - [sym_atx_h5_marker] = ACTIONS(2269), - [sym_atx_h6_marker] = ACTIONS(2269), - [sym__thematic_break] = ACTIONS(2269), - [sym__list_marker_minus] = ACTIONS(2269), - [sym__list_marker_plus] = ACTIONS(2269), - [sym__list_marker_star] = ACTIONS(2269), - [sym__list_marker_parenthesis] = ACTIONS(2269), - [sym__list_marker_dot] = ACTIONS(2269), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_example] = ACTIONS(2269), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2269), - [sym__fenced_code_block_start_backtick] = ACTIONS(2269), - [sym_minus_metadata] = ACTIONS(2269), - [sym__pipe_table_start] = ACTIONS(2269), - [sym__fenced_div_start] = ACTIONS(2269), - [sym__fenced_div_end] = ACTIONS(2269), - [sym_ref_id_specifier] = ACTIONS(2269), - [sym__code_span_start] = ACTIONS(2269), - [sym__html_comment] = ACTIONS(2269), - [sym__autolink] = ACTIONS(2269), - [sym__highlight_span_start] = ACTIONS(2269), - [sym__insert_span_start] = ACTIONS(2269), - [sym__delete_span_start] = ACTIONS(2269), - [sym__edit_comment_span_start] = ACTIONS(2269), - [sym__single_quote_span_open] = ACTIONS(2269), - [sym__double_quote_span_open] = ACTIONS(2269), - [sym__shortcode_open_escaped] = ACTIONS(2269), - [sym__shortcode_open] = ACTIONS(2269), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2269), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2269), - [sym__cite_author_in_text] = ACTIONS(2269), - [sym__cite_suppress_author] = ACTIONS(2269), - [sym__strikeout_open] = ACTIONS(2269), - [sym__subscript_open] = ACTIONS(2269), - [sym__superscript_open] = ACTIONS(2269), - [sym__inline_note_start_token] = ACTIONS(2269), - [sym__strong_emphasis_open_star] = ACTIONS(2269), - [sym__strong_emphasis_open_underscore] = ACTIONS(2269), - [sym__emphasis_open_star] = ACTIONS(2269), - [sym__emphasis_open_underscore] = ACTIONS(2269), - [sym_inline_note_reference] = ACTIONS(2269), - [sym_html_element] = ACTIONS(2269), - [sym__pandoc_line_break] = ACTIONS(2269), + [anon_sym_COLON] = ACTIONS(2207), + [sym_entity_reference] = ACTIONS(2207), + [sym_numeric_character_reference] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_BANG_LBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [aux_sym_pandoc_str_token1] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2207), + [sym__whitespace] = ACTIONS(2207), + [sym__line_ending] = ACTIONS(2207), + [sym__soft_line_ending] = ACTIONS(2207), + [sym__block_close] = ACTIONS(2207), + [sym_block_continuation] = ACTIONS(2211), + [sym__block_quote_start] = ACTIONS(2207), + [sym_atx_h1_marker] = ACTIONS(2207), + [sym_atx_h2_marker] = ACTIONS(2207), + [sym_atx_h3_marker] = ACTIONS(2207), + [sym_atx_h4_marker] = ACTIONS(2207), + [sym_atx_h5_marker] = ACTIONS(2207), + [sym_atx_h6_marker] = ACTIONS(2207), + [sym__thematic_break] = ACTIONS(2207), + [sym__list_marker_minus] = ACTIONS(2207), + [sym__list_marker_plus] = ACTIONS(2207), + [sym__list_marker_star] = ACTIONS(2207), + [sym__list_marker_parenthesis] = ACTIONS(2207), + [sym__list_marker_dot] = ACTIONS(2207), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_example] = ACTIONS(2207), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2207), + [sym__fenced_code_block_start_backtick] = ACTIONS(2207), + [sym_minus_metadata] = ACTIONS(2207), + [sym__pipe_table_start] = ACTIONS(2207), + [sym__fenced_div_start] = ACTIONS(2207), + [sym__fenced_div_end] = ACTIONS(2207), + [sym_ref_id_specifier] = ACTIONS(2207), + [sym__code_span_start] = ACTIONS(2207), + [sym__html_comment] = ACTIONS(2207), + [sym__autolink] = ACTIONS(2207), + [sym__highlight_span_start] = ACTIONS(2207), + [sym__insert_span_start] = ACTIONS(2207), + [sym__delete_span_start] = ACTIONS(2207), + [sym__edit_comment_span_start] = ACTIONS(2207), + [sym__single_quote_span_open] = ACTIONS(2207), + [sym__double_quote_span_open] = ACTIONS(2207), + [sym__shortcode_open_escaped] = ACTIONS(2207), + [sym__shortcode_open] = ACTIONS(2207), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2207), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2207), + [sym__cite_author_in_text] = ACTIONS(2207), + [sym__cite_suppress_author] = ACTIONS(2207), + [sym__strikeout_open] = ACTIONS(2207), + [sym__subscript_open] = ACTIONS(2207), + [sym__superscript_open] = ACTIONS(2207), + [sym__inline_note_start_token] = ACTIONS(2207), + [sym__strong_emphasis_open_star] = ACTIONS(2207), + [sym__strong_emphasis_open_underscore] = ACTIONS(2207), + [sym__emphasis_open_star] = ACTIONS(2207), + [sym__emphasis_open_underscore] = ACTIONS(2207), + [sym_inline_note_reference] = ACTIONS(2207), + [sym_html_element] = ACTIONS(2207), + [sym__pandoc_line_break] = ACTIONS(2207), + [sym_grid_table] = ACTIONS(2207), }, [STATE(177)] = { - [anon_sym_COLON] = ACTIONS(2275), - [sym_entity_reference] = ACTIONS(2275), - [sym_numeric_character_reference] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [aux_sym_pandoc_str_token1] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2275), - [sym__whitespace] = ACTIONS(2275), - [sym__line_ending] = ACTIONS(2275), - [sym__soft_line_ending] = ACTIONS(2275), - [sym__block_close] = ACTIONS(2275), - [sym_block_continuation] = ACTIONS(2279), - [sym__block_quote_start] = ACTIONS(2275), - [sym_atx_h1_marker] = ACTIONS(2275), - [sym_atx_h2_marker] = ACTIONS(2275), - [sym_atx_h3_marker] = ACTIONS(2275), - [sym_atx_h4_marker] = ACTIONS(2275), - [sym_atx_h5_marker] = ACTIONS(2275), - [sym_atx_h6_marker] = ACTIONS(2275), - [sym__thematic_break] = ACTIONS(2275), - [sym__list_marker_minus] = ACTIONS(2275), - [sym__list_marker_plus] = ACTIONS(2275), - [sym__list_marker_star] = ACTIONS(2275), - [sym__list_marker_parenthesis] = ACTIONS(2275), - [sym__list_marker_dot] = ACTIONS(2275), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_example] = ACTIONS(2275), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2275), - [sym__fenced_code_block_start_backtick] = ACTIONS(2275), - [sym_minus_metadata] = ACTIONS(2275), - [sym__pipe_table_start] = ACTIONS(2275), - [sym__fenced_div_start] = ACTIONS(2275), - [sym__fenced_div_end] = ACTIONS(2275), - [sym_ref_id_specifier] = ACTIONS(2275), - [sym__code_span_start] = ACTIONS(2275), - [sym__html_comment] = ACTIONS(2275), - [sym__autolink] = ACTIONS(2275), - [sym__highlight_span_start] = ACTIONS(2275), - [sym__insert_span_start] = ACTIONS(2275), - [sym__delete_span_start] = ACTIONS(2275), - [sym__edit_comment_span_start] = ACTIONS(2275), - [sym__single_quote_span_open] = ACTIONS(2275), - [sym__double_quote_span_open] = ACTIONS(2275), - [sym__shortcode_open_escaped] = ACTIONS(2275), - [sym__shortcode_open] = ACTIONS(2275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2275), - [sym__cite_author_in_text] = ACTIONS(2275), - [sym__cite_suppress_author] = ACTIONS(2275), - [sym__strikeout_open] = ACTIONS(2275), - [sym__subscript_open] = ACTIONS(2275), - [sym__superscript_open] = ACTIONS(2275), - [sym__inline_note_start_token] = ACTIONS(2275), - [sym__strong_emphasis_open_star] = ACTIONS(2275), - [sym__strong_emphasis_open_underscore] = ACTIONS(2275), - [sym__emphasis_open_star] = ACTIONS(2275), - [sym__emphasis_open_underscore] = ACTIONS(2275), - [sym_inline_note_reference] = ACTIONS(2275), - [sym_html_element] = ACTIONS(2275), - [sym__pandoc_line_break] = ACTIONS(2275), + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2213), + [sym_grid_table] = ACTIONS(2213), }, [STATE(178)] = { - [anon_sym_COLON] = ACTIONS(2281), - [sym_entity_reference] = ACTIONS(2281), - [sym_numeric_character_reference] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_BANG_LBRACK] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [aux_sym_pandoc_str_token1] = ACTIONS(2283), - [anon_sym_PIPE] = ACTIONS(2281), - [sym__whitespace] = ACTIONS(2281), - [sym__line_ending] = ACTIONS(2281), - [sym__soft_line_ending] = ACTIONS(2281), - [sym__block_close] = ACTIONS(2281), - [sym_block_continuation] = ACTIONS(2281), - [sym__block_quote_start] = ACTIONS(2281), - [sym_atx_h1_marker] = ACTIONS(2281), - [sym_atx_h2_marker] = ACTIONS(2281), - [sym_atx_h3_marker] = ACTIONS(2281), - [sym_atx_h4_marker] = ACTIONS(2281), - [sym_atx_h5_marker] = ACTIONS(2281), - [sym_atx_h6_marker] = ACTIONS(2281), - [sym__thematic_break] = ACTIONS(2281), - [sym__list_marker_minus] = ACTIONS(2281), - [sym__list_marker_plus] = ACTIONS(2281), - [sym__list_marker_star] = ACTIONS(2281), - [sym__list_marker_parenthesis] = ACTIONS(2281), - [sym__list_marker_dot] = ACTIONS(2281), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2281), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2281), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2281), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2281), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2281), - [sym__list_marker_example] = ACTIONS(2281), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2281), - [sym__fenced_code_block_start_backtick] = ACTIONS(2281), - [sym__blank_line_start] = ACTIONS(2281), - [sym_minus_metadata] = ACTIONS(2281), - [sym__pipe_table_start] = ACTIONS(2281), - [sym__fenced_div_start] = ACTIONS(2281), - [sym_ref_id_specifier] = ACTIONS(2281), - [sym__code_span_start] = ACTIONS(2281), - [sym__html_comment] = ACTIONS(2281), - [sym__autolink] = ACTIONS(2281), - [sym__highlight_span_start] = ACTIONS(2281), - [sym__insert_span_start] = ACTIONS(2281), - [sym__delete_span_start] = ACTIONS(2281), - [sym__edit_comment_span_start] = ACTIONS(2281), - [sym__single_quote_span_open] = ACTIONS(2281), - [sym__double_quote_span_open] = ACTIONS(2281), - [sym__shortcode_open_escaped] = ACTIONS(2281), - [sym__shortcode_open] = ACTIONS(2281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2281), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2281), - [sym__cite_author_in_text] = ACTIONS(2281), - [sym__cite_suppress_author] = ACTIONS(2281), - [sym__strikeout_open] = ACTIONS(2281), - [sym__subscript_open] = ACTIONS(2281), - [sym__superscript_open] = ACTIONS(2281), - [sym__inline_note_start_token] = ACTIONS(2281), - [sym__strong_emphasis_open_star] = ACTIONS(2281), - [sym__strong_emphasis_open_underscore] = ACTIONS(2281), - [sym__emphasis_open_star] = ACTIONS(2281), - [sym__emphasis_open_underscore] = ACTIONS(2281), - [sym_inline_note_reference] = ACTIONS(2281), - [sym_html_element] = ACTIONS(2281), - [sym__pandoc_line_break] = ACTIONS(2281), + [anon_sym_COLON] = 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_close] = ACTIONS(2219), + [sym_block_continuation] = ACTIONS(2219), + [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__blank_line_start] = 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_line_break] = ACTIONS(2219), + [sym_grid_table] = ACTIONS(2219), }, [STATE(179)] = { + [anon_sym_COLON] = ACTIONS(2223), + [sym_entity_reference] = ACTIONS(2223), + [sym_numeric_character_reference] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_BANG_LBRACK] = ACTIONS(2223), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [aux_sym_pandoc_str_token1] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2223), + [sym__whitespace] = ACTIONS(2223), + [sym__line_ending] = ACTIONS(2223), + [sym__soft_line_ending] = ACTIONS(2223), + [sym__block_close] = ACTIONS(2223), + [sym_block_continuation] = ACTIONS(2227), + [sym__block_quote_start] = ACTIONS(2223), + [sym_atx_h1_marker] = ACTIONS(2223), + [sym_atx_h2_marker] = ACTIONS(2223), + [sym_atx_h3_marker] = ACTIONS(2223), + [sym_atx_h4_marker] = ACTIONS(2223), + [sym_atx_h5_marker] = ACTIONS(2223), + [sym_atx_h6_marker] = ACTIONS(2223), + [sym__thematic_break] = ACTIONS(2223), + [sym__list_marker_minus] = ACTIONS(2223), + [sym__list_marker_plus] = ACTIONS(2223), + [sym__list_marker_star] = ACTIONS(2223), + [sym__list_marker_parenthesis] = ACTIONS(2223), + [sym__list_marker_dot] = ACTIONS(2223), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_example] = ACTIONS(2223), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2223), + [sym__fenced_code_block_start_backtick] = ACTIONS(2223), + [sym_minus_metadata] = ACTIONS(2223), + [sym__pipe_table_start] = ACTIONS(2223), + [sym__fenced_div_start] = ACTIONS(2223), + [sym__fenced_div_end] = ACTIONS(2223), + [sym_ref_id_specifier] = ACTIONS(2223), + [sym__code_span_start] = ACTIONS(2223), + [sym__html_comment] = ACTIONS(2223), + [sym__autolink] = ACTIONS(2223), + [sym__highlight_span_start] = ACTIONS(2223), + [sym__insert_span_start] = ACTIONS(2223), + [sym__delete_span_start] = ACTIONS(2223), + [sym__edit_comment_span_start] = ACTIONS(2223), + [sym__single_quote_span_open] = ACTIONS(2223), + [sym__double_quote_span_open] = ACTIONS(2223), + [sym__shortcode_open_escaped] = ACTIONS(2223), + [sym__shortcode_open] = ACTIONS(2223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), + [sym__cite_author_in_text] = ACTIONS(2223), + [sym__cite_suppress_author] = ACTIONS(2223), + [sym__strikeout_open] = ACTIONS(2223), + [sym__subscript_open] = ACTIONS(2223), + [sym__superscript_open] = ACTIONS(2223), + [sym__inline_note_start_token] = ACTIONS(2223), + [sym__strong_emphasis_open_star] = ACTIONS(2223), + [sym__strong_emphasis_open_underscore] = ACTIONS(2223), + [sym__emphasis_open_star] = ACTIONS(2223), + [sym__emphasis_open_underscore] = ACTIONS(2223), + [sym_inline_note_reference] = ACTIONS(2223), + [sym_html_element] = ACTIONS(2223), + [sym__pandoc_line_break] = ACTIONS(2223), + [sym_grid_table] = ACTIONS(2223), + }, + [STATE(180)] = { + [anon_sym_COLON] = ACTIONS(2229), + [sym_entity_reference] = ACTIONS(2229), + [sym_numeric_character_reference] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_BANG_LBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [aux_sym_pandoc_str_token1] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2229), + [sym__whitespace] = ACTIONS(2229), + [sym__line_ending] = ACTIONS(2229), + [sym__soft_line_ending] = ACTIONS(2229), + [sym__block_close] = ACTIONS(2229), + [sym_block_continuation] = ACTIONS(2229), + [sym__block_quote_start] = ACTIONS(2229), + [sym_atx_h1_marker] = ACTIONS(2229), + [sym_atx_h2_marker] = ACTIONS(2229), + [sym_atx_h3_marker] = ACTIONS(2229), + [sym_atx_h4_marker] = ACTIONS(2229), + [sym_atx_h5_marker] = ACTIONS(2229), + [sym_atx_h6_marker] = ACTIONS(2229), + [sym__thematic_break] = ACTIONS(2229), + [sym__list_marker_minus] = ACTIONS(2229), + [sym__list_marker_plus] = ACTIONS(2229), + [sym__list_marker_star] = ACTIONS(2229), + [sym__list_marker_parenthesis] = ACTIONS(2229), + [sym__list_marker_dot] = ACTIONS(2229), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2229), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2229), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2229), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2229), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2229), + [sym__list_marker_example] = ACTIONS(2229), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2229), + [sym__fenced_code_block_start_backtick] = ACTIONS(2229), + [sym__blank_line_start] = ACTIONS(2229), + [sym_minus_metadata] = ACTIONS(2229), + [sym__pipe_table_start] = ACTIONS(2229), + [sym__fenced_div_start] = ACTIONS(2229), + [sym_ref_id_specifier] = ACTIONS(2229), + [sym__code_span_start] = ACTIONS(2229), + [sym__html_comment] = ACTIONS(2229), + [sym__autolink] = ACTIONS(2229), + [sym__highlight_span_start] = ACTIONS(2229), + [sym__insert_span_start] = ACTIONS(2229), + [sym__delete_span_start] = ACTIONS(2229), + [sym__edit_comment_span_start] = ACTIONS(2229), + [sym__single_quote_span_open] = ACTIONS(2229), + [sym__double_quote_span_open] = ACTIONS(2229), + [sym__shortcode_open_escaped] = ACTIONS(2229), + [sym__shortcode_open] = ACTIONS(2229), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2229), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2229), + [sym__cite_author_in_text] = ACTIONS(2229), + [sym__cite_suppress_author] = ACTIONS(2229), + [sym__strikeout_open] = ACTIONS(2229), + [sym__subscript_open] = ACTIONS(2229), + [sym__superscript_open] = ACTIONS(2229), + [sym__inline_note_start_token] = ACTIONS(2229), + [sym__strong_emphasis_open_star] = ACTIONS(2229), + [sym__strong_emphasis_open_underscore] = ACTIONS(2229), + [sym__emphasis_open_star] = ACTIONS(2229), + [sym__emphasis_open_underscore] = ACTIONS(2229), + [sym_inline_note_reference] = ACTIONS(2229), + [sym_html_element] = ACTIONS(2229), + [sym__pandoc_line_break] = ACTIONS(2229), + [sym_grid_table] = ACTIONS(2229), + }, + [STATE(181)] = { + [anon_sym_COLON] = ACTIONS(2233), + [sym_entity_reference] = ACTIONS(2233), + [sym_numeric_character_reference] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_BANG_LBRACK] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [aux_sym_pandoc_str_token1] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2233), + [sym__whitespace] = ACTIONS(2233), + [sym__line_ending] = ACTIONS(2233), + [sym__soft_line_ending] = ACTIONS(2233), + [sym__block_close] = ACTIONS(2233), + [sym_block_continuation] = ACTIONS(2233), + [sym__block_quote_start] = ACTIONS(2233), + [sym_atx_h1_marker] = ACTIONS(2233), + [sym_atx_h2_marker] = ACTIONS(2233), + [sym_atx_h3_marker] = ACTIONS(2233), + [sym_atx_h4_marker] = ACTIONS(2233), + [sym_atx_h5_marker] = ACTIONS(2233), + [sym_atx_h6_marker] = ACTIONS(2233), + [sym__thematic_break] = ACTIONS(2233), + [sym__list_marker_minus] = ACTIONS(2233), + [sym__list_marker_plus] = ACTIONS(2233), + [sym__list_marker_star] = ACTIONS(2233), + [sym__list_marker_parenthesis] = ACTIONS(2233), + [sym__list_marker_dot] = ACTIONS(2233), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2233), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2233), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2233), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2233), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2233), + [sym__list_marker_example] = ACTIONS(2233), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2233), + [sym__fenced_code_block_start_backtick] = ACTIONS(2233), + [sym__blank_line_start] = ACTIONS(2233), + [sym_minus_metadata] = ACTIONS(2233), + [sym__pipe_table_start] = ACTIONS(2233), + [sym__fenced_div_start] = ACTIONS(2233), + [sym_ref_id_specifier] = ACTIONS(2233), + [sym__code_span_start] = ACTIONS(2233), + [sym__html_comment] = ACTIONS(2233), + [sym__autolink] = ACTIONS(2233), + [sym__highlight_span_start] = ACTIONS(2233), + [sym__insert_span_start] = ACTIONS(2233), + [sym__delete_span_start] = ACTIONS(2233), + [sym__edit_comment_span_start] = ACTIONS(2233), + [sym__single_quote_span_open] = ACTIONS(2233), + [sym__double_quote_span_open] = ACTIONS(2233), + [sym__shortcode_open_escaped] = ACTIONS(2233), + [sym__shortcode_open] = ACTIONS(2233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2233), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2233), + [sym__cite_author_in_text] = ACTIONS(2233), + [sym__cite_suppress_author] = ACTIONS(2233), + [sym__strikeout_open] = ACTIONS(2233), + [sym__subscript_open] = ACTIONS(2233), + [sym__superscript_open] = ACTIONS(2233), + [sym__inline_note_start_token] = ACTIONS(2233), + [sym__strong_emphasis_open_star] = ACTIONS(2233), + [sym__strong_emphasis_open_underscore] = ACTIONS(2233), + [sym__emphasis_open_star] = ACTIONS(2233), + [sym__emphasis_open_underscore] = ACTIONS(2233), + [sym_inline_note_reference] = ACTIONS(2233), + [sym_html_element] = ACTIONS(2233), + [sym__pandoc_line_break] = ACTIONS(2233), + [sym_grid_table] = ACTIONS(2233), + }, + [STATE(182)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2237), + [sym_grid_table] = ACTIONS(2237), + }, + [STATE(183)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2243), + [sym_grid_table] = ACTIONS(2243), + }, + [STATE(184)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2249), + [sym_grid_table] = ACTIONS(2249), + }, + [STATE(185)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), + }, + [STATE(186)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2261), + [sym_grid_table] = ACTIONS(2261), + }, + [STATE(187)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2267), + [sym_grid_table] = ACTIONS(2267), + }, + [STATE(188)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), + }, + [STATE(189)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2279), + [sym_grid_table] = ACTIONS(2279), + }, + [STATE(190)] = { [anon_sym_COLON] = ACTIONS(2285), [sym_entity_reference] = ACTIONS(2285), [sym_numeric_character_reference] = ACTIONS(2285), @@ -43132,8 +44081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2285), [sym_html_element] = ACTIONS(2285), [sym__pandoc_line_break] = ACTIONS(2285), + [sym_grid_table] = ACTIONS(2285), }, - [STATE(180)] = { + [STATE(191)] = { [anon_sym_COLON] = ACTIONS(2289), [sym_entity_reference] = ACTIONS(2289), [sym_numeric_character_reference] = ACTIONS(2289), @@ -43148,7 +44098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2289), [sym__soft_line_ending] = ACTIONS(2289), [sym__block_close] = ACTIONS(2289), - [sym_block_continuation] = 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), @@ -43170,10 +44120,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2289), [sym__list_marker_example_dont_interrupt] = ACTIONS(2289), [sym__fenced_code_block_start_backtick] = ACTIONS(2289), - [sym__blank_line_start] = ACTIONS(2289), [sym_minus_metadata] = ACTIONS(2289), [sym__pipe_table_start] = ACTIONS(2289), [sym__fenced_div_start] = ACTIONS(2289), + [sym__fenced_div_end] = ACTIONS(2289), [sym_ref_id_specifier] = ACTIONS(2289), [sym__code_span_start] = ACTIONS(2289), [sym__html_comment] = ACTIONS(2289), @@ -43201,77 +44151,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2289), [sym_html_element] = ACTIONS(2289), [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), }, - [STATE(181)] = { - [anon_sym_COLON] = ACTIONS(2293), - [sym_entity_reference] = ACTIONS(2293), - [sym_numeric_character_reference] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [aux_sym_pandoc_str_token1] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2293), - [sym__whitespace] = ACTIONS(2293), - [sym__line_ending] = ACTIONS(2293), - [sym__soft_line_ending] = ACTIONS(2293), - [sym__block_close] = ACTIONS(2293), - [sym_block_continuation] = ACTIONS(2297), - [sym__block_quote_start] = ACTIONS(2293), - [sym_atx_h1_marker] = ACTIONS(2293), - [sym_atx_h2_marker] = ACTIONS(2293), - [sym_atx_h3_marker] = ACTIONS(2293), - [sym_atx_h4_marker] = ACTIONS(2293), - [sym_atx_h5_marker] = ACTIONS(2293), - [sym_atx_h6_marker] = ACTIONS(2293), - [sym__thematic_break] = ACTIONS(2293), - [sym__list_marker_minus] = ACTIONS(2293), - [sym__list_marker_plus] = ACTIONS(2293), - [sym__list_marker_star] = ACTIONS(2293), - [sym__list_marker_parenthesis] = ACTIONS(2293), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2293), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2293), - [sym__fenced_code_block_start_backtick] = ACTIONS(2293), - [sym_minus_metadata] = ACTIONS(2293), - [sym__pipe_table_start] = ACTIONS(2293), - [sym__fenced_div_start] = ACTIONS(2293), - [sym__fenced_div_end] = ACTIONS(2293), - [sym_ref_id_specifier] = ACTIONS(2293), - [sym__code_span_start] = ACTIONS(2293), - [sym__html_comment] = ACTIONS(2293), - [sym__autolink] = ACTIONS(2293), - [sym__highlight_span_start] = ACTIONS(2293), - [sym__insert_span_start] = ACTIONS(2293), - [sym__delete_span_start] = ACTIONS(2293), - [sym__edit_comment_span_start] = ACTIONS(2293), - [sym__single_quote_span_open] = ACTIONS(2293), - [sym__double_quote_span_open] = ACTIONS(2293), - [sym__shortcode_open_escaped] = ACTIONS(2293), - [sym__shortcode_open] = ACTIONS(2293), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2293), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2293), - [sym__cite_author_in_text] = ACTIONS(2293), - [sym__cite_suppress_author] = ACTIONS(2293), - [sym__strikeout_open] = ACTIONS(2293), - [sym__subscript_open] = ACTIONS(2293), - [sym__superscript_open] = ACTIONS(2293), - [sym__inline_note_start_token] = ACTIONS(2293), - [sym__strong_emphasis_open_star] = ACTIONS(2293), - [sym__strong_emphasis_open_underscore] = ACTIONS(2293), - [sym__emphasis_open_star] = ACTIONS(2293), - [sym__emphasis_open_underscore] = ACTIONS(2293), - [sym_inline_note_reference] = ACTIONS(2293), - [sym_html_element] = ACTIONS(2293), - [sym__pandoc_line_break] = ACTIONS(2293), + [STATE(192)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2295), + [sym_block_continuation] = ACTIONS(2295), + [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__blank_line_start] = ACTIONS(2295), + [sym_minus_metadata] = 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_line_break] = ACTIONS(2295), + [sym_grid_table] = ACTIONS(2295), }, - [STATE(182)] = { + [STATE(193)] = { [anon_sym_COLON] = ACTIONS(2299), [sym_entity_reference] = ACTIONS(2299), [sym_numeric_character_reference] = ACTIONS(2299), @@ -43339,8 +44291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2299), [sym_html_element] = ACTIONS(2299), [sym__pandoc_line_break] = ACTIONS(2299), + [sym_grid_table] = ACTIONS(2299), }, - [STATE(183)] = { + [STATE(194)] = { [anon_sym_COLON] = ACTIONS(2305), [sym_entity_reference] = ACTIONS(2305), [sym_numeric_character_reference] = ACTIONS(2305), @@ -43408,8 +44361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2305), [sym_html_element] = ACTIONS(2305), [sym__pandoc_line_break] = ACTIONS(2305), + [sym_grid_table] = ACTIONS(2305), }, - [STATE(184)] = { + [STATE(195)] = { [anon_sym_COLON] = ACTIONS(2311), [sym_entity_reference] = ACTIONS(2311), [sym_numeric_character_reference] = ACTIONS(2311), @@ -43477,8 +44431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2311), [sym_html_element] = ACTIONS(2311), [sym__pandoc_line_break] = ACTIONS(2311), + [sym_grid_table] = ACTIONS(2311), }, - [STATE(185)] = { + [STATE(196)] = { [anon_sym_COLON] = ACTIONS(2317), [sym_entity_reference] = ACTIONS(2317), [sym_numeric_character_reference] = ACTIONS(2317), @@ -43546,8 +44501,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2317), [sym_html_element] = ACTIONS(2317), [sym__pandoc_line_break] = ACTIONS(2317), + [sym_grid_table] = ACTIONS(2317), }, - [STATE(186)] = { + [STATE(197)] = { [anon_sym_COLON] = ACTIONS(2323), [sym_entity_reference] = ACTIONS(2323), [sym_numeric_character_reference] = ACTIONS(2323), @@ -43615,8 +44571,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2323), [sym_html_element] = ACTIONS(2323), [sym__pandoc_line_break] = ACTIONS(2323), + [sym_grid_table] = ACTIONS(2323), }, - [STATE(187)] = { + [STATE(198)] = { [anon_sym_COLON] = ACTIONS(2329), [sym_entity_reference] = ACTIONS(2329), [sym_numeric_character_reference] = ACTIONS(2329), @@ -43684,8 +44641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2329), [sym_html_element] = ACTIONS(2329), [sym__pandoc_line_break] = ACTIONS(2329), + [sym_grid_table] = ACTIONS(2329), }, - [STATE(188)] = { + [STATE(199)] = { [anon_sym_COLON] = ACTIONS(2335), [sym_entity_reference] = ACTIONS(2335), [sym_numeric_character_reference] = ACTIONS(2335), @@ -43753,2699 +44711,3735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2335), [sym_html_element] = ACTIONS(2335), [sym__pandoc_line_break] = ACTIONS(2335), + [sym_grid_table] = ACTIONS(2335), }, - [STATE(189)] = { - [anon_sym_COLON] = ACTIONS(2341), + [STATE(200)] = { + [sym__inlines] = STATE(3077), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1128), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(625), + [sym__inline_whitespace] = STATE(625), [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_line_break] = ACTIONS(2341), - }, - [STATE(190)] = { - [anon_sym_COLON] = ACTIONS(2347), - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2345), [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_line_break] = ACTIONS(2347), - }, - [STATE(191)] = { - [anon_sym_COLON] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), + [aux_sym_target_token1] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_close] = ACTIONS(2353), - [sym_block_continuation] = ACTIONS(2357), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym__fenced_div_end] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), - }, - [STATE(192)] = { - [anon_sym_COLON] = ACTIONS(2359), - [sym_entity_reference] = ACTIONS(2359), - [sym_numeric_character_reference] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_BANG_LBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), [anon_sym_PIPE] = ACTIONS(2359), - [sym__whitespace] = ACTIONS(2359), - [sym__line_ending] = ACTIONS(2359), - [sym__soft_line_ending] = ACTIONS(2359), - [sym__block_close] = ACTIONS(2359), - [sym_block_continuation] = ACTIONS(2363), - [sym__block_quote_start] = ACTIONS(2359), - [sym_atx_h1_marker] = ACTIONS(2359), - [sym_atx_h2_marker] = ACTIONS(2359), - [sym_atx_h3_marker] = ACTIONS(2359), - [sym_atx_h4_marker] = ACTIONS(2359), - [sym_atx_h5_marker] = ACTIONS(2359), - [sym_atx_h6_marker] = ACTIONS(2359), - [sym__thematic_break] = ACTIONS(2359), - [sym__list_marker_minus] = ACTIONS(2359), - [sym__list_marker_plus] = ACTIONS(2359), - [sym__list_marker_star] = ACTIONS(2359), - [sym__list_marker_parenthesis] = ACTIONS(2359), - [sym__list_marker_dot] = ACTIONS(2359), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_example] = ACTIONS(2359), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), - [sym__fenced_code_block_start_backtick] = ACTIONS(2359), - [sym_minus_metadata] = ACTIONS(2359), - [sym__pipe_table_start] = ACTIONS(2359), - [sym__fenced_div_start] = ACTIONS(2359), - [sym__fenced_div_end] = ACTIONS(2359), - [sym_ref_id_specifier] = ACTIONS(2359), - [sym__code_span_start] = ACTIONS(2359), - [sym__html_comment] = ACTIONS(2359), - [sym__autolink] = ACTIONS(2359), - [sym__highlight_span_start] = ACTIONS(2359), - [sym__insert_span_start] = ACTIONS(2359), - [sym__delete_span_start] = ACTIONS(2359), - [sym__edit_comment_span_start] = ACTIONS(2359), - [sym__single_quote_span_open] = ACTIONS(2359), - [sym__double_quote_span_open] = ACTIONS(2359), - [sym__shortcode_open_escaped] = ACTIONS(2359), - [sym__shortcode_open] = ACTIONS(2359), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), - [sym__cite_author_in_text] = ACTIONS(2359), - [sym__cite_suppress_author] = ACTIONS(2359), - [sym__strikeout_open] = ACTIONS(2359), - [sym__subscript_open] = ACTIONS(2359), - [sym__superscript_open] = ACTIONS(2359), - [sym__inline_note_start_token] = ACTIONS(2359), - [sym__strong_emphasis_open_star] = ACTIONS(2359), - [sym__strong_emphasis_open_underscore] = ACTIONS(2359), - [sym__emphasis_open_star] = ACTIONS(2359), - [sym__emphasis_open_underscore] = ACTIONS(2359), - [sym_inline_note_reference] = ACTIONS(2359), - [sym_html_element] = ACTIONS(2359), - [sym__pandoc_line_break] = ACTIONS(2359), - }, - [STATE(193)] = { - [anon_sym_COLON] = ACTIONS(2365), - [sym_entity_reference] = ACTIONS(2365), - [sym_numeric_character_reference] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_BANG_LBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [aux_sym_pandoc_str_token1] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2365), - [sym__whitespace] = ACTIONS(2365), - [sym__line_ending] = ACTIONS(2365), - [sym__soft_line_ending] = ACTIONS(2365), - [sym__block_close] = ACTIONS(2365), - [sym_block_continuation] = ACTIONS(2369), - [sym__block_quote_start] = ACTIONS(2365), - [sym_atx_h1_marker] = ACTIONS(2365), - [sym_atx_h2_marker] = ACTIONS(2365), - [sym_atx_h3_marker] = ACTIONS(2365), - [sym_atx_h4_marker] = ACTIONS(2365), - [sym_atx_h5_marker] = ACTIONS(2365), - [sym_atx_h6_marker] = ACTIONS(2365), - [sym__thematic_break] = ACTIONS(2365), - [sym__list_marker_minus] = ACTIONS(2365), - [sym__list_marker_plus] = ACTIONS(2365), - [sym__list_marker_star] = ACTIONS(2365), - [sym__list_marker_parenthesis] = ACTIONS(2365), - [sym__list_marker_dot] = ACTIONS(2365), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_example] = ACTIONS(2365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), - [sym__fenced_code_block_start_backtick] = ACTIONS(2365), - [sym_minus_metadata] = ACTIONS(2365), - [sym__pipe_table_start] = ACTIONS(2365), - [sym__fenced_div_start] = ACTIONS(2365), - [sym__fenced_div_end] = ACTIONS(2365), - [sym_ref_id_specifier] = ACTIONS(2365), + [sym__whitespace] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2363), [sym__code_span_start] = ACTIONS(2365), - [sym__html_comment] = ACTIONS(2365), - [sym__autolink] = ACTIONS(2365), - [sym__highlight_span_start] = ACTIONS(2365), - [sym__insert_span_start] = ACTIONS(2365), - [sym__delete_span_start] = ACTIONS(2365), - [sym__edit_comment_span_start] = ACTIONS(2365), - [sym__single_quote_span_open] = ACTIONS(2365), - [sym__double_quote_span_open] = ACTIONS(2365), - [sym__shortcode_open_escaped] = ACTIONS(2365), - [sym__shortcode_open] = ACTIONS(2365), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), - [sym__cite_author_in_text] = ACTIONS(2365), - [sym__cite_suppress_author] = ACTIONS(2365), - [sym__strikeout_open] = ACTIONS(2365), - [sym__subscript_open] = ACTIONS(2365), - [sym__superscript_open] = ACTIONS(2365), - [sym__inline_note_start_token] = ACTIONS(2365), - [sym__strong_emphasis_open_star] = ACTIONS(2365), - [sym__strong_emphasis_open_underscore] = ACTIONS(2365), - [sym__emphasis_open_star] = ACTIONS(2365), - [sym__emphasis_open_underscore] = ACTIONS(2365), - [sym_inline_note_reference] = ACTIONS(2365), - [sym_html_element] = ACTIONS(2365), - [sym__pandoc_line_break] = ACTIONS(2365), - }, - [STATE(194)] = { - [anon_sym_COLON] = ACTIONS(2371), - [sym_entity_reference] = ACTIONS(2371), - [sym_numeric_character_reference] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_BANG_LBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [aux_sym_pandoc_str_token1] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2371), - [sym__whitespace] = ACTIONS(2371), - [sym__line_ending] = ACTIONS(2371), - [sym__soft_line_ending] = ACTIONS(2371), - [sym__block_close] = ACTIONS(2371), - [sym_block_continuation] = ACTIONS(2375), - [sym__block_quote_start] = ACTIONS(2371), - [sym_atx_h1_marker] = ACTIONS(2371), - [sym_atx_h2_marker] = ACTIONS(2371), - [sym_atx_h3_marker] = ACTIONS(2371), - [sym_atx_h4_marker] = ACTIONS(2371), - [sym_atx_h5_marker] = ACTIONS(2371), - [sym_atx_h6_marker] = ACTIONS(2371), - [sym__thematic_break] = ACTIONS(2371), - [sym__list_marker_minus] = ACTIONS(2371), - [sym__list_marker_plus] = ACTIONS(2371), - [sym__list_marker_star] = ACTIONS(2371), - [sym__list_marker_parenthesis] = ACTIONS(2371), - [sym__list_marker_dot] = ACTIONS(2371), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_example] = ACTIONS(2371), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), - [sym__fenced_code_block_start_backtick] = ACTIONS(2371), - [sym_minus_metadata] = ACTIONS(2371), - [sym__pipe_table_start] = ACTIONS(2371), - [sym__fenced_div_start] = ACTIONS(2371), - [sym__fenced_div_end] = ACTIONS(2371), - [sym_ref_id_specifier] = ACTIONS(2371), - [sym__code_span_start] = ACTIONS(2371), - [sym__html_comment] = ACTIONS(2371), - [sym__autolink] = ACTIONS(2371), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), [sym__delete_span_start] = ACTIONS(2371), - [sym__edit_comment_span_start] = ACTIONS(2371), - [sym__single_quote_span_open] = ACTIONS(2371), - [sym__double_quote_span_open] = ACTIONS(2371), - [sym__shortcode_open_escaped] = ACTIONS(2371), - [sym__shortcode_open] = ACTIONS(2371), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), - [sym__cite_author_in_text] = ACTIONS(2371), - [sym__cite_suppress_author] = ACTIONS(2371), - [sym__strikeout_open] = ACTIONS(2371), - [sym__subscript_open] = ACTIONS(2371), - [sym__superscript_open] = ACTIONS(2371), - [sym__inline_note_start_token] = ACTIONS(2371), - [sym__strong_emphasis_open_star] = ACTIONS(2371), - [sym__strong_emphasis_open_underscore] = ACTIONS(2371), - [sym__emphasis_open_star] = ACTIONS(2371), - [sym__emphasis_open_underscore] = ACTIONS(2371), - [sym_inline_note_reference] = ACTIONS(2371), - [sym_html_element] = ACTIONS(2371), - [sym__pandoc_line_break] = ACTIONS(2371), - }, - [STATE(195)] = { - [anon_sym_COLON] = ACTIONS(2377), - [sym_entity_reference] = ACTIONS(2377), - [sym_numeric_character_reference] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_BANG_LBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [aux_sym_pandoc_str_token1] = ACTIONS(2379), - [anon_sym_PIPE] = ACTIONS(2377), - [sym__whitespace] = ACTIONS(2377), - [sym__line_ending] = ACTIONS(2377), - [sym__soft_line_ending] = ACTIONS(2377), - [sym__block_close] = ACTIONS(2377), - [sym_block_continuation] = ACTIONS(2381), - [sym__block_quote_start] = ACTIONS(2377), - [sym_atx_h1_marker] = ACTIONS(2377), - [sym_atx_h2_marker] = ACTIONS(2377), - [sym_atx_h3_marker] = ACTIONS(2377), - [sym_atx_h4_marker] = ACTIONS(2377), - [sym_atx_h5_marker] = ACTIONS(2377), - [sym_atx_h6_marker] = ACTIONS(2377), - [sym__thematic_break] = ACTIONS(2377), - [sym__list_marker_minus] = ACTIONS(2377), - [sym__list_marker_plus] = ACTIONS(2377), - [sym__list_marker_star] = ACTIONS(2377), - [sym__list_marker_parenthesis] = ACTIONS(2377), - [sym__list_marker_dot] = ACTIONS(2377), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_example] = ACTIONS(2377), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), - [sym__fenced_code_block_start_backtick] = ACTIONS(2377), - [sym_minus_metadata] = ACTIONS(2377), - [sym__pipe_table_start] = ACTIONS(2377), - [sym__fenced_div_start] = ACTIONS(2377), - [sym__fenced_div_end] = ACTIONS(2377), - [sym_ref_id_specifier] = ACTIONS(2377), - [sym__code_span_start] = ACTIONS(2377), - [sym__html_comment] = ACTIONS(2377), - [sym__autolink] = ACTIONS(2377), - [sym__highlight_span_start] = ACTIONS(2377), - [sym__insert_span_start] = ACTIONS(2377), - [sym__delete_span_start] = ACTIONS(2377), - [sym__edit_comment_span_start] = ACTIONS(2377), - [sym__single_quote_span_open] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), [sym__double_quote_span_open] = ACTIONS(2377), - [sym__shortcode_open_escaped] = ACTIONS(2377), - [sym__shortcode_open] = ACTIONS(2377), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), - [sym__cite_author_in_text] = ACTIONS(2377), - [sym__cite_suppress_author] = ACTIONS(2377), - [sym__strikeout_open] = ACTIONS(2377), - [sym__subscript_open] = ACTIONS(2377), - [sym__superscript_open] = ACTIONS(2377), - [sym__inline_note_start_token] = ACTIONS(2377), - [sym__strong_emphasis_open_star] = ACTIONS(2377), - [sym__strong_emphasis_open_underscore] = ACTIONS(2377), - [sym__emphasis_open_star] = ACTIONS(2377), - [sym__emphasis_open_underscore] = ACTIONS(2377), - [sym_inline_note_reference] = ACTIONS(2377), - [sym_html_element] = ACTIONS(2377), - [sym__pandoc_line_break] = ACTIONS(2377), - }, - [STATE(196)] = { - [anon_sym_COLON] = ACTIONS(2383), - [sym_entity_reference] = ACTIONS(2383), - [sym_numeric_character_reference] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_BANG_LBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [aux_sym_pandoc_str_token1] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2383), - [sym__whitespace] = ACTIONS(2383), - [sym__line_ending] = ACTIONS(2383), - [sym__soft_line_ending] = ACTIONS(2383), - [sym__block_close] = ACTIONS(2383), - [sym_block_continuation] = ACTIONS(2387), - [sym__block_quote_start] = ACTIONS(2383), - [sym_atx_h1_marker] = ACTIONS(2383), - [sym_atx_h2_marker] = ACTIONS(2383), - [sym_atx_h3_marker] = ACTIONS(2383), - [sym_atx_h4_marker] = ACTIONS(2383), - [sym_atx_h5_marker] = ACTIONS(2383), - [sym_atx_h6_marker] = ACTIONS(2383), - [sym__thematic_break] = ACTIONS(2383), - [sym__list_marker_minus] = ACTIONS(2383), - [sym__list_marker_plus] = ACTIONS(2383), - [sym__list_marker_star] = ACTIONS(2383), - [sym__list_marker_parenthesis] = ACTIONS(2383), - [sym__list_marker_dot] = ACTIONS(2383), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_example] = ACTIONS(2383), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), - [sym__fenced_code_block_start_backtick] = ACTIONS(2383), - [sym_minus_metadata] = ACTIONS(2383), - [sym__pipe_table_start] = ACTIONS(2383), - [sym__fenced_div_start] = ACTIONS(2383), - [sym__fenced_div_end] = ACTIONS(2383), - [sym_ref_id_specifier] = ACTIONS(2383), - [sym__code_span_start] = ACTIONS(2383), - [sym__html_comment] = ACTIONS(2383), - [sym__autolink] = ACTIONS(2383), - [sym__highlight_span_start] = ACTIONS(2383), - [sym__insert_span_start] = ACTIONS(2383), - [sym__delete_span_start] = ACTIONS(2383), - [sym__edit_comment_span_start] = ACTIONS(2383), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2383), - [sym__shortcode_open_escaped] = ACTIONS(2383), - [sym__shortcode_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), - [sym__cite_author_in_text] = ACTIONS(2383), - [sym__cite_suppress_author] = ACTIONS(2383), - [sym__strikeout_open] = ACTIONS(2383), - [sym__subscript_open] = ACTIONS(2383), - [sym__superscript_open] = ACTIONS(2383), - [sym__inline_note_start_token] = ACTIONS(2383), - [sym__strong_emphasis_open_star] = ACTIONS(2383), - [sym__strong_emphasis_open_underscore] = ACTIONS(2383), - [sym__emphasis_open_star] = ACTIONS(2383), - [sym__emphasis_open_underscore] = ACTIONS(2383), - [sym_inline_note_reference] = ACTIONS(2383), - [sym_html_element] = ACTIONS(2383), - [sym__pandoc_line_break] = ACTIONS(2383), - }, - [STATE(197)] = { - [sym__inlines] = STATE(3150), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1406), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(634), - [sym__inline_whitespace] = STATE(634), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2389), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2393), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), - }, - [STATE(198)] = { - [sym__inlines] = STATE(3151), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1407), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(635), - [sym__inline_whitespace] = STATE(635), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2395), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2397), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), - }, - [STATE(199)] = { - [anon_sym_COLON] = 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_close] = ACTIONS(2399), - [sym_block_continuation] = ACTIONS(2403), - [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__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), [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_line_break] = ACTIONS(2399), - }, - [STATE(200)] = { - [anon_sym_COLON] = ACTIONS(2405), - [sym_entity_reference] = ACTIONS(2405), - [sym_numeric_character_reference] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_BANG_LBRACK] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [aux_sym_pandoc_str_token1] = ACTIONS(2407), - [anon_sym_PIPE] = ACTIONS(2405), - [sym__whitespace] = ACTIONS(2405), - [sym__line_ending] = ACTIONS(2405), - [sym__soft_line_ending] = ACTIONS(2405), - [sym__block_close] = ACTIONS(2405), - [sym_block_continuation] = ACTIONS(2405), - [sym__block_quote_start] = ACTIONS(2405), - [sym_atx_h1_marker] = ACTIONS(2405), - [sym_atx_h2_marker] = ACTIONS(2405), - [sym_atx_h3_marker] = ACTIONS(2405), - [sym_atx_h4_marker] = ACTIONS(2405), - [sym_atx_h5_marker] = ACTIONS(2405), - [sym_atx_h6_marker] = ACTIONS(2405), - [sym__thematic_break] = ACTIONS(2405), - [sym__list_marker_minus] = ACTIONS(2405), - [sym__list_marker_plus] = ACTIONS(2405), - [sym__list_marker_star] = ACTIONS(2405), - [sym__list_marker_parenthesis] = ACTIONS(2405), - [sym__list_marker_dot] = ACTIONS(2405), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2405), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2405), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2405), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2405), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2405), - [sym__list_marker_example] = ACTIONS(2405), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2405), - [sym__fenced_code_block_start_backtick] = ACTIONS(2405), - [sym__blank_line_start] = ACTIONS(2405), - [sym_minus_metadata] = ACTIONS(2405), - [sym__pipe_table_start] = ACTIONS(2405), - [sym__fenced_div_start] = ACTIONS(2405), - [sym_ref_id_specifier] = ACTIONS(2405), - [sym__code_span_start] = ACTIONS(2405), - [sym__html_comment] = ACTIONS(2405), - [sym__autolink] = ACTIONS(2405), - [sym__highlight_span_start] = ACTIONS(2405), - [sym__insert_span_start] = ACTIONS(2405), - [sym__delete_span_start] = ACTIONS(2405), - [sym__edit_comment_span_start] = ACTIONS(2405), - [sym__single_quote_span_open] = ACTIONS(2405), - [sym__double_quote_span_open] = ACTIONS(2405), - [sym__shortcode_open_escaped] = ACTIONS(2405), - [sym__shortcode_open] = ACTIONS(2405), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2405), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2405), - [sym__cite_author_in_text] = ACTIONS(2405), - [sym__cite_suppress_author] = ACTIONS(2405), - [sym__strikeout_open] = ACTIONS(2405), - [sym__subscript_open] = ACTIONS(2405), - [sym__superscript_open] = ACTIONS(2405), - [sym__inline_note_start_token] = ACTIONS(2405), - [sym__strong_emphasis_open_star] = ACTIONS(2405), - [sym__strong_emphasis_open_underscore] = ACTIONS(2405), - [sym__emphasis_open_star] = ACTIONS(2405), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), [sym__emphasis_open_underscore] = ACTIONS(2405), - [sym_inline_note_reference] = ACTIONS(2405), - [sym_html_element] = ACTIONS(2405), - [sym__pandoc_line_break] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(201)] = { - [sym__inlines] = STATE(3290), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1404), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(649), - [sym__inline_whitespace] = STATE(649), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2409), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2413), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_close] = ACTIONS(2407), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym__fenced_div_end] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), + [sym_grid_table] = ACTIONS(2407), }, [STATE(202)] = { - [sym__inlines] = STATE(3200), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1405), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(624), - [sym__inline_whitespace] = STATE(624), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2415), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2417), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = 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_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__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_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), }, [STATE(203)] = { - [sym__inlines] = STATE(3191), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1488), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(647), - [sym__inline_whitespace] = STATE(647), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2419), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2423), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2415), + [sym_grid_table] = ACTIONS(2415), }, [STATE(204)] = { - [sym__inlines] = STATE(3162), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1489), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(648), - [sym__inline_whitespace] = STATE(648), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2425), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2427), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2299), + [anon_sym_COLON] = ACTIONS(2299), + [sym_entity_reference] = ACTIONS(2299), + [sym_numeric_character_reference] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_BANG_LBRACK] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [aux_sym_pandoc_str_token1] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2299), + [sym__whitespace] = ACTIONS(2299), + [sym__line_ending] = ACTIONS(2299), + [sym__soft_line_ending] = ACTIONS(2299), + [sym_block_continuation] = ACTIONS(2419), + [sym__block_quote_start] = ACTIONS(2299), + [sym_atx_h1_marker] = ACTIONS(2299), + [sym_atx_h2_marker] = ACTIONS(2299), + [sym_atx_h3_marker] = ACTIONS(2299), + [sym_atx_h4_marker] = ACTIONS(2299), + [sym_atx_h5_marker] = ACTIONS(2299), + [sym_atx_h6_marker] = ACTIONS(2299), + [sym__thematic_break] = ACTIONS(2299), + [sym__list_marker_minus] = ACTIONS(2299), + [sym__list_marker_plus] = ACTIONS(2299), + [sym__list_marker_star] = ACTIONS(2299), + [sym__list_marker_parenthesis] = ACTIONS(2299), + [sym__list_marker_dot] = ACTIONS(2299), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_example] = ACTIONS(2299), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), + [sym__fenced_code_block_start_backtick] = ACTIONS(2299), + [sym_minus_metadata] = ACTIONS(2299), + [sym__pipe_table_start] = ACTIONS(2299), + [sym__fenced_div_start] = ACTIONS(2299), + [sym_ref_id_specifier] = ACTIONS(2299), + [sym__code_span_start] = ACTIONS(2299), + [sym__html_comment] = ACTIONS(2299), + [sym__autolink] = ACTIONS(2299), + [sym__highlight_span_start] = ACTIONS(2299), + [sym__insert_span_start] = ACTIONS(2299), + [sym__delete_span_start] = ACTIONS(2299), + [sym__edit_comment_span_start] = ACTIONS(2299), + [sym__single_quote_span_open] = ACTIONS(2299), + [sym__double_quote_span_open] = ACTIONS(2299), + [sym__shortcode_open_escaped] = ACTIONS(2299), + [sym__shortcode_open] = ACTIONS(2299), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), + [sym__cite_author_in_text] = ACTIONS(2299), + [sym__cite_suppress_author] = ACTIONS(2299), + [sym__strikeout_open] = ACTIONS(2299), + [sym__subscript_open] = ACTIONS(2299), + [sym__superscript_open] = ACTIONS(2299), + [sym__inline_note_start_token] = ACTIONS(2299), + [sym__strong_emphasis_open_star] = ACTIONS(2299), + [sym__strong_emphasis_open_underscore] = ACTIONS(2299), + [sym__emphasis_open_star] = ACTIONS(2299), + [sym__emphasis_open_underscore] = ACTIONS(2299), + [sym_inline_note_reference] = ACTIONS(2299), + [sym_html_element] = ACTIONS(2299), + [sym__pandoc_line_break] = ACTIONS(2299), + [sym_grid_table] = ACTIONS(2299), }, [STATE(205)] = { - [sym__inlines] = STATE(3307), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1516), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), + [sym__inlines] = STATE(3152), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1071), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(650), - [sym__inline_whitespace] = STATE(650), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2429), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2433), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(645), + [sym__inline_whitespace] = STATE(645), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2421), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2425), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(206)] = { - [sym__inlines] = STATE(3310), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1517), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(651), - [sym__inline_whitespace] = STATE(651), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2435), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2437), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2207), + [sym_entity_reference] = ACTIONS(2207), + [sym_numeric_character_reference] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_BANG_LBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [aux_sym_pandoc_str_token1] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2207), + [sym__whitespace] = ACTIONS(2207), + [sym__line_ending] = ACTIONS(2207), + [sym__soft_line_ending] = ACTIONS(2207), + [sym__block_close] = ACTIONS(2207), + [sym_block_continuation] = ACTIONS(2427), + [sym__block_quote_start] = ACTIONS(2207), + [sym_atx_h1_marker] = ACTIONS(2207), + [sym_atx_h2_marker] = ACTIONS(2207), + [sym_atx_h3_marker] = ACTIONS(2207), + [sym_atx_h4_marker] = ACTIONS(2207), + [sym_atx_h5_marker] = ACTIONS(2207), + [sym_atx_h6_marker] = ACTIONS(2207), + [sym__thematic_break] = ACTIONS(2207), + [sym__list_marker_minus] = ACTIONS(2207), + [sym__list_marker_plus] = ACTIONS(2207), + [sym__list_marker_star] = ACTIONS(2207), + [sym__list_marker_parenthesis] = ACTIONS(2207), + [sym__list_marker_dot] = ACTIONS(2207), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_example] = ACTIONS(2207), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2207), + [sym__fenced_code_block_start_backtick] = ACTIONS(2207), + [sym_minus_metadata] = ACTIONS(2207), + [sym__pipe_table_start] = ACTIONS(2207), + [sym__fenced_div_start] = ACTIONS(2207), + [sym_ref_id_specifier] = ACTIONS(2207), + [sym__code_span_start] = ACTIONS(2207), + [sym__html_comment] = ACTIONS(2207), + [sym__autolink] = ACTIONS(2207), + [sym__highlight_span_start] = ACTIONS(2207), [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [sym__delete_span_start] = ACTIONS(2207), + [sym__edit_comment_span_start] = ACTIONS(2207), + [sym__single_quote_span_open] = ACTIONS(2207), + [sym__double_quote_span_open] = ACTIONS(2207), + [sym__shortcode_open_escaped] = ACTIONS(2207), + [sym__shortcode_open] = ACTIONS(2207), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2207), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2207), + [sym__cite_author_in_text] = ACTIONS(2207), + [sym__cite_suppress_author] = ACTIONS(2207), + [sym__strikeout_open] = ACTIONS(2207), + [sym__subscript_open] = ACTIONS(2207), + [sym__superscript_open] = ACTIONS(2207), + [sym__inline_note_start_token] = ACTIONS(2207), + [sym__strong_emphasis_open_star] = ACTIONS(2207), + [sym__strong_emphasis_open_underscore] = ACTIONS(2207), + [sym__emphasis_open_star] = ACTIONS(2207), + [sym__emphasis_open_underscore] = ACTIONS(2207), + [sym_inline_note_reference] = ACTIONS(2207), + [sym_html_element] = ACTIONS(2207), + [sym__pandoc_line_break] = ACTIONS(2207), + [sym_grid_table] = ACTIONS(2207), }, [STATE(207)] = { - [sym__inlines] = STATE(3117), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1194), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(632), - [sym__inline_whitespace] = STATE(632), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2439), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2443), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), + [anon_sym_COLON] = 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_close] = ACTIONS(2213), + [sym_block_continuation] = ACTIONS(2429), + [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(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [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_line_break] = ACTIONS(2213), + [sym_grid_table] = ACTIONS(2213), }, [STATE(208)] = { - [sym__inlines] = STATE(3123), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1196), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(613), - [sym__inline_whitespace] = STATE(613), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2447), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), + [anon_sym_COLON] = ACTIONS(2223), + [sym_entity_reference] = ACTIONS(2223), + [sym_numeric_character_reference] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_BANG_LBRACK] = ACTIONS(2223), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [aux_sym_pandoc_str_token1] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2223), + [sym__whitespace] = ACTIONS(2223), + [sym__line_ending] = ACTIONS(2223), + [sym__soft_line_ending] = ACTIONS(2223), + [sym__block_close] = ACTIONS(2223), + [sym_block_continuation] = ACTIONS(2431), + [sym__block_quote_start] = ACTIONS(2223), + [sym_atx_h1_marker] = ACTIONS(2223), + [sym_atx_h2_marker] = ACTIONS(2223), + [sym_atx_h3_marker] = ACTIONS(2223), + [sym_atx_h4_marker] = ACTIONS(2223), + [sym_atx_h5_marker] = ACTIONS(2223), + [sym_atx_h6_marker] = ACTIONS(2223), + [sym__thematic_break] = ACTIONS(2223), + [sym__list_marker_minus] = ACTIONS(2223), + [sym__list_marker_plus] = ACTIONS(2223), + [sym__list_marker_star] = ACTIONS(2223), + [sym__list_marker_parenthesis] = ACTIONS(2223), + [sym__list_marker_dot] = ACTIONS(2223), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_example] = ACTIONS(2223), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2223), + [sym__fenced_code_block_start_backtick] = ACTIONS(2223), + [sym_minus_metadata] = ACTIONS(2223), + [sym__pipe_table_start] = ACTIONS(2223), + [sym__fenced_div_start] = ACTIONS(2223), + [sym_ref_id_specifier] = ACTIONS(2223), + [sym__code_span_start] = ACTIONS(2223), + [sym__html_comment] = ACTIONS(2223), + [sym__autolink] = ACTIONS(2223), + [sym__highlight_span_start] = ACTIONS(2223), + [sym__insert_span_start] = ACTIONS(2223), + [sym__delete_span_start] = ACTIONS(2223), + [sym__edit_comment_span_start] = ACTIONS(2223), + [sym__single_quote_span_open] = ACTIONS(2223), + [sym__double_quote_span_open] = ACTIONS(2223), + [sym__shortcode_open_escaped] = ACTIONS(2223), + [sym__shortcode_open] = ACTIONS(2223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2223), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [sym__cite_author_in_text] = ACTIONS(2223), + [sym__cite_suppress_author] = ACTIONS(2223), + [sym__strikeout_open] = ACTIONS(2223), + [sym__subscript_open] = ACTIONS(2223), + [sym__superscript_open] = ACTIONS(2223), + [sym__inline_note_start_token] = ACTIONS(2223), + [sym__strong_emphasis_open_star] = ACTIONS(2223), + [sym__strong_emphasis_open_underscore] = ACTIONS(2223), + [sym__emphasis_open_star] = ACTIONS(2223), + [sym__emphasis_open_underscore] = ACTIONS(2223), + [sym_inline_note_reference] = ACTIONS(2223), + [sym_html_element] = ACTIONS(2223), + [sym__pandoc_line_break] = ACTIONS(2223), + [sym_grid_table] = ACTIONS(2223), }, [STATE(209)] = { - [sym__inlines] = STATE(3164), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1279), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(614), - [sym__inline_whitespace] = STATE(614), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2449), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2453), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2317), + [sym_entity_reference] = ACTIONS(2317), + [sym_numeric_character_reference] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_BANG_LBRACK] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [aux_sym_pandoc_str_token1] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2317), + [sym__whitespace] = ACTIONS(2317), + [sym__line_ending] = ACTIONS(2317), + [sym__soft_line_ending] = ACTIONS(2317), + [sym__block_close] = ACTIONS(2317), + [sym__block_quote_start] = ACTIONS(2317), + [sym_atx_h1_marker] = ACTIONS(2317), + [sym_atx_h2_marker] = ACTIONS(2317), + [sym_atx_h3_marker] = ACTIONS(2317), + [sym_atx_h4_marker] = ACTIONS(2317), + [sym_atx_h5_marker] = ACTIONS(2317), + [sym_atx_h6_marker] = ACTIONS(2317), + [sym__thematic_break] = ACTIONS(2317), + [sym__list_marker_minus] = ACTIONS(2317), + [sym__list_marker_plus] = ACTIONS(2317), + [sym__list_marker_star] = ACTIONS(2317), + [sym__list_marker_parenthesis] = ACTIONS(2317), + [sym__list_marker_dot] = ACTIONS(2317), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_example] = ACTIONS(2317), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2317), + [sym__fenced_code_block_start_backtick] = ACTIONS(2317), + [sym_minus_metadata] = ACTIONS(2317), + [sym__pipe_table_start] = ACTIONS(2317), + [sym__fenced_div_start] = ACTIONS(2317), + [sym__fenced_div_end] = ACTIONS(2317), + [sym_ref_id_specifier] = ACTIONS(2317), + [sym__code_span_start] = ACTIONS(2317), + [sym__html_comment] = ACTIONS(2317), + [sym__autolink] = ACTIONS(2317), + [sym__highlight_span_start] = ACTIONS(2317), + [sym__insert_span_start] = ACTIONS(2317), + [sym__delete_span_start] = ACTIONS(2317), + [sym__edit_comment_span_start] = ACTIONS(2317), + [sym__single_quote_span_open] = ACTIONS(2317), + [sym__double_quote_span_open] = ACTIONS(2317), + [sym__shortcode_open_escaped] = ACTIONS(2317), + [sym__shortcode_open] = ACTIONS(2317), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2317), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2317), + [sym__cite_author_in_text] = ACTIONS(2317), + [sym__cite_suppress_author] = ACTIONS(2317), + [sym__strikeout_open] = ACTIONS(2317), + [sym__subscript_open] = ACTIONS(2317), + [sym__superscript_open] = ACTIONS(2317), + [sym__inline_note_start_token] = ACTIONS(2317), + [sym__strong_emphasis_open_star] = ACTIONS(2317), + [sym__strong_emphasis_open_underscore] = ACTIONS(2317), + [sym__emphasis_open_star] = ACTIONS(2317), + [sym__emphasis_open_underscore] = ACTIONS(2317), + [sym_inline_note_reference] = ACTIONS(2317), + [sym_html_element] = ACTIONS(2317), + [sym__pandoc_line_break] = ACTIONS(2317), + [sym_grid_table] = ACTIONS(2317), }, [STATE(210)] = { - [sym__inlines] = STATE(3165), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1280), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(615), - [sym__inline_whitespace] = STATE(615), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2455), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2457), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2273), + [anon_sym_COLON] = 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(2433), + [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_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), }, [STATE(211)] = { - [sym__inlines] = STATE(3195), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1307), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(617), - [sym__inline_whitespace] = STATE(617), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2459), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2463), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2323), + [sym_entity_reference] = ACTIONS(2323), + [sym_numeric_character_reference] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_BANG_LBRACK] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [aux_sym_pandoc_str_token1] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2323), + [sym__whitespace] = ACTIONS(2323), + [sym__line_ending] = ACTIONS(2323), + [sym__soft_line_ending] = ACTIONS(2323), + [sym__block_close] = ACTIONS(2323), + [sym__block_quote_start] = ACTIONS(2323), + [sym_atx_h1_marker] = ACTIONS(2323), + [sym_atx_h2_marker] = ACTIONS(2323), + [sym_atx_h3_marker] = ACTIONS(2323), + [sym_atx_h4_marker] = ACTIONS(2323), + [sym_atx_h5_marker] = ACTIONS(2323), + [sym_atx_h6_marker] = ACTIONS(2323), + [sym__thematic_break] = ACTIONS(2323), + [sym__list_marker_minus] = ACTIONS(2323), + [sym__list_marker_plus] = ACTIONS(2323), + [sym__list_marker_star] = ACTIONS(2323), + [sym__list_marker_parenthesis] = ACTIONS(2323), + [sym__list_marker_dot] = ACTIONS(2323), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_example] = ACTIONS(2323), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2323), + [sym__fenced_code_block_start_backtick] = ACTIONS(2323), + [sym_minus_metadata] = ACTIONS(2323), + [sym__pipe_table_start] = ACTIONS(2323), + [sym__fenced_div_start] = ACTIONS(2323), + [sym__fenced_div_end] = ACTIONS(2323), + [sym_ref_id_specifier] = ACTIONS(2323), + [sym__code_span_start] = ACTIONS(2323), + [sym__html_comment] = ACTIONS(2323), + [sym__autolink] = ACTIONS(2323), + [sym__highlight_span_start] = ACTIONS(2323), + [sym__insert_span_start] = ACTIONS(2323), + [sym__delete_span_start] = ACTIONS(2323), + [sym__edit_comment_span_start] = ACTIONS(2323), + [sym__single_quote_span_open] = ACTIONS(2323), + [sym__double_quote_span_open] = ACTIONS(2323), + [sym__shortcode_open_escaped] = ACTIONS(2323), + [sym__shortcode_open] = ACTIONS(2323), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2323), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2323), + [sym__cite_author_in_text] = ACTIONS(2323), + [sym__cite_suppress_author] = ACTIONS(2323), + [sym__strikeout_open] = ACTIONS(2323), + [sym__subscript_open] = ACTIONS(2323), + [sym__superscript_open] = ACTIONS(2323), + [sym__inline_note_start_token] = ACTIONS(2323), + [sym__strong_emphasis_open_star] = ACTIONS(2323), + [sym__strong_emphasis_open_underscore] = ACTIONS(2323), + [sym__emphasis_open_star] = ACTIONS(2323), + [sym__emphasis_open_underscore] = ACTIONS(2323), + [sym_inline_note_reference] = ACTIONS(2323), + [sym_html_element] = ACTIONS(2323), + [sym__pandoc_line_break] = ACTIONS(2323), + [sym_grid_table] = ACTIONS(2323), }, [STATE(212)] = { - [sym__inlines] = STATE(3197), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1308), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(618), - [sym__inline_whitespace] = STATE(618), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2465), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2467), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2279), + [anon_sym_COLON] = 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(2435), + [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_line_break] = ACTIONS(2279), + [sym_grid_table] = ACTIONS(2279), }, [STATE(213)] = { - [sym__inlines] = STATE(3231), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1526), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(622), - [sym__inline_whitespace] = STATE(622), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2469), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2473), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = 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_close] = ACTIONS(2329), + [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_line_break] = ACTIONS(2329), + [sym_grid_table] = ACTIONS(2329), }, [STATE(214)] = { - [sym__inlines] = STATE(3232), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1334), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(623), - [sym__inline_whitespace] = STATE(623), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2475), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2477), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2437), + [sym_grid_table] = ACTIONS(2437), }, [STATE(215)] = { - [sym__inlines] = STATE(3257), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1375), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(625), - [sym__inline_whitespace] = STATE(625), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2479), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2483), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2183), + [sym_entity_reference] = ACTIONS(2183), + [sym_numeric_character_reference] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_BANG_LBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [aux_sym_pandoc_str_token1] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2183), + [sym__whitespace] = ACTIONS(2183), + [sym__line_ending] = ACTIONS(2183), + [sym__soft_line_ending] = ACTIONS(2183), + [sym__block_close] = ACTIONS(2183), + [sym__block_quote_start] = ACTIONS(2183), + [sym_atx_h1_marker] = ACTIONS(2183), + [sym_atx_h2_marker] = ACTIONS(2183), + [sym_atx_h3_marker] = ACTIONS(2183), + [sym_atx_h4_marker] = ACTIONS(2183), + [sym_atx_h5_marker] = ACTIONS(2183), + [sym_atx_h6_marker] = ACTIONS(2183), + [sym__thematic_break] = ACTIONS(2183), + [sym__list_marker_minus] = ACTIONS(2183), + [sym__list_marker_plus] = ACTIONS(2183), + [sym__list_marker_star] = ACTIONS(2183), + [sym__list_marker_parenthesis] = ACTIONS(2183), + [sym__list_marker_dot] = ACTIONS(2183), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_example] = ACTIONS(2183), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2183), + [sym__fenced_code_block_start_backtick] = ACTIONS(2183), + [sym_minus_metadata] = ACTIONS(2183), + [sym__pipe_table_start] = ACTIONS(2183), + [sym__fenced_div_start] = ACTIONS(2183), + [sym__fenced_div_end] = ACTIONS(2183), + [sym_ref_id_specifier] = ACTIONS(2183), + [sym__code_span_start] = ACTIONS(2183), + [sym__html_comment] = ACTIONS(2183), + [sym__autolink] = ACTIONS(2183), + [sym__highlight_span_start] = ACTIONS(2183), + [sym__insert_span_start] = ACTIONS(2183), + [sym__delete_span_start] = ACTIONS(2183), + [sym__edit_comment_span_start] = ACTIONS(2183), + [sym__single_quote_span_open] = ACTIONS(2183), + [sym__double_quote_span_open] = ACTIONS(2183), + [sym__shortcode_open_escaped] = ACTIONS(2183), + [sym__shortcode_open] = ACTIONS(2183), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2183), + [sym__cite_author_in_text] = ACTIONS(2183), + [sym__cite_suppress_author] = ACTIONS(2183), + [sym__strikeout_open] = ACTIONS(2183), + [sym__subscript_open] = ACTIONS(2183), + [sym__superscript_open] = ACTIONS(2183), + [sym__inline_note_start_token] = ACTIONS(2183), + [sym__strong_emphasis_open_star] = ACTIONS(2183), + [sym__strong_emphasis_open_underscore] = ACTIONS(2183), + [sym__emphasis_open_star] = ACTIONS(2183), + [sym__emphasis_open_underscore] = ACTIONS(2183), + [sym_inline_note_reference] = ACTIONS(2183), + [sym_html_element] = ACTIONS(2183), + [sym__pandoc_line_break] = ACTIONS(2183), + [sym_grid_table] = ACTIONS(2183), }, [STATE(216)] = { - [sym__inlines] = STATE(3259), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1376), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(626), - [sym__inline_whitespace] = STATE(626), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2485), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2487), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2311), + [sym_entity_reference] = ACTIONS(2311), + [sym_numeric_character_reference] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_BANG_LBRACK] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [aux_sym_pandoc_str_token1] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2311), + [sym__whitespace] = ACTIONS(2311), + [sym__line_ending] = ACTIONS(2311), + [sym__soft_line_ending] = ACTIONS(2311), + [sym__block_close] = ACTIONS(2311), + [sym_block_continuation] = ACTIONS(2441), + [sym__block_quote_start] = ACTIONS(2311), + [sym_atx_h1_marker] = ACTIONS(2311), + [sym_atx_h2_marker] = ACTIONS(2311), + [sym_atx_h3_marker] = ACTIONS(2311), + [sym_atx_h4_marker] = ACTIONS(2311), + [sym_atx_h5_marker] = ACTIONS(2311), + [sym_atx_h6_marker] = ACTIONS(2311), + [sym__thematic_break] = ACTIONS(2311), + [sym__list_marker_minus] = ACTIONS(2311), + [sym__list_marker_plus] = ACTIONS(2311), + [sym__list_marker_star] = ACTIONS(2311), + [sym__list_marker_parenthesis] = ACTIONS(2311), + [sym__list_marker_dot] = ACTIONS(2311), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_example] = ACTIONS(2311), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), + [sym__fenced_code_block_start_backtick] = ACTIONS(2311), + [sym_minus_metadata] = ACTIONS(2311), + [sym__pipe_table_start] = ACTIONS(2311), + [sym__fenced_div_start] = ACTIONS(2311), + [sym_ref_id_specifier] = ACTIONS(2311), + [sym__code_span_start] = ACTIONS(2311), + [sym__html_comment] = ACTIONS(2311), + [sym__autolink] = ACTIONS(2311), + [sym__highlight_span_start] = ACTIONS(2311), + [sym__insert_span_start] = ACTIONS(2311), + [sym__delete_span_start] = ACTIONS(2311), + [sym__edit_comment_span_start] = ACTIONS(2311), + [sym__single_quote_span_open] = ACTIONS(2311), + [sym__double_quote_span_open] = ACTIONS(2311), + [sym__shortcode_open_escaped] = ACTIONS(2311), + [sym__shortcode_open] = ACTIONS(2311), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), + [sym__cite_author_in_text] = ACTIONS(2311), + [sym__cite_suppress_author] = ACTIONS(2311), + [sym__strikeout_open] = ACTIONS(2311), + [sym__subscript_open] = ACTIONS(2311), + [sym__superscript_open] = ACTIONS(2311), + [sym__inline_note_start_token] = ACTIONS(2311), + [sym__strong_emphasis_open_star] = ACTIONS(2311), + [sym__strong_emphasis_open_underscore] = ACTIONS(2311), + [sym__emphasis_open_star] = ACTIONS(2311), + [sym__emphasis_open_underscore] = ACTIONS(2311), + [sym_inline_note_reference] = ACTIONS(2311), + [sym_html_element] = ACTIONS(2311), + [sym__pandoc_line_break] = ACTIONS(2311), + [sym_grid_table] = ACTIONS(2311), }, [STATE(217)] = { - [sym__inlines] = STATE(3311), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1102), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(629), - [sym__inline_whitespace] = STATE(629), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2489), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2493), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), + [anon_sym_COLON] = 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_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(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [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_line_break] = ACTIONS(2237), + [sym_grid_table] = ACTIONS(2237), }, [STATE(218)] = { - [sym__inlines] = STATE(3073), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1103), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(630), - [sym__inline_whitespace] = STATE(630), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2495), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2497), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2289), + [anon_sym_COLON] = ACTIONS(2289), + [sym_entity_reference] = ACTIONS(2289), + [sym_numeric_character_reference] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_BANG_LBRACK] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [aux_sym_pandoc_str_token1] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2289), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym_block_continuation] = ACTIONS(2443), + [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] = ACTIONS(2289), + [sym__pipe_table_start] = ACTIONS(2289), + [sym__fenced_div_start] = ACTIONS(2289), + [sym_ref_id_specifier] = ACTIONS(2289), + [sym__code_span_start] = ACTIONS(2289), + [sym__html_comment] = ACTIONS(2289), + [sym__autolink] = ACTIONS(2289), + [sym__highlight_span_start] = ACTIONS(2289), + [sym__insert_span_start] = ACTIONS(2289), + [sym__delete_span_start] = ACTIONS(2289), + [sym__edit_comment_span_start] = ACTIONS(2289), + [sym__single_quote_span_open] = ACTIONS(2289), + [sym__double_quote_span_open] = ACTIONS(2289), + [sym__shortcode_open_escaped] = ACTIONS(2289), + [sym__shortcode_open] = ACTIONS(2289), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), + [sym__cite_author_in_text] = ACTIONS(2289), + [sym__cite_suppress_author] = ACTIONS(2289), + [sym__strikeout_open] = ACTIONS(2289), + [sym__subscript_open] = ACTIONS(2289), + [sym__superscript_open] = ACTIONS(2289), + [sym__inline_note_start_token] = ACTIONS(2289), + [sym__strong_emphasis_open_star] = ACTIONS(2289), + [sym__strong_emphasis_open_underscore] = ACTIONS(2289), + [sym__emphasis_open_star] = ACTIONS(2289), + [sym__emphasis_open_underscore] = ACTIONS(2289), + [sym_inline_note_reference] = ACTIONS(2289), + [sym_html_element] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), }, [STATE(219)] = { - [sym__inlines] = STATE(3077), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1128), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(653), - [sym__inline_whitespace] = STATE(653), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2499), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2503), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), + [anon_sym_COLON] = 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_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(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [sym_inline_note_reference] = ACTIONS(2243), + [sym_html_element] = ACTIONS(2243), + [sym__pandoc_line_break] = ACTIONS(2243), + [sym_grid_table] = ACTIONS(2243), }, [STATE(220)] = { - [sym__inlines] = STATE(3078), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1129), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(633), - [sym__inline_whitespace] = STATE(633), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2505), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2507), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2255), + [anon_sym_COLON] = 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_continuation] = ACTIONS(2445), + [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_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), }, [STATE(221)] = { - [sym__inlines] = STATE(3214), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1154), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(636), - [sym__inline_whitespace] = STATE(636), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2509), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2513), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2447), + [sym_entity_reference] = ACTIONS(2447), + [sym_numeric_character_reference] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_BANG_LBRACK] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [aux_sym_pandoc_str_token1] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2447), + [sym__whitespace] = ACTIONS(2447), + [sym__line_ending] = ACTIONS(2447), + [sym__soft_line_ending] = ACTIONS(2447), + [sym__block_close] = ACTIONS(2447), + [sym__block_quote_start] = ACTIONS(2447), + [sym_atx_h1_marker] = ACTIONS(2447), + [sym_atx_h2_marker] = ACTIONS(2447), + [sym_atx_h3_marker] = ACTIONS(2447), + [sym_atx_h4_marker] = ACTIONS(2447), + [sym_atx_h5_marker] = ACTIONS(2447), + [sym_atx_h6_marker] = ACTIONS(2447), + [sym__thematic_break] = ACTIONS(2447), + [sym__list_marker_minus] = ACTIONS(2447), + [sym__list_marker_plus] = ACTIONS(2447), + [sym__list_marker_star] = ACTIONS(2447), + [sym__list_marker_parenthesis] = ACTIONS(2447), + [sym__list_marker_dot] = ACTIONS(2447), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_example] = ACTIONS(2447), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2447), + [sym__fenced_code_block_start_backtick] = ACTIONS(2447), + [sym_minus_metadata] = ACTIONS(2447), + [sym__pipe_table_start] = ACTIONS(2447), + [sym__fenced_div_start] = ACTIONS(2447), + [sym__fenced_div_end] = ACTIONS(2447), + [sym_ref_id_specifier] = ACTIONS(2447), + [sym__code_span_start] = ACTIONS(2447), + [sym__html_comment] = ACTIONS(2447), + [sym__autolink] = ACTIONS(2447), + [sym__highlight_span_start] = ACTIONS(2447), + [sym__insert_span_start] = ACTIONS(2447), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2447), + [sym__single_quote_span_open] = ACTIONS(2447), + [sym__double_quote_span_open] = ACTIONS(2447), + [sym__shortcode_open_escaped] = ACTIONS(2447), + [sym__shortcode_open] = ACTIONS(2447), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2447), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2447), + [sym__cite_author_in_text] = ACTIONS(2447), + [sym__cite_suppress_author] = ACTIONS(2447), + [sym__strikeout_open] = ACTIONS(2447), + [sym__subscript_open] = ACTIONS(2447), + [sym__superscript_open] = ACTIONS(2447), + [sym__inline_note_start_token] = ACTIONS(2447), + [sym__strong_emphasis_open_star] = ACTIONS(2447), + [sym__strong_emphasis_open_underscore] = ACTIONS(2447), + [sym__emphasis_open_star] = ACTIONS(2447), + [sym__emphasis_open_underscore] = ACTIONS(2447), + [sym_inline_note_reference] = ACTIONS(2447), + [sym_html_element] = ACTIONS(2447), + [sym__pandoc_line_break] = ACTIONS(2447), + [sym_grid_table] = ACTIONS(2447), }, [STATE(222)] = { - [sym__inlines] = STATE(3219), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1155), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(637), - [sym__inline_whitespace] = STATE(637), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2515), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2517), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2249), + [sym_grid_table] = ACTIONS(2249), }, [STATE(223)] = { - [sym__inlines] = STATE(3284), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(993), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(639), - [sym__inline_whitespace] = STATE(639), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2519), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2523), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), - }, - [STATE(224)] = { - [sym__inlines] = STATE(3285), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(994), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(640), - [sym__inline_whitespace] = STATE(640), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2525), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2527), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), - }, - [STATE(225)] = { - [sym__inlines] = STATE(3308), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1854), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(642), - [sym__inline_whitespace] = STATE(642), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2529), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2531), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2299), + [sym_entity_reference] = ACTIONS(2299), + [sym_numeric_character_reference] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_BANG_LBRACK] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [aux_sym_pandoc_str_token1] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2299), + [sym__whitespace] = ACTIONS(2299), + [sym__line_ending] = ACTIONS(2299), + [sym__soft_line_ending] = ACTIONS(2299), + [sym__block_close] = ACTIONS(2299), + [sym_block_continuation] = ACTIONS(2451), + [sym__block_quote_start] = ACTIONS(2299), + [sym_atx_h1_marker] = ACTIONS(2299), + [sym_atx_h2_marker] = ACTIONS(2299), + [sym_atx_h3_marker] = ACTIONS(2299), + [sym_atx_h4_marker] = ACTIONS(2299), + [sym_atx_h5_marker] = ACTIONS(2299), + [sym_atx_h6_marker] = ACTIONS(2299), + [sym__thematic_break] = ACTIONS(2299), + [sym__list_marker_minus] = ACTIONS(2299), + [sym__list_marker_plus] = ACTIONS(2299), + [sym__list_marker_star] = ACTIONS(2299), + [sym__list_marker_parenthesis] = ACTIONS(2299), + [sym__list_marker_dot] = ACTIONS(2299), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), + [sym__list_marker_example] = ACTIONS(2299), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), + [sym__fenced_code_block_start_backtick] = ACTIONS(2299), + [sym_minus_metadata] = ACTIONS(2299), + [sym__pipe_table_start] = ACTIONS(2299), + [sym__fenced_div_start] = ACTIONS(2299), + [sym_ref_id_specifier] = ACTIONS(2299), + [sym__code_span_start] = ACTIONS(2299), + [sym__html_comment] = ACTIONS(2299), + [sym__autolink] = ACTIONS(2299), + [sym__highlight_span_start] = ACTIONS(2299), + [sym__insert_span_start] = ACTIONS(2299), + [sym__delete_span_start] = ACTIONS(2299), + [sym__edit_comment_span_start] = ACTIONS(2299), + [sym__single_quote_span_open] = ACTIONS(2299), + [sym__double_quote_span_open] = ACTIONS(2299), + [sym__shortcode_open_escaped] = ACTIONS(2299), + [sym__shortcode_open] = ACTIONS(2299), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), + [sym__cite_author_in_text] = ACTIONS(2299), + [sym__cite_suppress_author] = ACTIONS(2299), + [sym__strikeout_open] = ACTIONS(2299), + [sym__subscript_open] = ACTIONS(2299), + [sym__superscript_open] = ACTIONS(2299), + [sym__inline_note_start_token] = ACTIONS(2299), + [sym__strong_emphasis_open_star] = ACTIONS(2299), + [sym__strong_emphasis_open_underscore] = ACTIONS(2299), + [sym__emphasis_open_star] = ACTIONS(2299), + [sym__emphasis_open_underscore] = ACTIONS(2299), + [sym_inline_note_reference] = ACTIONS(2299), + [sym_html_element] = ACTIONS(2299), + [sym__pandoc_line_break] = ACTIONS(2299), + [sym_grid_table] = ACTIONS(2299), + }, + [STATE(224)] = { + [anon_sym_COLON] = 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_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__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_line_break] = ACTIONS(2453), + [sym_grid_table] = ACTIONS(2453), + }, + [STATE(225)] = { + [anon_sym_COLON] = ACTIONS(2457), + [sym_entity_reference] = ACTIONS(2457), + [sym_numeric_character_reference] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_BANG_LBRACK] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [aux_sym_pandoc_str_token1] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2457), + [sym__whitespace] = ACTIONS(2457), + [sym__line_ending] = ACTIONS(2457), + [sym__soft_line_ending] = ACTIONS(2457), + [sym__block_close] = ACTIONS(2457), + [sym__block_quote_start] = ACTIONS(2457), + [sym_atx_h1_marker] = ACTIONS(2457), + [sym_atx_h2_marker] = ACTIONS(2457), + [sym_atx_h3_marker] = ACTIONS(2457), + [sym_atx_h4_marker] = ACTIONS(2457), + [sym_atx_h5_marker] = ACTIONS(2457), + [sym_atx_h6_marker] = ACTIONS(2457), + [sym__thematic_break] = ACTIONS(2457), + [sym__list_marker_minus] = ACTIONS(2457), + [sym__list_marker_plus] = ACTIONS(2457), + [sym__list_marker_star] = ACTIONS(2457), + [sym__list_marker_parenthesis] = ACTIONS(2457), + [sym__list_marker_dot] = ACTIONS(2457), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_example] = ACTIONS(2457), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), + [sym__fenced_code_block_start_backtick] = ACTIONS(2457), + [sym_minus_metadata] = ACTIONS(2457), + [sym__pipe_table_start] = ACTIONS(2457), + [sym__fenced_div_start] = ACTIONS(2457), + [sym__fenced_div_end] = ACTIONS(2457), + [sym_ref_id_specifier] = ACTIONS(2457), + [sym__code_span_start] = ACTIONS(2457), + [sym__html_comment] = ACTIONS(2457), + [sym__autolink] = ACTIONS(2457), + [sym__highlight_span_start] = ACTIONS(2457), + [sym__insert_span_start] = ACTIONS(2457), + [sym__delete_span_start] = ACTIONS(2457), + [sym__edit_comment_span_start] = ACTIONS(2457), + [sym__single_quote_span_open] = ACTIONS(2457), + [sym__double_quote_span_open] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), + [sym__cite_author_in_text] = ACTIONS(2457), + [sym__cite_suppress_author] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(2457), + [sym__subscript_open] = ACTIONS(2457), + [sym__superscript_open] = ACTIONS(2457), + [sym__inline_note_start_token] = ACTIONS(2457), + [sym__strong_emphasis_open_star] = ACTIONS(2457), + [sym__strong_emphasis_open_underscore] = ACTIONS(2457), + [sym__emphasis_open_star] = ACTIONS(2457), + [sym__emphasis_open_underscore] = ACTIONS(2457), + [sym_inline_note_reference] = ACTIONS(2457), + [sym_html_element] = ACTIONS(2457), + [sym__pandoc_line_break] = ACTIONS(2457), + [sym_grid_table] = ACTIONS(2457), }, [STATE(226)] = { - [sym__inlines] = STATE(3064), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(956), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(644), - [sym__inline_whitespace] = STATE(644), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2533), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = 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_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_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_line_break] = ACTIONS(2461), + [sym_grid_table] = ACTIONS(2461), }, [STATE(227)] = { - [sym__inlines] = STATE(3066), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(957), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(645), - [sym__inline_whitespace] = STATE(645), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2539), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [sym__whitespace] = ACTIONS(2541), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2305), + [sym_entity_reference] = ACTIONS(2305), + [sym_numeric_character_reference] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG_LBRACK] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [aux_sym_pandoc_str_token1] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2305), + [sym__whitespace] = ACTIONS(2305), + [sym__line_ending] = ACTIONS(2305), + [sym__soft_line_ending] = ACTIONS(2305), + [sym__block_close] = ACTIONS(2305), + [sym_block_continuation] = ACTIONS(2465), + [sym__block_quote_start] = ACTIONS(2305), + [sym_atx_h1_marker] = ACTIONS(2305), + [sym_atx_h2_marker] = ACTIONS(2305), + [sym_atx_h3_marker] = ACTIONS(2305), + [sym_atx_h4_marker] = ACTIONS(2305), + [sym_atx_h5_marker] = ACTIONS(2305), + [sym_atx_h6_marker] = ACTIONS(2305), + [sym__thematic_break] = ACTIONS(2305), + [sym__list_marker_minus] = ACTIONS(2305), + [sym__list_marker_plus] = ACTIONS(2305), + [sym__list_marker_star] = ACTIONS(2305), + [sym__list_marker_parenthesis] = ACTIONS(2305), + [sym__list_marker_dot] = ACTIONS(2305), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_example] = ACTIONS(2305), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), + [sym__fenced_code_block_start_backtick] = ACTIONS(2305), + [sym_minus_metadata] = ACTIONS(2305), + [sym__pipe_table_start] = ACTIONS(2305), + [sym__fenced_div_start] = ACTIONS(2305), + [sym_ref_id_specifier] = ACTIONS(2305), + [sym__code_span_start] = ACTIONS(2305), + [sym__html_comment] = ACTIONS(2305), + [sym__autolink] = ACTIONS(2305), + [sym__highlight_span_start] = ACTIONS(2305), + [sym__insert_span_start] = ACTIONS(2305), + [sym__delete_span_start] = ACTIONS(2305), + [sym__edit_comment_span_start] = ACTIONS(2305), + [sym__single_quote_span_open] = ACTIONS(2305), + [sym__double_quote_span_open] = ACTIONS(2305), + [sym__shortcode_open_escaped] = ACTIONS(2305), + [sym__shortcode_open] = ACTIONS(2305), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), + [sym__cite_author_in_text] = ACTIONS(2305), + [sym__cite_suppress_author] = ACTIONS(2305), + [sym__strikeout_open] = ACTIONS(2305), + [sym__subscript_open] = ACTIONS(2305), + [sym__superscript_open] = ACTIONS(2305), + [sym__inline_note_start_token] = ACTIONS(2305), + [sym__strong_emphasis_open_star] = ACTIONS(2305), + [sym__strong_emphasis_open_underscore] = ACTIONS(2305), + [sym__emphasis_open_star] = ACTIONS(2305), + [sym__emphasis_open_underscore] = ACTIONS(2305), + [sym_inline_note_reference] = ACTIONS(2305), + [sym_html_element] = ACTIONS(2305), + [sym__pandoc_line_break] = ACTIONS(2305), + [sym_grid_table] = ACTIONS(2305), }, [STATE(228)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), + }, + [STATE(229)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2335), + [sym_block_continuation] = ACTIONS(2467), + [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_line_break] = ACTIONS(2335), + [sym_grid_table] = ACTIONS(2335), + }, + [STATE(230)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2261), + [sym_grid_table] = ACTIONS(2261), + }, + [STATE(231)] = { + [ts_builtin_sym_end] = ACTIONS(2311), + [anon_sym_COLON] = ACTIONS(2311), + [sym_entity_reference] = ACTIONS(2311), + [sym_numeric_character_reference] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_BANG_LBRACK] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [aux_sym_pandoc_str_token1] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2311), + [sym__whitespace] = ACTIONS(2311), + [sym__line_ending] = ACTIONS(2311), + [sym__soft_line_ending] = ACTIONS(2311), + [sym_block_continuation] = ACTIONS(2469), + [sym__block_quote_start] = ACTIONS(2311), + [sym_atx_h1_marker] = ACTIONS(2311), + [sym_atx_h2_marker] = ACTIONS(2311), + [sym_atx_h3_marker] = ACTIONS(2311), + [sym_atx_h4_marker] = ACTIONS(2311), + [sym_atx_h5_marker] = ACTIONS(2311), + [sym_atx_h6_marker] = ACTIONS(2311), + [sym__thematic_break] = ACTIONS(2311), + [sym__list_marker_minus] = ACTIONS(2311), + [sym__list_marker_plus] = ACTIONS(2311), + [sym__list_marker_star] = ACTIONS(2311), + [sym__list_marker_parenthesis] = ACTIONS(2311), + [sym__list_marker_dot] = ACTIONS(2311), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), + [sym__list_marker_example] = ACTIONS(2311), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), + [sym__fenced_code_block_start_backtick] = ACTIONS(2311), + [sym_minus_metadata] = ACTIONS(2311), + [sym__pipe_table_start] = ACTIONS(2311), + [sym__fenced_div_start] = ACTIONS(2311), + [sym_ref_id_specifier] = ACTIONS(2311), + [sym__code_span_start] = ACTIONS(2311), + [sym__html_comment] = ACTIONS(2311), + [sym__autolink] = ACTIONS(2311), + [sym__highlight_span_start] = ACTIONS(2311), + [sym__insert_span_start] = ACTIONS(2311), + [sym__delete_span_start] = ACTIONS(2311), + [sym__edit_comment_span_start] = ACTIONS(2311), + [sym__single_quote_span_open] = ACTIONS(2311), + [sym__double_quote_span_open] = ACTIONS(2311), + [sym__shortcode_open_escaped] = ACTIONS(2311), + [sym__shortcode_open] = ACTIONS(2311), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), + [sym__cite_author_in_text] = ACTIONS(2311), + [sym__cite_suppress_author] = ACTIONS(2311), + [sym__strikeout_open] = ACTIONS(2311), + [sym__subscript_open] = ACTIONS(2311), + [sym__superscript_open] = ACTIONS(2311), + [sym__inline_note_start_token] = ACTIONS(2311), + [sym__strong_emphasis_open_star] = ACTIONS(2311), + [sym__strong_emphasis_open_underscore] = ACTIONS(2311), + [sym__emphasis_open_star] = ACTIONS(2311), + [sym__emphasis_open_underscore] = ACTIONS(2311), + [sym_inline_note_reference] = ACTIONS(2311), + [sym_html_element] = ACTIONS(2311), + [sym__pandoc_line_break] = ACTIONS(2311), + [sym_grid_table] = ACTIONS(2311), + }, + [STATE(232)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2267), + [sym_grid_table] = ACTIONS(2267), + }, + [STATE(233)] = { + [anon_sym_COLON] = ACTIONS(2471), + [sym_entity_reference] = ACTIONS(2471), + [sym_numeric_character_reference] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_BANG_LBRACK] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [aux_sym_pandoc_str_token1] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2471), + [sym__whitespace] = ACTIONS(2471), + [sym__line_ending] = ACTIONS(2471), + [sym__soft_line_ending] = ACTIONS(2471), + [sym__block_close] = ACTIONS(2471), + [sym__block_quote_start] = ACTIONS(2471), + [sym_atx_h1_marker] = ACTIONS(2471), + [sym_atx_h2_marker] = ACTIONS(2471), + [sym_atx_h3_marker] = ACTIONS(2471), + [sym_atx_h4_marker] = ACTIONS(2471), + [sym_atx_h5_marker] = ACTIONS(2471), + [sym_atx_h6_marker] = ACTIONS(2471), + [sym__thematic_break] = ACTIONS(2471), + [sym__list_marker_minus] = ACTIONS(2471), + [sym__list_marker_plus] = ACTIONS(2471), + [sym__list_marker_star] = ACTIONS(2471), + [sym__list_marker_parenthesis] = ACTIONS(2471), + [sym__list_marker_dot] = ACTIONS(2471), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_example] = ACTIONS(2471), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2471), + [sym__fenced_code_block_start_backtick] = ACTIONS(2471), + [sym_minus_metadata] = ACTIONS(2471), + [sym__pipe_table_start] = ACTIONS(2471), + [sym__fenced_div_start] = ACTIONS(2471), + [sym__fenced_div_end] = ACTIONS(2471), + [sym_ref_id_specifier] = ACTIONS(2471), + [sym__code_span_start] = ACTIONS(2471), + [sym__html_comment] = ACTIONS(2471), + [sym__autolink] = ACTIONS(2471), + [sym__highlight_span_start] = ACTIONS(2471), + [sym__insert_span_start] = ACTIONS(2471), + [sym__delete_span_start] = ACTIONS(2471), + [sym__edit_comment_span_start] = ACTIONS(2471), + [sym__single_quote_span_open] = ACTIONS(2471), + [sym__double_quote_span_open] = ACTIONS(2471), + [sym__shortcode_open_escaped] = ACTIONS(2471), + [sym__shortcode_open] = ACTIONS(2471), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2471), + [sym__cite_author_in_text] = ACTIONS(2471), + [sym__cite_suppress_author] = ACTIONS(2471), + [sym__strikeout_open] = ACTIONS(2471), + [sym__subscript_open] = ACTIONS(2471), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2471), + [sym__strong_emphasis_open_star] = ACTIONS(2471), + [sym__strong_emphasis_open_underscore] = ACTIONS(2471), + [sym__emphasis_open_star] = ACTIONS(2471), + [sym__emphasis_open_underscore] = ACTIONS(2471), + [sym_inline_note_reference] = ACTIONS(2471), + [sym_html_element] = ACTIONS(2471), + [sym__pandoc_line_break] = ACTIONS(2471), + [sym_grid_table] = ACTIONS(2471), + }, + [STATE(234)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), + }, + [STATE(235)] = { + [anon_sym_COLON] = ACTIONS(2475), + [sym_entity_reference] = ACTIONS(2475), + [sym_numeric_character_reference] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_BANG_LBRACK] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [aux_sym_pandoc_str_token1] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2475), + [sym__whitespace] = ACTIONS(2475), + [sym__line_ending] = ACTIONS(2475), + [sym__soft_line_ending] = ACTIONS(2475), + [sym__block_close] = ACTIONS(2475), + [sym__block_quote_start] = ACTIONS(2475), + [sym_atx_h1_marker] = ACTIONS(2475), + [sym_atx_h2_marker] = ACTIONS(2475), + [sym_atx_h3_marker] = ACTIONS(2475), + [sym_atx_h4_marker] = ACTIONS(2475), + [sym_atx_h5_marker] = ACTIONS(2475), + [sym_atx_h6_marker] = ACTIONS(2475), + [sym__thematic_break] = ACTIONS(2475), + [sym__list_marker_minus] = ACTIONS(2475), + [sym__list_marker_plus] = ACTIONS(2475), + [sym__list_marker_star] = ACTIONS(2475), + [sym__list_marker_parenthesis] = ACTIONS(2475), + [sym__list_marker_dot] = ACTIONS(2475), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_example] = ACTIONS(2475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2475), + [sym__fenced_code_block_start_backtick] = ACTIONS(2475), + [sym_minus_metadata] = ACTIONS(2475), + [sym__pipe_table_start] = ACTIONS(2475), + [sym__fenced_div_start] = ACTIONS(2475), + [sym__fenced_div_end] = ACTIONS(2475), + [sym_ref_id_specifier] = ACTIONS(2475), + [sym__code_span_start] = ACTIONS(2475), + [sym__html_comment] = ACTIONS(2475), + [sym__autolink] = ACTIONS(2475), + [sym__highlight_span_start] = ACTIONS(2475), + [sym__insert_span_start] = ACTIONS(2475), + [sym__delete_span_start] = ACTIONS(2475), + [sym__edit_comment_span_start] = ACTIONS(2475), + [sym__single_quote_span_open] = ACTIONS(2475), + [sym__double_quote_span_open] = ACTIONS(2475), + [sym__shortcode_open_escaped] = ACTIONS(2475), + [sym__shortcode_open] = ACTIONS(2475), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2475), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2475), + [sym__cite_author_in_text] = ACTIONS(2475), + [sym__cite_suppress_author] = ACTIONS(2475), + [sym__strikeout_open] = ACTIONS(2475), + [sym__subscript_open] = ACTIONS(2475), + [sym__superscript_open] = ACTIONS(2475), + [sym__inline_note_start_token] = ACTIONS(2475), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2475), + [sym__emphasis_open_star] = ACTIONS(2475), + [sym__emphasis_open_underscore] = ACTIONS(2475), + [sym_inline_note_reference] = ACTIONS(2475), + [sym_html_element] = ACTIONS(2475), + [sym__pandoc_line_break] = ACTIONS(2475), + [sym_grid_table] = ACTIONS(2475), + }, + [STATE(236)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2279), + [sym_grid_table] = ACTIONS(2279), + }, + [STATE(237)] = { + [anon_sym_COLON] = ACTIONS(2479), + [sym_entity_reference] = ACTIONS(2479), + [sym_numeric_character_reference] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_BANG_LBRACK] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [aux_sym_pandoc_str_token1] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2479), + [sym__whitespace] = ACTIONS(2479), + [sym__line_ending] = ACTIONS(2479), + [sym__soft_line_ending] = ACTIONS(2479), + [sym__block_close] = ACTIONS(2479), + [sym__block_quote_start] = ACTIONS(2479), + [sym_atx_h1_marker] = ACTIONS(2479), + [sym_atx_h2_marker] = ACTIONS(2479), + [sym_atx_h3_marker] = ACTIONS(2479), + [sym_atx_h4_marker] = ACTIONS(2479), + [sym_atx_h5_marker] = ACTIONS(2479), + [sym_atx_h6_marker] = ACTIONS(2479), + [sym__thematic_break] = ACTIONS(2479), + [sym__list_marker_minus] = ACTIONS(2479), + [sym__list_marker_plus] = ACTIONS(2479), + [sym__list_marker_star] = ACTIONS(2479), + [sym__list_marker_parenthesis] = ACTIONS(2479), + [sym__list_marker_dot] = ACTIONS(2479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_example] = ACTIONS(2479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2479), + [sym__fenced_code_block_start_backtick] = ACTIONS(2479), + [sym_minus_metadata] = ACTIONS(2479), + [sym__pipe_table_start] = ACTIONS(2479), + [sym__fenced_div_start] = ACTIONS(2479), + [sym__fenced_div_end] = ACTIONS(2479), + [sym_ref_id_specifier] = ACTIONS(2479), + [sym__code_span_start] = ACTIONS(2479), + [sym__html_comment] = ACTIONS(2479), + [sym__autolink] = ACTIONS(2479), + [sym__highlight_span_start] = ACTIONS(2479), + [sym__insert_span_start] = ACTIONS(2479), + [sym__delete_span_start] = ACTIONS(2479), + [sym__edit_comment_span_start] = ACTIONS(2479), + [sym__single_quote_span_open] = ACTIONS(2479), + [sym__double_quote_span_open] = ACTIONS(2479), + [sym__shortcode_open_escaped] = ACTIONS(2479), + [sym__shortcode_open] = ACTIONS(2479), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2479), + [sym__cite_author_in_text] = ACTIONS(2479), + [sym__cite_suppress_author] = ACTIONS(2479), + [sym__strikeout_open] = ACTIONS(2479), + [sym__subscript_open] = ACTIONS(2479), + [sym__superscript_open] = ACTIONS(2479), + [sym__inline_note_start_token] = ACTIONS(2479), + [sym__strong_emphasis_open_star] = ACTIONS(2479), + [sym__strong_emphasis_open_underscore] = ACTIONS(2479), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2479), + [sym_inline_note_reference] = ACTIONS(2479), + [sym_html_element] = ACTIONS(2479), + [sym__pandoc_line_break] = ACTIONS(2479), + [sym_grid_table] = ACTIONS(2479), + }, + [STATE(238)] = { + [anon_sym_COLON] = ACTIONS(2289), + [sym_entity_reference] = ACTIONS(2289), + [sym_numeric_character_reference] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_BANG_LBRACK] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [aux_sym_pandoc_str_token1] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2289), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym__block_close] = ACTIONS(2289), + [sym__block_quote_start] = ACTIONS(2289), + [sym_atx_h1_marker] = ACTIONS(2289), + [sym_atx_h2_marker] = ACTIONS(2289), + [sym_atx_h3_marker] = ACTIONS(2289), + [sym_atx_h4_marker] = ACTIONS(2289), + [sym_atx_h5_marker] = ACTIONS(2289), + [sym_atx_h6_marker] = ACTIONS(2289), + [sym__thematic_break] = ACTIONS(2289), + [sym__list_marker_minus] = ACTIONS(2289), + [sym__list_marker_plus] = ACTIONS(2289), + [sym__list_marker_star] = ACTIONS(2289), + [sym__list_marker_parenthesis] = ACTIONS(2289), + [sym__list_marker_dot] = ACTIONS(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] = ACTIONS(2289), + [sym__pipe_table_start] = ACTIONS(2289), + [sym__fenced_div_start] = ACTIONS(2289), + [sym__fenced_div_end] = ACTIONS(2289), + [sym_ref_id_specifier] = ACTIONS(2289), + [sym__code_span_start] = ACTIONS(2289), + [sym__html_comment] = ACTIONS(2289), + [sym__autolink] = ACTIONS(2289), + [sym__highlight_span_start] = ACTIONS(2289), + [sym__insert_span_start] = ACTIONS(2289), + [sym__delete_span_start] = ACTIONS(2289), + [sym__edit_comment_span_start] = ACTIONS(2289), + [sym__single_quote_span_open] = ACTIONS(2289), + [sym__double_quote_span_open] = ACTIONS(2289), + [sym__shortcode_open_escaped] = ACTIONS(2289), + [sym__shortcode_open] = ACTIONS(2289), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), + [sym__cite_author_in_text] = ACTIONS(2289), + [sym__cite_suppress_author] = ACTIONS(2289), + [sym__strikeout_open] = ACTIONS(2289), + [sym__subscript_open] = ACTIONS(2289), + [sym__superscript_open] = ACTIONS(2289), + [sym__inline_note_start_token] = ACTIONS(2289), + [sym__strong_emphasis_open_star] = ACTIONS(2289), + [sym__strong_emphasis_open_underscore] = ACTIONS(2289), + [sym__emphasis_open_star] = ACTIONS(2289), + [sym__emphasis_open_underscore] = ACTIONS(2289), + [sym_inline_note_reference] = ACTIONS(2289), + [sym_html_element] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + }, + [STATE(239)] = { + [anon_sym_COLON] = ACTIONS(2483), + [sym_entity_reference] = ACTIONS(2483), + [sym_numeric_character_reference] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_BANG_LBRACK] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [aux_sym_pandoc_str_token1] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2483), + [sym__whitespace] = ACTIONS(2483), + [sym__line_ending] = ACTIONS(2483), + [sym__soft_line_ending] = ACTIONS(2483), + [sym__block_close] = ACTIONS(2483), + [sym__block_quote_start] = ACTIONS(2483), + [sym_atx_h1_marker] = ACTIONS(2483), + [sym_atx_h2_marker] = ACTIONS(2483), + [sym_atx_h3_marker] = ACTIONS(2483), + [sym_atx_h4_marker] = ACTIONS(2483), + [sym_atx_h5_marker] = ACTIONS(2483), + [sym_atx_h6_marker] = ACTIONS(2483), + [sym__thematic_break] = ACTIONS(2483), + [sym__list_marker_minus] = ACTIONS(2483), + [sym__list_marker_plus] = ACTIONS(2483), + [sym__list_marker_star] = ACTIONS(2483), + [sym__list_marker_parenthesis] = ACTIONS(2483), + [sym__list_marker_dot] = ACTIONS(2483), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_example] = ACTIONS(2483), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2483), + [sym__fenced_code_block_start_backtick] = ACTIONS(2483), + [sym_minus_metadata] = ACTIONS(2483), + [sym__pipe_table_start] = ACTIONS(2483), + [sym__fenced_div_start] = ACTIONS(2483), + [sym__fenced_div_end] = ACTIONS(2483), + [sym_ref_id_specifier] = ACTIONS(2483), + [sym__code_span_start] = ACTIONS(2483), + [sym__html_comment] = ACTIONS(2483), + [sym__autolink] = ACTIONS(2483), + [sym__highlight_span_start] = ACTIONS(2483), + [sym__insert_span_start] = ACTIONS(2483), + [sym__delete_span_start] = ACTIONS(2483), + [sym__edit_comment_span_start] = ACTIONS(2483), + [sym__single_quote_span_open] = ACTIONS(2483), + [sym__double_quote_span_open] = ACTIONS(2483), + [sym__shortcode_open_escaped] = ACTIONS(2483), + [sym__shortcode_open] = ACTIONS(2483), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2483), + [sym__cite_author_in_text] = ACTIONS(2483), + [sym__cite_suppress_author] = ACTIONS(2483), + [sym__strikeout_open] = ACTIONS(2483), + [sym__subscript_open] = ACTIONS(2483), + [sym__superscript_open] = ACTIONS(2483), + [sym__inline_note_start_token] = ACTIONS(2483), + [sym__strong_emphasis_open_star] = ACTIONS(2483), + [sym__strong_emphasis_open_underscore] = ACTIONS(2483), + [sym__emphasis_open_star] = ACTIONS(2483), + [sym__emphasis_open_underscore] = ACTIONS(2483), + [sym_inline_note_reference] = ACTIONS(2483), + [sym_html_element] = ACTIONS(2483), + [sym__pandoc_line_break] = ACTIONS(2483), + [sym_grid_table] = ACTIONS(2483), + }, + [STATE(240)] = { + [anon_sym_COLON] = ACTIONS(2487), + [sym_entity_reference] = ACTIONS(2487), + [sym_numeric_character_reference] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_BANG_LBRACK] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [aux_sym_pandoc_str_token1] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2487), + [sym__whitespace] = ACTIONS(2487), + [sym__line_ending] = ACTIONS(2487), + [sym__soft_line_ending] = ACTIONS(2487), + [sym__block_close] = ACTIONS(2487), + [sym__block_quote_start] = ACTIONS(2487), + [sym_atx_h1_marker] = ACTIONS(2487), + [sym_atx_h2_marker] = ACTIONS(2487), + [sym_atx_h3_marker] = ACTIONS(2487), + [sym_atx_h4_marker] = ACTIONS(2487), + [sym_atx_h5_marker] = ACTIONS(2487), + [sym_atx_h6_marker] = ACTIONS(2487), + [sym__thematic_break] = ACTIONS(2487), + [sym__list_marker_minus] = ACTIONS(2487), + [sym__list_marker_plus] = ACTIONS(2487), + [sym__list_marker_star] = ACTIONS(2487), + [sym__list_marker_parenthesis] = ACTIONS(2487), + [sym__list_marker_dot] = ACTIONS(2487), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_example] = ACTIONS(2487), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2487), + [sym__fenced_code_block_start_backtick] = ACTIONS(2487), + [sym_minus_metadata] = ACTIONS(2487), + [sym__pipe_table_start] = ACTIONS(2487), + [sym__fenced_div_start] = ACTIONS(2487), + [sym__fenced_div_end] = ACTIONS(2487), + [sym_ref_id_specifier] = ACTIONS(2487), + [sym__code_span_start] = ACTIONS(2487), + [sym__html_comment] = ACTIONS(2487), + [sym__autolink] = ACTIONS(2487), + [sym__highlight_span_start] = ACTIONS(2487), + [sym__insert_span_start] = ACTIONS(2487), + [sym__delete_span_start] = ACTIONS(2487), + [sym__edit_comment_span_start] = ACTIONS(2487), + [sym__single_quote_span_open] = ACTIONS(2487), + [sym__double_quote_span_open] = ACTIONS(2487), + [sym__shortcode_open_escaped] = ACTIONS(2487), + [sym__shortcode_open] = ACTIONS(2487), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2487), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), + [sym__cite_author_in_text] = ACTIONS(2487), + [sym__cite_suppress_author] = ACTIONS(2487), + [sym__strikeout_open] = ACTIONS(2487), + [sym__subscript_open] = ACTIONS(2487), + [sym__superscript_open] = ACTIONS(2487), + [sym__inline_note_start_token] = ACTIONS(2487), + [sym__strong_emphasis_open_star] = ACTIONS(2487), + [sym__strong_emphasis_open_underscore] = ACTIONS(2487), + [sym__emphasis_open_star] = ACTIONS(2487), + [sym__emphasis_open_underscore] = ACTIONS(2487), + [sym_inline_note_reference] = ACTIONS(2487), + [sym_html_element] = ACTIONS(2487), + [sym__pandoc_line_break] = ACTIONS(2487), + [sym_grid_table] = ACTIONS(2487), + }, + [STATE(241)] = { + [anon_sym_COLON] = ACTIONS(2491), + [sym_entity_reference] = ACTIONS(2491), + [sym_numeric_character_reference] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_BANG_LBRACK] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2493), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [aux_sym_pandoc_str_token1] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2491), + [sym__whitespace] = ACTIONS(2491), + [sym__line_ending] = ACTIONS(2491), + [sym__soft_line_ending] = ACTIONS(2491), + [sym__block_close] = ACTIONS(2491), + [sym__block_quote_start] = ACTIONS(2491), + [sym_atx_h1_marker] = ACTIONS(2491), + [sym_atx_h2_marker] = ACTIONS(2491), + [sym_atx_h3_marker] = ACTIONS(2491), + [sym_atx_h4_marker] = ACTIONS(2491), + [sym_atx_h5_marker] = ACTIONS(2491), + [sym_atx_h6_marker] = ACTIONS(2491), + [sym__thematic_break] = ACTIONS(2491), + [sym__list_marker_minus] = ACTIONS(2491), + [sym__list_marker_plus] = ACTIONS(2491), + [sym__list_marker_star] = ACTIONS(2491), + [sym__list_marker_parenthesis] = ACTIONS(2491), + [sym__list_marker_dot] = ACTIONS(2491), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_example] = ACTIONS(2491), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2491), + [sym__fenced_code_block_start_backtick] = ACTIONS(2491), + [sym_minus_metadata] = ACTIONS(2491), + [sym__pipe_table_start] = ACTIONS(2491), + [sym__fenced_div_start] = ACTIONS(2491), + [sym__fenced_div_end] = ACTIONS(2491), + [sym_ref_id_specifier] = ACTIONS(2491), + [sym__code_span_start] = ACTIONS(2491), + [sym__html_comment] = ACTIONS(2491), + [sym__autolink] = ACTIONS(2491), + [sym__highlight_span_start] = ACTIONS(2491), + [sym__insert_span_start] = ACTIONS(2491), + [sym__delete_span_start] = ACTIONS(2491), + [sym__edit_comment_span_start] = ACTIONS(2491), + [sym__single_quote_span_open] = ACTIONS(2491), + [sym__double_quote_span_open] = ACTIONS(2491), + [sym__shortcode_open_escaped] = ACTIONS(2491), + [sym__shortcode_open] = ACTIONS(2491), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2491), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2491), + [sym__cite_author_in_text] = ACTIONS(2491), + [sym__cite_suppress_author] = ACTIONS(2491), + [sym__strikeout_open] = ACTIONS(2491), + [sym__subscript_open] = ACTIONS(2491), + [sym__superscript_open] = ACTIONS(2491), + [sym__inline_note_start_token] = ACTIONS(2491), + [sym__strong_emphasis_open_star] = ACTIONS(2491), + [sym__strong_emphasis_open_underscore] = ACTIONS(2491), + [sym__emphasis_open_star] = ACTIONS(2491), + [sym__emphasis_open_underscore] = ACTIONS(2491), + [sym_inline_note_reference] = ACTIONS(2491), + [sym_html_element] = ACTIONS(2491), + [sym__pandoc_line_break] = ACTIONS(2491), + [sym_grid_table] = ACTIONS(2491), + }, + [STATE(242)] = { + [anon_sym_COLON] = ACTIONS(2495), + [sym_entity_reference] = ACTIONS(2495), + [sym_numeric_character_reference] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_BANG_LBRACK] = ACTIONS(2495), + [anon_sym_DOLLAR] = ACTIONS(2497), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [aux_sym_pandoc_str_token1] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2495), + [sym__whitespace] = ACTIONS(2495), + [sym__line_ending] = ACTIONS(2495), + [sym__soft_line_ending] = ACTIONS(2495), + [sym__block_close] = ACTIONS(2495), + [sym__block_quote_start] = ACTIONS(2495), + [sym_atx_h1_marker] = ACTIONS(2495), + [sym_atx_h2_marker] = ACTIONS(2495), + [sym_atx_h3_marker] = ACTIONS(2495), + [sym_atx_h4_marker] = ACTIONS(2495), + [sym_atx_h5_marker] = ACTIONS(2495), + [sym_atx_h6_marker] = ACTIONS(2495), + [sym__thematic_break] = ACTIONS(2495), + [sym__list_marker_minus] = ACTIONS(2495), + [sym__list_marker_plus] = ACTIONS(2495), + [sym__list_marker_star] = ACTIONS(2495), + [sym__list_marker_parenthesis] = ACTIONS(2495), + [sym__list_marker_dot] = ACTIONS(2495), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_example] = ACTIONS(2495), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2495), + [sym__fenced_code_block_start_backtick] = ACTIONS(2495), + [sym_minus_metadata] = ACTIONS(2495), + [sym__pipe_table_start] = ACTIONS(2495), + [sym__fenced_div_start] = ACTIONS(2495), + [sym__fenced_div_end] = ACTIONS(2495), + [sym_ref_id_specifier] = ACTIONS(2495), + [sym__code_span_start] = ACTIONS(2495), + [sym__html_comment] = ACTIONS(2495), + [sym__autolink] = ACTIONS(2495), + [sym__highlight_span_start] = ACTIONS(2495), + [sym__insert_span_start] = ACTIONS(2495), + [sym__delete_span_start] = ACTIONS(2495), + [sym__edit_comment_span_start] = ACTIONS(2495), + [sym__single_quote_span_open] = ACTIONS(2495), + [sym__double_quote_span_open] = ACTIONS(2495), + [sym__shortcode_open_escaped] = ACTIONS(2495), + [sym__shortcode_open] = ACTIONS(2495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2495), + [sym__cite_author_in_text] = ACTIONS(2495), + [sym__cite_suppress_author] = ACTIONS(2495), + [sym__strikeout_open] = ACTIONS(2495), + [sym__subscript_open] = ACTIONS(2495), + [sym__superscript_open] = ACTIONS(2495), + [sym__inline_note_start_token] = ACTIONS(2495), + [sym__strong_emphasis_open_star] = ACTIONS(2495), + [sym__strong_emphasis_open_underscore] = ACTIONS(2495), + [sym__emphasis_open_star] = ACTIONS(2495), + [sym__emphasis_open_underscore] = ACTIONS(2495), + [sym_inline_note_reference] = ACTIONS(2495), + [sym_html_element] = ACTIONS(2495), + [sym__pandoc_line_break] = ACTIONS(2495), + [sym_grid_table] = ACTIONS(2495), + }, + [STATE(243)] = { + [anon_sym_COLON] = ACTIONS(2499), + [sym_entity_reference] = ACTIONS(2499), + [sym_numeric_character_reference] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_BANG_LBRACK] = ACTIONS(2499), + [anon_sym_DOLLAR] = ACTIONS(2501), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [aux_sym_pandoc_str_token1] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2499), + [sym__whitespace] = ACTIONS(2499), + [sym__line_ending] = ACTIONS(2499), + [sym__soft_line_ending] = ACTIONS(2499), + [sym__block_close] = ACTIONS(2499), + [sym__block_quote_start] = ACTIONS(2499), + [sym_atx_h1_marker] = ACTIONS(2499), + [sym_atx_h2_marker] = ACTIONS(2499), + [sym_atx_h3_marker] = ACTIONS(2499), + [sym_atx_h4_marker] = ACTIONS(2499), + [sym_atx_h5_marker] = ACTIONS(2499), + [sym_atx_h6_marker] = ACTIONS(2499), + [sym__thematic_break] = ACTIONS(2499), + [sym__list_marker_minus] = ACTIONS(2499), + [sym__list_marker_plus] = ACTIONS(2499), + [sym__list_marker_star] = ACTIONS(2499), + [sym__list_marker_parenthesis] = ACTIONS(2499), + [sym__list_marker_dot] = ACTIONS(2499), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_example] = ACTIONS(2499), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2499), + [sym__fenced_code_block_start_backtick] = ACTIONS(2499), + [sym_minus_metadata] = ACTIONS(2499), + [sym__pipe_table_start] = ACTIONS(2499), + [sym__fenced_div_start] = ACTIONS(2499), + [sym__fenced_div_end] = ACTIONS(2499), + [sym_ref_id_specifier] = ACTIONS(2499), + [sym__code_span_start] = ACTIONS(2499), + [sym__html_comment] = ACTIONS(2499), + [sym__autolink] = ACTIONS(2499), + [sym__highlight_span_start] = ACTIONS(2499), + [sym__insert_span_start] = ACTIONS(2499), + [sym__delete_span_start] = ACTIONS(2499), + [sym__edit_comment_span_start] = ACTIONS(2499), + [sym__single_quote_span_open] = ACTIONS(2499), + [sym__double_quote_span_open] = ACTIONS(2499), + [sym__shortcode_open_escaped] = ACTIONS(2499), + [sym__shortcode_open] = ACTIONS(2499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2499), + [sym__cite_author_in_text] = ACTIONS(2499), + [sym__cite_suppress_author] = ACTIONS(2499), + [sym__strikeout_open] = ACTIONS(2499), + [sym__subscript_open] = ACTIONS(2499), + [sym__superscript_open] = ACTIONS(2499), + [sym__inline_note_start_token] = ACTIONS(2499), + [sym__strong_emphasis_open_star] = ACTIONS(2499), + [sym__strong_emphasis_open_underscore] = ACTIONS(2499), + [sym__emphasis_open_star] = ACTIONS(2499), + [sym__emphasis_open_underscore] = ACTIONS(2499), + [sym_inline_note_reference] = ACTIONS(2499), + [sym_html_element] = ACTIONS(2499), + [sym__pandoc_line_break] = ACTIONS(2499), + [sym_grid_table] = ACTIONS(2499), + }, + [STATE(244)] = { + [anon_sym_COLON] = ACTIONS(2503), + [sym_entity_reference] = ACTIONS(2503), + [sym_numeric_character_reference] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_BANG_LBRACK] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [aux_sym_pandoc_str_token1] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2503), + [sym__whitespace] = ACTIONS(2503), + [sym__line_ending] = ACTIONS(2503), + [sym__soft_line_ending] = ACTIONS(2503), + [sym__block_close] = ACTIONS(2503), + [sym__block_quote_start] = ACTIONS(2503), + [sym_atx_h1_marker] = ACTIONS(2503), + [sym_atx_h2_marker] = ACTIONS(2503), + [sym_atx_h3_marker] = ACTIONS(2503), + [sym_atx_h4_marker] = ACTIONS(2503), + [sym_atx_h5_marker] = ACTIONS(2503), + [sym_atx_h6_marker] = ACTIONS(2503), + [sym__thematic_break] = ACTIONS(2503), + [sym__list_marker_minus] = ACTIONS(2503), + [sym__list_marker_plus] = ACTIONS(2503), + [sym__list_marker_star] = ACTIONS(2503), + [sym__list_marker_parenthesis] = ACTIONS(2503), + [sym__list_marker_dot] = ACTIONS(2503), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_example] = ACTIONS(2503), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2503), + [sym__fenced_code_block_start_backtick] = ACTIONS(2503), + [sym_minus_metadata] = ACTIONS(2503), + [sym__pipe_table_start] = ACTIONS(2503), + [sym__fenced_div_start] = ACTIONS(2503), + [sym__fenced_div_end] = ACTIONS(2503), + [sym_ref_id_specifier] = ACTIONS(2503), + [sym__code_span_start] = ACTIONS(2503), + [sym__html_comment] = ACTIONS(2503), + [sym__autolink] = ACTIONS(2503), + [sym__highlight_span_start] = ACTIONS(2503), + [sym__insert_span_start] = ACTIONS(2503), + [sym__delete_span_start] = ACTIONS(2503), + [sym__edit_comment_span_start] = ACTIONS(2503), + [sym__single_quote_span_open] = ACTIONS(2503), + [sym__double_quote_span_open] = ACTIONS(2503), + [sym__shortcode_open_escaped] = ACTIONS(2503), + [sym__shortcode_open] = ACTIONS(2503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2503), + [sym__cite_author_in_text] = ACTIONS(2503), + [sym__cite_suppress_author] = ACTIONS(2503), + [sym__strikeout_open] = ACTIONS(2503), + [sym__subscript_open] = ACTIONS(2503), + [sym__superscript_open] = ACTIONS(2503), + [sym__inline_note_start_token] = ACTIONS(2503), + [sym__strong_emphasis_open_star] = ACTIONS(2503), + [sym__strong_emphasis_open_underscore] = ACTIONS(2503), + [sym__emphasis_open_star] = ACTIONS(2503), + [sym__emphasis_open_underscore] = ACTIONS(2503), + [sym_inline_note_reference] = ACTIONS(2503), + [sym_html_element] = ACTIONS(2503), + [sym__pandoc_line_break] = ACTIONS(2503), + [sym_grid_table] = ACTIONS(2503), + }, + [STATE(245)] = { + [anon_sym_COLON] = ACTIONS(2507), + [sym_entity_reference] = ACTIONS(2507), + [sym_numeric_character_reference] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_BANG_LBRACK] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [aux_sym_pandoc_str_token1] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2507), + [sym__whitespace] = ACTIONS(2507), + [sym__line_ending] = ACTIONS(2507), + [sym__soft_line_ending] = ACTIONS(2507), + [sym__block_close] = ACTIONS(2507), + [sym__block_quote_start] = ACTIONS(2507), + [sym_atx_h1_marker] = ACTIONS(2507), + [sym_atx_h2_marker] = ACTIONS(2507), + [sym_atx_h3_marker] = ACTIONS(2507), + [sym_atx_h4_marker] = ACTIONS(2507), + [sym_atx_h5_marker] = ACTIONS(2507), + [sym_atx_h6_marker] = ACTIONS(2507), + [sym__thematic_break] = ACTIONS(2507), + [sym__list_marker_minus] = ACTIONS(2507), + [sym__list_marker_plus] = ACTIONS(2507), + [sym__list_marker_star] = ACTIONS(2507), + [sym__list_marker_parenthesis] = ACTIONS(2507), + [sym__list_marker_dot] = ACTIONS(2507), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_example] = ACTIONS(2507), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2507), + [sym__fenced_code_block_start_backtick] = ACTIONS(2507), + [sym_minus_metadata] = ACTIONS(2507), + [sym__pipe_table_start] = ACTIONS(2507), + [sym__fenced_div_start] = ACTIONS(2507), + [sym__fenced_div_end] = ACTIONS(2507), + [sym_ref_id_specifier] = ACTIONS(2507), + [sym__code_span_start] = ACTIONS(2507), + [sym__html_comment] = ACTIONS(2507), + [sym__autolink] = ACTIONS(2507), + [sym__highlight_span_start] = ACTIONS(2507), + [sym__insert_span_start] = ACTIONS(2507), + [sym__delete_span_start] = ACTIONS(2507), + [sym__edit_comment_span_start] = ACTIONS(2507), + [sym__single_quote_span_open] = ACTIONS(2507), + [sym__double_quote_span_open] = ACTIONS(2507), + [sym__shortcode_open_escaped] = ACTIONS(2507), + [sym__shortcode_open] = ACTIONS(2507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2507), + [sym__cite_author_in_text] = ACTIONS(2507), + [sym__cite_suppress_author] = ACTIONS(2507), + [sym__strikeout_open] = ACTIONS(2507), + [sym__subscript_open] = ACTIONS(2507), + [sym__superscript_open] = ACTIONS(2507), + [sym__inline_note_start_token] = ACTIONS(2507), + [sym__strong_emphasis_open_star] = ACTIONS(2507), + [sym__strong_emphasis_open_underscore] = ACTIONS(2507), + [sym__emphasis_open_star] = ACTIONS(2507), + [sym__emphasis_open_underscore] = ACTIONS(2507), + [sym_inline_note_reference] = ACTIONS(2507), + [sym_html_element] = ACTIONS(2507), + [sym__pandoc_line_break] = ACTIONS(2507), + [sym_grid_table] = ACTIONS(2507), + }, + [STATE(246)] = { + [anon_sym_COLON] = ACTIONS(2511), + [sym_entity_reference] = ACTIONS(2511), + [sym_numeric_character_reference] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_BANG_LBRACK] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2513), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [aux_sym_pandoc_str_token1] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2511), + [sym__whitespace] = ACTIONS(2511), + [sym__line_ending] = ACTIONS(2511), + [sym__soft_line_ending] = ACTIONS(2511), + [sym__block_close] = ACTIONS(2511), + [sym__block_quote_start] = ACTIONS(2511), + [sym_atx_h1_marker] = ACTIONS(2511), + [sym_atx_h2_marker] = ACTIONS(2511), + [sym_atx_h3_marker] = ACTIONS(2511), + [sym_atx_h4_marker] = ACTIONS(2511), + [sym_atx_h5_marker] = ACTIONS(2511), + [sym_atx_h6_marker] = ACTIONS(2511), + [sym__thematic_break] = ACTIONS(2511), + [sym__list_marker_minus] = ACTIONS(2511), + [sym__list_marker_plus] = ACTIONS(2511), + [sym__list_marker_star] = ACTIONS(2511), + [sym__list_marker_parenthesis] = ACTIONS(2511), + [sym__list_marker_dot] = ACTIONS(2511), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_example] = ACTIONS(2511), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2511), + [sym__fenced_code_block_start_backtick] = ACTIONS(2511), + [sym_minus_metadata] = ACTIONS(2511), + [sym__pipe_table_start] = ACTIONS(2511), + [sym__fenced_div_start] = ACTIONS(2511), + [sym__fenced_div_end] = ACTIONS(2511), + [sym_ref_id_specifier] = ACTIONS(2511), + [sym__code_span_start] = ACTIONS(2511), + [sym__html_comment] = ACTIONS(2511), + [sym__autolink] = ACTIONS(2511), + [sym__highlight_span_start] = ACTIONS(2511), + [sym__insert_span_start] = ACTIONS(2511), + [sym__delete_span_start] = ACTIONS(2511), + [sym__edit_comment_span_start] = ACTIONS(2511), + [sym__single_quote_span_open] = ACTIONS(2511), + [sym__double_quote_span_open] = ACTIONS(2511), + [sym__shortcode_open_escaped] = ACTIONS(2511), + [sym__shortcode_open] = ACTIONS(2511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2511), + [sym__cite_author_in_text] = ACTIONS(2511), + [sym__cite_suppress_author] = ACTIONS(2511), + [sym__strikeout_open] = ACTIONS(2511), + [sym__subscript_open] = ACTIONS(2511), + [sym__superscript_open] = ACTIONS(2511), + [sym__inline_note_start_token] = ACTIONS(2511), + [sym__strong_emphasis_open_star] = ACTIONS(2511), + [sym__strong_emphasis_open_underscore] = ACTIONS(2511), + [sym__emphasis_open_star] = ACTIONS(2511), + [sym__emphasis_open_underscore] = ACTIONS(2511), + [sym_inline_note_reference] = ACTIONS(2511), + [sym_html_element] = ACTIONS(2511), + [sym__pandoc_line_break] = ACTIONS(2511), + [sym_grid_table] = ACTIONS(2511), + }, + [STATE(247)] = { + [anon_sym_COLON] = ACTIONS(2515), + [sym_entity_reference] = ACTIONS(2515), + [sym_numeric_character_reference] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_BANG_LBRACK] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [aux_sym_pandoc_str_token1] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2515), + [sym__whitespace] = ACTIONS(2515), + [sym__line_ending] = ACTIONS(2515), + [sym__soft_line_ending] = ACTIONS(2515), + [sym__block_close] = ACTIONS(2515), + [sym__block_quote_start] = ACTIONS(2515), + [sym_atx_h1_marker] = ACTIONS(2515), + [sym_atx_h2_marker] = ACTIONS(2515), + [sym_atx_h3_marker] = ACTIONS(2515), + [sym_atx_h4_marker] = ACTIONS(2515), + [sym_atx_h5_marker] = ACTIONS(2515), + [sym_atx_h6_marker] = ACTIONS(2515), + [sym__thematic_break] = ACTIONS(2515), + [sym__list_marker_minus] = ACTIONS(2515), + [sym__list_marker_plus] = ACTIONS(2515), + [sym__list_marker_star] = ACTIONS(2515), + [sym__list_marker_parenthesis] = ACTIONS(2515), + [sym__list_marker_dot] = ACTIONS(2515), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_example] = ACTIONS(2515), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2515), + [sym__fenced_code_block_start_backtick] = ACTIONS(2515), + [sym_minus_metadata] = ACTIONS(2515), + [sym__pipe_table_start] = ACTIONS(2515), + [sym__fenced_div_start] = ACTIONS(2515), + [sym__fenced_div_end] = ACTIONS(2515), + [sym_ref_id_specifier] = ACTIONS(2515), + [sym__code_span_start] = ACTIONS(2515), + [sym__html_comment] = ACTIONS(2515), + [sym__autolink] = ACTIONS(2515), + [sym__highlight_span_start] = ACTIONS(2515), + [sym__insert_span_start] = ACTIONS(2515), + [sym__delete_span_start] = ACTIONS(2515), + [sym__edit_comment_span_start] = ACTIONS(2515), + [sym__single_quote_span_open] = ACTIONS(2515), + [sym__double_quote_span_open] = ACTIONS(2515), + [sym__shortcode_open_escaped] = ACTIONS(2515), + [sym__shortcode_open] = ACTIONS(2515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2515), + [sym__cite_author_in_text] = ACTIONS(2515), + [sym__cite_suppress_author] = ACTIONS(2515), + [sym__strikeout_open] = ACTIONS(2515), + [sym__subscript_open] = ACTIONS(2515), + [sym__superscript_open] = ACTIONS(2515), + [sym__inline_note_start_token] = ACTIONS(2515), + [sym__strong_emphasis_open_star] = ACTIONS(2515), + [sym__strong_emphasis_open_underscore] = ACTIONS(2515), + [sym__emphasis_open_star] = ACTIONS(2515), + [sym__emphasis_open_underscore] = ACTIONS(2515), + [sym_inline_note_reference] = ACTIONS(2515), + [sym_html_element] = ACTIONS(2515), + [sym__pandoc_line_break] = ACTIONS(2515), + [sym_grid_table] = ACTIONS(2515), + }, + [STATE(248)] = { + [anon_sym_COLON] = ACTIONS(2519), + [sym_entity_reference] = ACTIONS(2519), + [sym_numeric_character_reference] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_BANG_LBRACK] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [aux_sym_pandoc_str_token1] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2519), + [sym__whitespace] = ACTIONS(2519), + [sym__line_ending] = ACTIONS(2519), + [sym__soft_line_ending] = ACTIONS(2519), + [sym__block_close] = ACTIONS(2519), + [sym__block_quote_start] = ACTIONS(2519), + [sym_atx_h1_marker] = ACTIONS(2519), + [sym_atx_h2_marker] = ACTIONS(2519), + [sym_atx_h3_marker] = ACTIONS(2519), + [sym_atx_h4_marker] = ACTIONS(2519), + [sym_atx_h5_marker] = ACTIONS(2519), + [sym_atx_h6_marker] = ACTIONS(2519), + [sym__thematic_break] = ACTIONS(2519), + [sym__list_marker_minus] = ACTIONS(2519), + [sym__list_marker_plus] = ACTIONS(2519), + [sym__list_marker_star] = ACTIONS(2519), + [sym__list_marker_parenthesis] = ACTIONS(2519), + [sym__list_marker_dot] = ACTIONS(2519), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_example] = ACTIONS(2519), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2519), + [sym__fenced_code_block_start_backtick] = ACTIONS(2519), + [sym_minus_metadata] = ACTIONS(2519), + [sym__pipe_table_start] = ACTIONS(2519), + [sym__fenced_div_start] = ACTIONS(2519), + [sym__fenced_div_end] = ACTIONS(2519), + [sym_ref_id_specifier] = ACTIONS(2519), + [sym__code_span_start] = ACTIONS(2519), + [sym__html_comment] = ACTIONS(2519), + [sym__autolink] = ACTIONS(2519), + [sym__highlight_span_start] = ACTIONS(2519), + [sym__insert_span_start] = ACTIONS(2519), + [sym__delete_span_start] = ACTIONS(2519), + [sym__edit_comment_span_start] = ACTIONS(2519), + [sym__single_quote_span_open] = ACTIONS(2519), + [sym__double_quote_span_open] = ACTIONS(2519), + [sym__shortcode_open_escaped] = ACTIONS(2519), + [sym__shortcode_open] = ACTIONS(2519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2519), + [sym__cite_author_in_text] = ACTIONS(2519), + [sym__cite_suppress_author] = ACTIONS(2519), + [sym__strikeout_open] = ACTIONS(2519), + [sym__subscript_open] = ACTIONS(2519), + [sym__superscript_open] = ACTIONS(2519), + [sym__inline_note_start_token] = ACTIONS(2519), + [sym__strong_emphasis_open_star] = ACTIONS(2519), + [sym__strong_emphasis_open_underscore] = ACTIONS(2519), + [sym__emphasis_open_star] = ACTIONS(2519), + [sym__emphasis_open_underscore] = ACTIONS(2519), + [sym_inline_note_reference] = ACTIONS(2519), + [sym_html_element] = ACTIONS(2519), + [sym__pandoc_line_break] = ACTIONS(2519), + [sym_grid_table] = ACTIONS(2519), + }, + [STATE(249)] = { + [anon_sym_COLON] = ACTIONS(2523), + [sym_entity_reference] = ACTIONS(2523), + [sym_numeric_character_reference] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_BANG_LBRACK] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [aux_sym_pandoc_str_token1] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2523), + [sym__whitespace] = ACTIONS(2523), + [sym__line_ending] = ACTIONS(2523), + [sym__soft_line_ending] = ACTIONS(2523), + [sym__block_close] = ACTIONS(2523), + [sym__block_quote_start] = ACTIONS(2523), + [sym_atx_h1_marker] = ACTIONS(2523), + [sym_atx_h2_marker] = ACTIONS(2523), + [sym_atx_h3_marker] = ACTIONS(2523), + [sym_atx_h4_marker] = ACTIONS(2523), + [sym_atx_h5_marker] = ACTIONS(2523), + [sym_atx_h6_marker] = ACTIONS(2523), + [sym__thematic_break] = ACTIONS(2523), + [sym__list_marker_minus] = ACTIONS(2523), + [sym__list_marker_plus] = ACTIONS(2523), + [sym__list_marker_star] = ACTIONS(2523), + [sym__list_marker_parenthesis] = ACTIONS(2523), + [sym__list_marker_dot] = ACTIONS(2523), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_example] = ACTIONS(2523), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2523), + [sym__fenced_code_block_start_backtick] = ACTIONS(2523), + [sym_minus_metadata] = ACTIONS(2523), + [sym__pipe_table_start] = ACTIONS(2523), + [sym__fenced_div_start] = ACTIONS(2523), + [sym__fenced_div_end] = ACTIONS(2523), + [sym_ref_id_specifier] = ACTIONS(2523), + [sym__code_span_start] = ACTIONS(2523), + [sym__html_comment] = ACTIONS(2523), + [sym__autolink] = ACTIONS(2523), + [sym__highlight_span_start] = ACTIONS(2523), + [sym__insert_span_start] = ACTIONS(2523), + [sym__delete_span_start] = ACTIONS(2523), + [sym__edit_comment_span_start] = ACTIONS(2523), + [sym__single_quote_span_open] = ACTIONS(2523), + [sym__double_quote_span_open] = ACTIONS(2523), + [sym__shortcode_open_escaped] = ACTIONS(2523), + [sym__shortcode_open] = ACTIONS(2523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2523), + [sym__cite_author_in_text] = ACTIONS(2523), + [sym__cite_suppress_author] = ACTIONS(2523), + [sym__strikeout_open] = ACTIONS(2523), + [sym__subscript_open] = ACTIONS(2523), + [sym__superscript_open] = ACTIONS(2523), + [sym__inline_note_start_token] = ACTIONS(2523), + [sym__strong_emphasis_open_star] = ACTIONS(2523), + [sym__strong_emphasis_open_underscore] = ACTIONS(2523), + [sym__emphasis_open_star] = ACTIONS(2523), + [sym__emphasis_open_underscore] = ACTIONS(2523), + [sym_inline_note_reference] = ACTIONS(2523), + [sym_html_element] = ACTIONS(2523), + [sym__pandoc_line_break] = ACTIONS(2523), + [sym_grid_table] = ACTIONS(2523), + }, + [STATE(250)] = { + [anon_sym_COLON] = ACTIONS(2527), + [sym_entity_reference] = ACTIONS(2527), + [sym_numeric_character_reference] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_BANG_LBRACK] = ACTIONS(2527), + [anon_sym_DOLLAR] = ACTIONS(2529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [aux_sym_pandoc_str_token1] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2527), + [sym__whitespace] = ACTIONS(2527), + [sym__line_ending] = ACTIONS(2527), + [sym__soft_line_ending] = ACTIONS(2527), + [sym__block_close] = ACTIONS(2527), + [sym__block_quote_start] = ACTIONS(2527), + [sym_atx_h1_marker] = ACTIONS(2527), + [sym_atx_h2_marker] = ACTIONS(2527), + [sym_atx_h3_marker] = ACTIONS(2527), + [sym_atx_h4_marker] = ACTIONS(2527), + [sym_atx_h5_marker] = ACTIONS(2527), + [sym_atx_h6_marker] = ACTIONS(2527), + [sym__thematic_break] = ACTIONS(2527), + [sym__list_marker_minus] = ACTIONS(2527), + [sym__list_marker_plus] = ACTIONS(2527), + [sym__list_marker_star] = ACTIONS(2527), + [sym__list_marker_parenthesis] = ACTIONS(2527), + [sym__list_marker_dot] = ACTIONS(2527), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_example] = ACTIONS(2527), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2527), + [sym__fenced_code_block_start_backtick] = ACTIONS(2527), + [sym_minus_metadata] = ACTIONS(2527), + [sym__pipe_table_start] = ACTIONS(2527), + [sym__fenced_div_start] = ACTIONS(2527), + [sym__fenced_div_end] = ACTIONS(2527), + [sym_ref_id_specifier] = ACTIONS(2527), + [sym__code_span_start] = ACTIONS(2527), + [sym__html_comment] = ACTIONS(2527), + [sym__autolink] = ACTIONS(2527), + [sym__highlight_span_start] = ACTIONS(2527), + [sym__insert_span_start] = ACTIONS(2527), + [sym__delete_span_start] = ACTIONS(2527), + [sym__edit_comment_span_start] = ACTIONS(2527), + [sym__single_quote_span_open] = ACTIONS(2527), + [sym__double_quote_span_open] = ACTIONS(2527), + [sym__shortcode_open_escaped] = ACTIONS(2527), + [sym__shortcode_open] = ACTIONS(2527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), + [sym__cite_author_in_text] = ACTIONS(2527), + [sym__cite_suppress_author] = ACTIONS(2527), + [sym__strikeout_open] = ACTIONS(2527), + [sym__subscript_open] = ACTIONS(2527), + [sym__superscript_open] = ACTIONS(2527), + [sym__inline_note_start_token] = ACTIONS(2527), + [sym__strong_emphasis_open_star] = ACTIONS(2527), + [sym__strong_emphasis_open_underscore] = ACTIONS(2527), + [sym__emphasis_open_star] = ACTIONS(2527), + [sym__emphasis_open_underscore] = ACTIONS(2527), + [sym_inline_note_reference] = ACTIONS(2527), + [sym_html_element] = ACTIONS(2527), + [sym__pandoc_line_break] = ACTIONS(2527), + [sym_grid_table] = ACTIONS(2527), + }, + [STATE(251)] = { + [anon_sym_COLON] = 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_close] = 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__fenced_div_end] = 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_line_break] = ACTIONS(2531), + [sym_grid_table] = ACTIONS(2531), + }, + [STATE(252)] = { + [anon_sym_COLON] = ACTIONS(2535), + [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] = 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_line_break] = ACTIONS(2535), + [sym_grid_table] = ACTIONS(2535), + }, + [STATE(253)] = { + [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2539), + [sym_grid_table] = ACTIONS(2539), + }, + [STATE(254)] = { [anon_sym_COLON] = ACTIONS(2543), [sym_entity_reference] = ACTIONS(2543), [sym_numeric_character_reference] = ACTIONS(2543), @@ -46460,7 +48454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2543), [sym__soft_line_ending] = ACTIONS(2543), [sym__block_close] = ACTIONS(2543), - [sym_block_continuation] = ACTIONS(2543), [sym__block_quote_start] = ACTIONS(2543), [sym_atx_h1_marker] = ACTIONS(2543), [sym_atx_h2_marker] = ACTIONS(2543), @@ -46482,10 +48475,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2543), [sym__list_marker_example_dont_interrupt] = ACTIONS(2543), [sym__fenced_code_block_start_backtick] = ACTIONS(2543), - [sym__blank_line_start] = ACTIONS(2543), [sym_minus_metadata] = ACTIONS(2543), [sym__pipe_table_start] = ACTIONS(2543), [sym__fenced_div_start] = ACTIONS(2543), + [sym__fenced_div_end] = ACTIONS(2543), [sym_ref_id_specifier] = ACTIONS(2543), [sym__code_span_start] = ACTIONS(2543), [sym__html_comment] = ACTIONS(2543), @@ -46513,419 +48506,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2543), [sym_html_element] = ACTIONS(2543), [sym__pandoc_line_break] = ACTIONS(2543), + [sym_grid_table] = ACTIONS(2543), }, - [STATE(229)] = { - [sym__inlines] = STATE(3055), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1069), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(621), - [sym__inline_whitespace] = STATE(621), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2547), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2549), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), + [STATE(255)] = { + [anon_sym_COLON] = ACTIONS(2547), + [sym_entity_reference] = ACTIONS(2547), + [sym_numeric_character_reference] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_BANG_LBRACK] = ACTIONS(2547), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [aux_sym_pandoc_str_token1] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2547), + [sym__whitespace] = ACTIONS(2547), + [sym__line_ending] = ACTIONS(2547), + [sym__soft_line_ending] = ACTIONS(2547), + [sym__block_close] = ACTIONS(2547), + [sym__block_quote_start] = ACTIONS(2547), + [sym_atx_h1_marker] = ACTIONS(2547), + [sym_atx_h2_marker] = ACTIONS(2547), + [sym_atx_h3_marker] = ACTIONS(2547), + [sym_atx_h4_marker] = ACTIONS(2547), + [sym_atx_h5_marker] = ACTIONS(2547), + [sym_atx_h6_marker] = ACTIONS(2547), + [sym__thematic_break] = ACTIONS(2547), + [sym__list_marker_minus] = ACTIONS(2547), + [sym__list_marker_plus] = ACTIONS(2547), + [sym__list_marker_star] = ACTIONS(2547), + [sym__list_marker_parenthesis] = ACTIONS(2547), + [sym__list_marker_dot] = ACTIONS(2547), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_example] = ACTIONS(2547), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2547), + [sym__fenced_code_block_start_backtick] = ACTIONS(2547), + [sym_minus_metadata] = ACTIONS(2547), + [sym__pipe_table_start] = ACTIONS(2547), + [sym__fenced_div_start] = ACTIONS(2547), + [sym__fenced_div_end] = ACTIONS(2547), + [sym_ref_id_specifier] = ACTIONS(2547), + [sym__code_span_start] = ACTIONS(2547), + [sym__html_comment] = ACTIONS(2547), + [sym__autolink] = ACTIONS(2547), + [sym__highlight_span_start] = ACTIONS(2547), + [sym__insert_span_start] = ACTIONS(2547), + [sym__delete_span_start] = ACTIONS(2547), + [sym__edit_comment_span_start] = ACTIONS(2547), + [sym__single_quote_span_open] = ACTIONS(2547), + [sym__double_quote_span_open] = ACTIONS(2547), + [sym__shortcode_open_escaped] = ACTIONS(2547), + [sym__shortcode_open] = ACTIONS(2547), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2547), + [sym__cite_author_in_text] = ACTIONS(2547), + [sym__cite_suppress_author] = ACTIONS(2547), + [sym__strikeout_open] = ACTIONS(2547), + [sym__subscript_open] = ACTIONS(2547), + [sym__superscript_open] = ACTIONS(2547), + [sym__inline_note_start_token] = ACTIONS(2547), + [sym__strong_emphasis_open_star] = ACTIONS(2547), + [sym__strong_emphasis_open_underscore] = ACTIONS(2547), + [sym__emphasis_open_star] = ACTIONS(2547), + [sym__emphasis_open_underscore] = ACTIONS(2547), + [sym_inline_note_reference] = ACTIONS(2547), + [sym_html_element] = ACTIONS(2547), + [sym__pandoc_line_break] = ACTIONS(2547), + [sym_grid_table] = ACTIONS(2547), + }, + [STATE(256)] = { + [anon_sym_COLON] = ACTIONS(2551), + [sym_entity_reference] = ACTIONS(2551), + [sym_numeric_character_reference] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_BANG_LBRACK] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [aux_sym_pandoc_str_token1] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2551), [sym__whitespace] = ACTIONS(2551), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), + [sym__line_ending] = ACTIONS(2551), + [sym__soft_line_ending] = ACTIONS(2551), + [sym__block_close] = ACTIONS(2551), + [sym__block_quote_start] = ACTIONS(2551), + [sym_atx_h1_marker] = ACTIONS(2551), + [sym_atx_h2_marker] = ACTIONS(2551), + [sym_atx_h3_marker] = ACTIONS(2551), + [sym_atx_h4_marker] = ACTIONS(2551), + [sym_atx_h5_marker] = ACTIONS(2551), + [sym_atx_h6_marker] = ACTIONS(2551), + [sym__thematic_break] = ACTIONS(2551), + [sym__list_marker_minus] = ACTIONS(2551), + [sym__list_marker_plus] = ACTIONS(2551), + [sym__list_marker_star] = ACTIONS(2551), + [sym__list_marker_parenthesis] = ACTIONS(2551), + [sym__list_marker_dot] = ACTIONS(2551), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_example] = ACTIONS(2551), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2551), + [sym__fenced_code_block_start_backtick] = ACTIONS(2551), + [sym_minus_metadata] = ACTIONS(2551), + [sym__pipe_table_start] = ACTIONS(2551), + [sym__fenced_div_start] = ACTIONS(2551), + [sym__fenced_div_end] = ACTIONS(2551), + [sym_ref_id_specifier] = ACTIONS(2551), + [sym__code_span_start] = ACTIONS(2551), + [sym__html_comment] = ACTIONS(2551), + [sym__autolink] = ACTIONS(2551), + [sym__highlight_span_start] = ACTIONS(2551), + [sym__insert_span_start] = ACTIONS(2551), + [sym__delete_span_start] = ACTIONS(2551), + [sym__edit_comment_span_start] = ACTIONS(2551), + [sym__single_quote_span_open] = ACTIONS(2551), + [sym__double_quote_span_open] = ACTIONS(2551), + [sym__shortcode_open_escaped] = ACTIONS(2551), + [sym__shortcode_open] = ACTIONS(2551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2551), + [sym__cite_author_in_text] = ACTIONS(2551), + [sym__cite_suppress_author] = ACTIONS(2551), + [sym__strikeout_open] = ACTIONS(2551), + [sym__subscript_open] = ACTIONS(2551), + [sym__superscript_open] = ACTIONS(2551), + [sym__inline_note_start_token] = ACTIONS(2551), + [sym__strong_emphasis_open_star] = ACTIONS(2551), + [sym__strong_emphasis_open_underscore] = ACTIONS(2551), + [sym__emphasis_open_star] = ACTIONS(2551), + [sym__emphasis_open_underscore] = ACTIONS(2551), + [sym_inline_note_reference] = ACTIONS(2551), + [sym_html_element] = ACTIONS(2551), + [sym__pandoc_line_break] = ACTIONS(2551), + [sym_grid_table] = ACTIONS(2551), }, - [STATE(230)] = { - [sym__inlines] = STATE(3152), - [sym_pandoc_span] = STATE(616), - [sym_pandoc_image] = STATE(616), - [sym_target] = STATE(1071), - [sym_pandoc_math] = STATE(616), - [sym_pandoc_display_math] = STATE(616), - [sym_pandoc_code_span] = STATE(616), - [sym_pandoc_single_quote] = STATE(616), - [sym_pandoc_double_quote] = STATE(616), - [sym_insert] = STATE(616), - [sym_delete] = STATE(616), - [sym_edit_comment] = STATE(616), - [sym_highlight] = STATE(616), - [sym__pandoc_attr_specifier] = STATE(616), - [sym__line] = STATE(2865), - [sym__inline_element] = STATE(616), - [sym_shortcode_escaped] = STATE(616), - [sym_shortcode] = STATE(616), - [sym_citation] = STATE(616), - [sym_inline_note] = STATE(616), - [sym_pandoc_superscript] = STATE(616), - [sym_pandoc_subscript] = STATE(616), - [sym_pandoc_strikeout] = STATE(616), - [sym_pandoc_emph] = STATE(616), - [sym_pandoc_strong] = STATE(616), - [sym_pandoc_str] = STATE(616), - [sym__soft_line_break] = STATE(612), - [sym__inline_whitespace] = STATE(612), - [sym_entity_reference] = ACTIONS(2179), - [sym_numeric_character_reference] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [aux_sym_pandoc_span_token1] = ACTIONS(2553), - [anon_sym_BANG_LBRACK] = ACTIONS(2185), - [aux_sym_target_token1] = ACTIONS(2549), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2193), - [aux_sym_pandoc_str_token1] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), + [STATE(257)] = { + [anon_sym_COLON] = ACTIONS(2555), + [sym_entity_reference] = ACTIONS(2555), + [sym_numeric_character_reference] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_BANG_LBRACK] = ACTIONS(2555), + [anon_sym_DOLLAR] = ACTIONS(2557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [aux_sym_pandoc_str_token1] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2555), [sym__whitespace] = ACTIONS(2555), - [sym__soft_line_ending] = ACTIONS(2201), - [sym__code_span_start] = ACTIONS(2203), - [sym__html_comment] = ACTIONS(2179), - [sym__autolink] = ACTIONS(2179), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2207), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2211), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2215), - [sym__shortcode_open_escaped] = ACTIONS(2217), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2227), - [sym__strikeout_open] = ACTIONS(2229), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2233), - [sym__inline_note_start_token] = ACTIONS(2235), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_open_star] = ACTIONS(2241), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2179), - [sym_html_element] = ACTIONS(2179), - [sym__pandoc_line_break] = ACTIONS(2179), - }, - [STATE(231)] = { - [anon_sym_COLON] = 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_close] = ACTIONS(2557), - [sym_block_continuation] = 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__blank_line_start] = ACTIONS(2557), - [sym_minus_metadata] = 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_line_break] = ACTIONS(2557), - }, - [STATE(232)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2561), + [sym__line_ending] = ACTIONS(2555), + [sym__soft_line_ending] = ACTIONS(2555), + [sym__block_close] = ACTIONS(2555), + [sym__block_quote_start] = ACTIONS(2555), + [sym_atx_h1_marker] = ACTIONS(2555), + [sym_atx_h2_marker] = ACTIONS(2555), + [sym_atx_h3_marker] = ACTIONS(2555), + [sym_atx_h4_marker] = ACTIONS(2555), + [sym_atx_h5_marker] = ACTIONS(2555), + [sym_atx_h6_marker] = ACTIONS(2555), + [sym__thematic_break] = ACTIONS(2555), + [sym__list_marker_minus] = ACTIONS(2555), + [sym__list_marker_plus] = ACTIONS(2555), + [sym__list_marker_star] = ACTIONS(2555), + [sym__list_marker_parenthesis] = ACTIONS(2555), + [sym__list_marker_dot] = ACTIONS(2555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_example] = ACTIONS(2555), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2555), + [sym__fenced_code_block_start_backtick] = ACTIONS(2555), + [sym_minus_metadata] = ACTIONS(2555), + [sym__pipe_table_start] = ACTIONS(2555), + [sym__fenced_div_start] = ACTIONS(2555), + [sym__fenced_div_end] = ACTIONS(2555), + [sym_ref_id_specifier] = ACTIONS(2555), + [sym__code_span_start] = ACTIONS(2555), + [sym__html_comment] = ACTIONS(2555), + [sym__autolink] = ACTIONS(2555), + [sym__highlight_span_start] = ACTIONS(2555), + [sym__insert_span_start] = ACTIONS(2555), + [sym__delete_span_start] = ACTIONS(2555), + [sym__edit_comment_span_start] = ACTIONS(2555), + [sym__single_quote_span_open] = ACTIONS(2555), + [sym__double_quote_span_open] = ACTIONS(2555), + [sym__shortcode_open_escaped] = ACTIONS(2555), + [sym__shortcode_open] = ACTIONS(2555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2555), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2555), + [sym__cite_author_in_text] = ACTIONS(2555), + [sym__cite_suppress_author] = ACTIONS(2555), + [sym__strikeout_open] = ACTIONS(2555), + [sym__subscript_open] = ACTIONS(2555), + [sym__superscript_open] = ACTIONS(2555), + [sym__inline_note_start_token] = ACTIONS(2555), + [sym__strong_emphasis_open_star] = ACTIONS(2555), + [sym__strong_emphasis_open_underscore] = ACTIONS(2555), + [sym__emphasis_open_star] = ACTIONS(2555), + [sym__emphasis_open_underscore] = ACTIONS(2555), + [sym_inline_note_reference] = ACTIONS(2555), + [sym_html_element] = ACTIONS(2555), + [sym__pandoc_line_break] = ACTIONS(2555), + [sym_grid_table] = ACTIONS(2555), }, - [STATE(233)] = { - [anon_sym_COLON] = 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_close] = ACTIONS(2335), - [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_line_break] = ACTIONS(2335), + [STATE(258)] = { + [anon_sym_COLON] = ACTIONS(2559), + [sym_entity_reference] = ACTIONS(2559), + [sym_numeric_character_reference] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_BANG_LBRACK] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2561), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [aux_sym_pandoc_str_token1] = ACTIONS(2561), + [anon_sym_PIPE] = ACTIONS(2559), + [sym__whitespace] = ACTIONS(2559), + [sym__line_ending] = ACTIONS(2559), + [sym__soft_line_ending] = ACTIONS(2559), + [sym__block_close] = ACTIONS(2559), + [sym__block_quote_start] = ACTIONS(2559), + [sym_atx_h1_marker] = ACTIONS(2559), + [sym_atx_h2_marker] = ACTIONS(2559), + [sym_atx_h3_marker] = ACTIONS(2559), + [sym_atx_h4_marker] = ACTIONS(2559), + [sym_atx_h5_marker] = ACTIONS(2559), + [sym_atx_h6_marker] = ACTIONS(2559), + [sym__thematic_break] = ACTIONS(2559), + [sym__list_marker_minus] = ACTIONS(2559), + [sym__list_marker_plus] = ACTIONS(2559), + [sym__list_marker_star] = ACTIONS(2559), + [sym__list_marker_parenthesis] = ACTIONS(2559), + [sym__list_marker_dot] = ACTIONS(2559), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_example] = ACTIONS(2559), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2559), + [sym__fenced_code_block_start_backtick] = ACTIONS(2559), + [sym_minus_metadata] = ACTIONS(2559), + [sym__pipe_table_start] = ACTIONS(2559), + [sym__fenced_div_start] = ACTIONS(2559), + [sym__fenced_div_end] = ACTIONS(2559), + [sym_ref_id_specifier] = ACTIONS(2559), + [sym__code_span_start] = ACTIONS(2559), + [sym__html_comment] = ACTIONS(2559), + [sym__autolink] = ACTIONS(2559), + [sym__highlight_span_start] = ACTIONS(2559), + [sym__insert_span_start] = ACTIONS(2559), + [sym__delete_span_start] = ACTIONS(2559), + [sym__edit_comment_span_start] = ACTIONS(2559), + [sym__single_quote_span_open] = ACTIONS(2559), + [sym__double_quote_span_open] = ACTIONS(2559), + [sym__shortcode_open_escaped] = ACTIONS(2559), + [sym__shortcode_open] = ACTIONS(2559), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2559), + [sym__cite_author_in_text] = ACTIONS(2559), + [sym__cite_suppress_author] = ACTIONS(2559), + [sym__strikeout_open] = ACTIONS(2559), + [sym__subscript_open] = ACTIONS(2559), + [sym__superscript_open] = ACTIONS(2559), + [sym__inline_note_start_token] = ACTIONS(2559), + [sym__strong_emphasis_open_star] = ACTIONS(2559), + [sym__strong_emphasis_open_underscore] = ACTIONS(2559), + [sym__emphasis_open_star] = ACTIONS(2559), + [sym__emphasis_open_underscore] = ACTIONS(2559), + [sym_inline_note_reference] = ACTIONS(2559), + [sym_html_element] = ACTIONS(2559), + [sym__pandoc_line_break] = ACTIONS(2559), + [sym_grid_table] = ACTIONS(2559), }, - [STATE(234)] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [anon_sym_COLON] = 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(2565), - [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_line_break] = ACTIONS(2329), + [STATE(259)] = { + [anon_sym_COLON] = ACTIONS(2563), + [sym_entity_reference] = ACTIONS(2563), + [sym_numeric_character_reference] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_BANG_LBRACK] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [aux_sym_pandoc_str_token1] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2563), + [sym__whitespace] = ACTIONS(2563), + [sym__line_ending] = ACTIONS(2563), + [sym__soft_line_ending] = ACTIONS(2563), + [sym__block_close] = ACTIONS(2563), + [sym__block_quote_start] = ACTIONS(2563), + [sym_atx_h1_marker] = ACTIONS(2563), + [sym_atx_h2_marker] = ACTIONS(2563), + [sym_atx_h3_marker] = ACTIONS(2563), + [sym_atx_h4_marker] = ACTIONS(2563), + [sym_atx_h5_marker] = ACTIONS(2563), + [sym_atx_h6_marker] = ACTIONS(2563), + [sym__thematic_break] = ACTIONS(2563), + [sym__list_marker_minus] = ACTIONS(2563), + [sym__list_marker_plus] = ACTIONS(2563), + [sym__list_marker_star] = ACTIONS(2563), + [sym__list_marker_parenthesis] = ACTIONS(2563), + [sym__list_marker_dot] = ACTIONS(2563), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_example] = ACTIONS(2563), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2563), + [sym__fenced_code_block_start_backtick] = ACTIONS(2563), + [sym_minus_metadata] = ACTIONS(2563), + [sym__pipe_table_start] = ACTIONS(2563), + [sym__fenced_div_start] = ACTIONS(2563), + [sym__fenced_div_end] = ACTIONS(2563), + [sym_ref_id_specifier] = ACTIONS(2563), + [sym__code_span_start] = ACTIONS(2563), + [sym__html_comment] = ACTIONS(2563), + [sym__autolink] = ACTIONS(2563), + [sym__highlight_span_start] = ACTIONS(2563), + [sym__insert_span_start] = ACTIONS(2563), + [sym__delete_span_start] = ACTIONS(2563), + [sym__edit_comment_span_start] = ACTIONS(2563), + [sym__single_quote_span_open] = ACTIONS(2563), + [sym__double_quote_span_open] = ACTIONS(2563), + [sym__shortcode_open_escaped] = ACTIONS(2563), + [sym__shortcode_open] = ACTIONS(2563), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2563), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2563), + [sym__cite_author_in_text] = ACTIONS(2563), + [sym__cite_suppress_author] = ACTIONS(2563), + [sym__strikeout_open] = ACTIONS(2563), + [sym__subscript_open] = ACTIONS(2563), + [sym__superscript_open] = ACTIONS(2563), + [sym__inline_note_start_token] = ACTIONS(2563), + [sym__strong_emphasis_open_star] = ACTIONS(2563), + [sym__strong_emphasis_open_underscore] = ACTIONS(2563), + [sym__emphasis_open_star] = ACTIONS(2563), + [sym__emphasis_open_underscore] = ACTIONS(2563), + [sym_inline_note_reference] = ACTIONS(2563), + [sym_html_element] = ACTIONS(2563), + [sym__pandoc_line_break] = ACTIONS(2563), + [sym_grid_table] = ACTIONS(2563), }, - [STATE(235)] = { + [STATE(260)] = { [anon_sym_COLON] = ACTIONS(2567), [sym_entity_reference] = ACTIONS(2567), [sym_numeric_character_reference] = ACTIONS(2567), @@ -46992,8 +48920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2567), [sym_html_element] = ACTIONS(2567), [sym__pandoc_line_break] = ACTIONS(2567), + [sym_grid_table] = ACTIONS(2567), }, - [STATE(236)] = { + [STATE(261)] = { [anon_sym_COLON] = ACTIONS(2571), [sym_entity_reference] = ACTIONS(2571), [sym_numeric_character_reference] = ACTIONS(2571), @@ -47060,8 +48989,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2571), [sym_html_element] = ACTIONS(2571), [sym__pandoc_line_break] = ACTIONS(2571), + [sym_grid_table] = ACTIONS(2571), }, - [STATE(237)] = { + [STATE(262)] = { [anon_sym_COLON] = ACTIONS(2575), [sym_entity_reference] = ACTIONS(2575), [sym_numeric_character_reference] = ACTIONS(2575), @@ -47128,1232 +49058,837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2575), [sym_html_element] = ACTIONS(2575), [sym__pandoc_line_break] = ACTIONS(2575), + [sym_grid_table] = ACTIONS(2575), }, - [STATE(238)] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [anon_sym_COLON] = 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(2579), - [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_line_break] = ACTIONS(2335), + [STATE(263)] = { + [anon_sym_COLON] = ACTIONS(2579), + [sym_entity_reference] = ACTIONS(2579), + [sym_numeric_character_reference] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_BANG_LBRACK] = ACTIONS(2579), + [anon_sym_DOLLAR] = ACTIONS(2581), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [aux_sym_pandoc_str_token1] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2579), + [sym__whitespace] = ACTIONS(2579), + [sym__line_ending] = ACTIONS(2579), + [sym__soft_line_ending] = ACTIONS(2579), + [sym__block_close] = ACTIONS(2579), + [sym__block_quote_start] = ACTIONS(2579), + [sym_atx_h1_marker] = ACTIONS(2579), + [sym_atx_h2_marker] = ACTIONS(2579), + [sym_atx_h3_marker] = ACTIONS(2579), + [sym_atx_h4_marker] = ACTIONS(2579), + [sym_atx_h5_marker] = ACTIONS(2579), + [sym_atx_h6_marker] = ACTIONS(2579), + [sym__thematic_break] = ACTIONS(2579), + [sym__list_marker_minus] = ACTIONS(2579), + [sym__list_marker_plus] = ACTIONS(2579), + [sym__list_marker_star] = ACTIONS(2579), + [sym__list_marker_parenthesis] = ACTIONS(2579), + [sym__list_marker_dot] = ACTIONS(2579), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_example] = ACTIONS(2579), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2579), + [sym__fenced_code_block_start_backtick] = ACTIONS(2579), + [sym_minus_metadata] = ACTIONS(2579), + [sym__pipe_table_start] = ACTIONS(2579), + [sym__fenced_div_start] = ACTIONS(2579), + [sym__fenced_div_end] = ACTIONS(2579), + [sym_ref_id_specifier] = ACTIONS(2579), + [sym__code_span_start] = ACTIONS(2579), + [sym__html_comment] = ACTIONS(2579), + [sym__autolink] = ACTIONS(2579), + [sym__highlight_span_start] = ACTIONS(2579), + [sym__insert_span_start] = ACTIONS(2579), + [sym__delete_span_start] = ACTIONS(2579), + [sym__edit_comment_span_start] = ACTIONS(2579), + [sym__single_quote_span_open] = ACTIONS(2579), + [sym__double_quote_span_open] = ACTIONS(2579), + [sym__shortcode_open_escaped] = ACTIONS(2579), + [sym__shortcode_open] = ACTIONS(2579), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2579), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2579), + [sym__cite_author_in_text] = ACTIONS(2579), + [sym__cite_suppress_author] = ACTIONS(2579), + [sym__strikeout_open] = ACTIONS(2579), + [sym__subscript_open] = ACTIONS(2579), + [sym__superscript_open] = ACTIONS(2579), + [sym__inline_note_start_token] = ACTIONS(2579), + [sym__strong_emphasis_open_star] = ACTIONS(2579), + [sym__strong_emphasis_open_underscore] = ACTIONS(2579), + [sym__emphasis_open_star] = ACTIONS(2579), + [sym__emphasis_open_underscore] = ACTIONS(2579), + [sym_inline_note_reference] = ACTIONS(2579), + [sym_html_element] = ACTIONS(2579), + [sym__pandoc_line_break] = ACTIONS(2579), + [sym_grid_table] = ACTIONS(2579), }, - [STATE(239)] = { - [anon_sym_COLON] = ACTIONS(2341), + [STATE(264)] = { + [anon_sym_COLON] = 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_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] = 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(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_line_break] = ACTIONS(2583), + [sym_grid_table] = ACTIONS(2583), + }, + [STATE(265)] = { + [anon_sym_COLON] = 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_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] = 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(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_line_break] = ACTIONS(2587), + [sym_grid_table] = ACTIONS(2587), + }, + [STATE(266)] = { + [anon_sym_COLON] = ACTIONS(2591), + [sym_entity_reference] = ACTIONS(2591), + [sym_numeric_character_reference] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_BANG_LBRACK] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(2593), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [aux_sym_pandoc_str_token1] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2591), + [sym__whitespace] = ACTIONS(2591), + [sym__line_ending] = ACTIONS(2591), + [sym__soft_line_ending] = ACTIONS(2591), + [sym__block_close] = ACTIONS(2591), + [sym__block_quote_start] = ACTIONS(2591), + [sym_atx_h1_marker] = ACTIONS(2591), + [sym_atx_h2_marker] = ACTIONS(2591), + [sym_atx_h3_marker] = ACTIONS(2591), + [sym_atx_h4_marker] = ACTIONS(2591), + [sym_atx_h5_marker] = ACTIONS(2591), + [sym_atx_h6_marker] = ACTIONS(2591), + [sym__thematic_break] = ACTIONS(2591), + [sym__list_marker_minus] = ACTIONS(2591), + [sym__list_marker_plus] = ACTIONS(2591), + [sym__list_marker_star] = ACTIONS(2591), + [sym__list_marker_parenthesis] = ACTIONS(2591), + [sym__list_marker_dot] = ACTIONS(2591), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_example] = ACTIONS(2591), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2591), + [sym__fenced_code_block_start_backtick] = ACTIONS(2591), + [sym_minus_metadata] = ACTIONS(2591), + [sym__pipe_table_start] = ACTIONS(2591), + [sym__fenced_div_start] = ACTIONS(2591), + [sym__fenced_div_end] = ACTIONS(2591), + [sym_ref_id_specifier] = ACTIONS(2591), + [sym__code_span_start] = ACTIONS(2591), + [sym__html_comment] = ACTIONS(2591), + [sym__autolink] = ACTIONS(2591), + [sym__highlight_span_start] = ACTIONS(2591), + [sym__insert_span_start] = ACTIONS(2591), + [sym__delete_span_start] = ACTIONS(2591), + [sym__edit_comment_span_start] = ACTIONS(2591), + [sym__single_quote_span_open] = ACTIONS(2591), + [sym__double_quote_span_open] = ACTIONS(2591), + [sym__shortcode_open_escaped] = ACTIONS(2591), + [sym__shortcode_open] = ACTIONS(2591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2591), + [sym__cite_author_in_text] = ACTIONS(2591), + [sym__cite_suppress_author] = ACTIONS(2591), + [sym__strikeout_open] = ACTIONS(2591), + [sym__subscript_open] = ACTIONS(2591), + [sym__superscript_open] = ACTIONS(2591), + [sym__inline_note_start_token] = ACTIONS(2591), + [sym__strong_emphasis_open_star] = ACTIONS(2591), + [sym__strong_emphasis_open_underscore] = ACTIONS(2591), + [sym__emphasis_open_star] = ACTIONS(2591), + [sym__emphasis_open_underscore] = ACTIONS(2591), + [sym_inline_note_reference] = ACTIONS(2591), + [sym_html_element] = ACTIONS(2591), + [sym__pandoc_line_break] = ACTIONS(2591), + [sym_grid_table] = ACTIONS(2591), + }, + [STATE(267)] = { + [anon_sym_COLON] = ACTIONS(2595), + [sym_entity_reference] = ACTIONS(2595), + [sym_numeric_character_reference] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_BANG_LBRACK] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2597), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [aux_sym_pandoc_str_token1] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2595), + [sym__whitespace] = ACTIONS(2595), + [sym__line_ending] = ACTIONS(2595), + [sym__soft_line_ending] = ACTIONS(2595), + [sym__block_close] = ACTIONS(2595), + [sym__block_quote_start] = ACTIONS(2595), + [sym_atx_h1_marker] = ACTIONS(2595), + [sym_atx_h2_marker] = ACTIONS(2595), + [sym_atx_h3_marker] = ACTIONS(2595), + [sym_atx_h4_marker] = ACTIONS(2595), + [sym_atx_h5_marker] = ACTIONS(2595), + [sym_atx_h6_marker] = ACTIONS(2595), + [sym__thematic_break] = ACTIONS(2595), + [sym__list_marker_minus] = ACTIONS(2595), + [sym__list_marker_plus] = ACTIONS(2595), + [sym__list_marker_star] = ACTIONS(2595), + [sym__list_marker_parenthesis] = ACTIONS(2595), + [sym__list_marker_dot] = ACTIONS(2595), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_example] = ACTIONS(2595), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2595), + [sym__fenced_code_block_start_backtick] = ACTIONS(2595), + [sym_minus_metadata] = ACTIONS(2595), + [sym__pipe_table_start] = ACTIONS(2595), + [sym__fenced_div_start] = ACTIONS(2595), + [sym__fenced_div_end] = ACTIONS(2595), + [sym_ref_id_specifier] = ACTIONS(2595), + [sym__code_span_start] = ACTIONS(2595), + [sym__html_comment] = ACTIONS(2595), + [sym__autolink] = ACTIONS(2595), + [sym__highlight_span_start] = ACTIONS(2595), + [sym__insert_span_start] = ACTIONS(2595), + [sym__delete_span_start] = ACTIONS(2595), + [sym__edit_comment_span_start] = ACTIONS(2595), + [sym__single_quote_span_open] = ACTIONS(2595), + [sym__double_quote_span_open] = ACTIONS(2595), + [sym__shortcode_open_escaped] = ACTIONS(2595), + [sym__shortcode_open] = ACTIONS(2595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2595), + [sym__cite_author_in_text] = ACTIONS(2595), + [sym__cite_suppress_author] = ACTIONS(2595), + [sym__strikeout_open] = ACTIONS(2595), + [sym__subscript_open] = ACTIONS(2595), + [sym__superscript_open] = ACTIONS(2595), + [sym__inline_note_start_token] = ACTIONS(2595), + [sym__strong_emphasis_open_star] = ACTIONS(2595), + [sym__strong_emphasis_open_underscore] = ACTIONS(2595), + [sym__emphasis_open_star] = ACTIONS(2595), + [sym__emphasis_open_underscore] = ACTIONS(2595), + [sym_inline_note_reference] = ACTIONS(2595), + [sym_html_element] = ACTIONS(2595), + [sym__pandoc_line_break] = ACTIONS(2595), + [sym_grid_table] = ACTIONS(2595), + }, + [STATE(268)] = { + [anon_sym_COLON] = 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_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] = 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(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_line_break] = ACTIONS(2599), + [sym_grid_table] = ACTIONS(2599), + }, + [STATE(269)] = { + [sym__inlines] = STATE(3150), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1406), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(618), + [sym__inline_whitespace] = STATE(618), [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_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), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2603), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2607), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), [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__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), [sym_inline_note_reference] = ACTIONS(2341), [sym_html_element] = ACTIONS(2341), [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(240)] = { - [anon_sym_COLON] = ACTIONS(2581), - [sym_entity_reference] = ACTIONS(2581), - [sym_numeric_character_reference] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [aux_sym_pandoc_str_token1] = ACTIONS(2583), - [anon_sym_PIPE] = ACTIONS(2581), - [sym__whitespace] = ACTIONS(2581), - [sym__line_ending] = ACTIONS(2581), - [sym__soft_line_ending] = ACTIONS(2581), - [sym__block_close] = ACTIONS(2581), - [sym__block_quote_start] = ACTIONS(2581), - [sym_atx_h1_marker] = ACTIONS(2581), - [sym_atx_h2_marker] = ACTIONS(2581), - [sym_atx_h3_marker] = ACTIONS(2581), - [sym_atx_h4_marker] = ACTIONS(2581), - [sym_atx_h5_marker] = ACTIONS(2581), - [sym_atx_h6_marker] = ACTIONS(2581), - [sym__thematic_break] = ACTIONS(2581), - [sym__list_marker_minus] = ACTIONS(2581), - [sym__list_marker_plus] = ACTIONS(2581), - [sym__list_marker_star] = ACTIONS(2581), - [sym__list_marker_parenthesis] = ACTIONS(2581), - [sym__list_marker_dot] = ACTIONS(2581), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_example] = ACTIONS(2581), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2581), - [sym__fenced_code_block_start_backtick] = ACTIONS(2581), - [sym_minus_metadata] = ACTIONS(2581), - [sym__pipe_table_start] = ACTIONS(2581), - [sym__fenced_div_start] = ACTIONS(2581), - [sym__fenced_div_end] = ACTIONS(2581), - [sym_ref_id_specifier] = ACTIONS(2581), - [sym__code_span_start] = ACTIONS(2581), - [sym__html_comment] = ACTIONS(2581), - [sym__autolink] = ACTIONS(2581), - [sym__highlight_span_start] = ACTIONS(2581), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2581), - [sym__edit_comment_span_start] = ACTIONS(2581), - [sym__single_quote_span_open] = ACTIONS(2581), - [sym__double_quote_span_open] = ACTIONS(2581), - [sym__shortcode_open_escaped] = ACTIONS(2581), - [sym__shortcode_open] = ACTIONS(2581), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2581), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2581), - [sym__cite_author_in_text] = ACTIONS(2581), - [sym__cite_suppress_author] = ACTIONS(2581), - [sym__strikeout_open] = ACTIONS(2581), - [sym__subscript_open] = ACTIONS(2581), - [sym__superscript_open] = ACTIONS(2581), - [sym__inline_note_start_token] = ACTIONS(2581), - [sym__strong_emphasis_open_star] = ACTIONS(2581), - [sym__strong_emphasis_open_underscore] = ACTIONS(2581), - [sym__emphasis_open_star] = ACTIONS(2581), - [sym__emphasis_open_underscore] = ACTIONS(2581), - [sym_inline_note_reference] = ACTIONS(2581), - [sym_html_element] = ACTIONS(2581), - [sym__pandoc_line_break] = ACTIONS(2581), - }, - [STATE(241)] = { - [anon_sym_COLON] = ACTIONS(2347), - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), + [STATE(270)] = { + [sym__inlines] = STATE(3151), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1407), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(623), + [sym__inline_whitespace] = STATE(623), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2609), [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_line_break] = ACTIONS(2347), - }, - [STATE(242)] = { - [anon_sym_COLON] = ACTIONS(2585), - [sym_entity_reference] = ACTIONS(2585), - [sym_numeric_character_reference] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_BANG_LBRACK] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [aux_sym_pandoc_str_token1] = ACTIONS(2587), - [anon_sym_PIPE] = ACTIONS(2585), - [sym__whitespace] = ACTIONS(2585), - [sym__line_ending] = ACTIONS(2585), - [sym__soft_line_ending] = ACTIONS(2585), - [sym__block_close] = ACTIONS(2585), - [sym__block_quote_start] = ACTIONS(2585), - [sym_atx_h1_marker] = ACTIONS(2585), - [sym_atx_h2_marker] = ACTIONS(2585), - [sym_atx_h3_marker] = ACTIONS(2585), - [sym_atx_h4_marker] = ACTIONS(2585), - [sym_atx_h5_marker] = ACTIONS(2585), - [sym_atx_h6_marker] = ACTIONS(2585), - [sym__thematic_break] = ACTIONS(2585), - [sym__list_marker_minus] = ACTIONS(2585), - [sym__list_marker_plus] = ACTIONS(2585), - [sym__list_marker_star] = ACTIONS(2585), - [sym__list_marker_parenthesis] = ACTIONS(2585), - [sym__list_marker_dot] = ACTIONS(2585), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_example] = ACTIONS(2585), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2585), - [sym__fenced_code_block_start_backtick] = ACTIONS(2585), - [sym_minus_metadata] = ACTIONS(2585), - [sym__pipe_table_start] = ACTIONS(2585), - [sym__fenced_div_start] = ACTIONS(2585), - [sym__fenced_div_end] = ACTIONS(2585), - [sym_ref_id_specifier] = ACTIONS(2585), - [sym__code_span_start] = ACTIONS(2585), - [sym__html_comment] = ACTIONS(2585), - [sym__autolink] = ACTIONS(2585), - [sym__highlight_span_start] = ACTIONS(2585), - [sym__insert_span_start] = ACTIONS(2585), - [sym__delete_span_start] = ACTIONS(2585), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2585), - [sym__double_quote_span_open] = ACTIONS(2585), - [sym__shortcode_open_escaped] = ACTIONS(2585), - [sym__shortcode_open] = ACTIONS(2585), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2585), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2585), - [sym__cite_author_in_text] = ACTIONS(2585), - [sym__cite_suppress_author] = ACTIONS(2585), - [sym__strikeout_open] = ACTIONS(2585), - [sym__subscript_open] = ACTIONS(2585), - [sym__superscript_open] = ACTIONS(2585), - [sym__inline_note_start_token] = ACTIONS(2585), - [sym__strong_emphasis_open_star] = ACTIONS(2585), - [sym__strong_emphasis_open_underscore] = ACTIONS(2585), - [sym__emphasis_open_star] = ACTIONS(2585), - [sym__emphasis_open_underscore] = ACTIONS(2585), - [sym_inline_note_reference] = ACTIONS(2585), - [sym_html_element] = ACTIONS(2585), - [sym__pandoc_line_break] = ACTIONS(2585), - }, - [STATE(243)] = { - [anon_sym_COLON] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), + [aux_sym_target_token1] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2351), [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_line_break] = ACTIONS(2353), - }, - [STATE(244)] = { - [anon_sym_COLON] = ACTIONS(2589), - [sym_entity_reference] = ACTIONS(2589), - [sym_numeric_character_reference] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_BANG_LBRACK] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [aux_sym_pandoc_str_token1] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2589), - [sym__whitespace] = ACTIONS(2589), - [sym__line_ending] = ACTIONS(2589), - [sym__soft_line_ending] = ACTIONS(2589), - [sym__block_close] = ACTIONS(2589), - [sym__block_quote_start] = ACTIONS(2589), - [sym_atx_h1_marker] = ACTIONS(2589), - [sym_atx_h2_marker] = ACTIONS(2589), - [sym_atx_h3_marker] = ACTIONS(2589), - [sym_atx_h4_marker] = ACTIONS(2589), - [sym_atx_h5_marker] = ACTIONS(2589), - [sym_atx_h6_marker] = ACTIONS(2589), - [sym__thematic_break] = ACTIONS(2589), - [sym__list_marker_minus] = ACTIONS(2589), - [sym__list_marker_plus] = ACTIONS(2589), - [sym__list_marker_star] = ACTIONS(2589), - [sym__list_marker_parenthesis] = ACTIONS(2589), - [sym__list_marker_dot] = ACTIONS(2589), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_example] = ACTIONS(2589), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2589), - [sym__fenced_code_block_start_backtick] = ACTIONS(2589), - [sym_minus_metadata] = ACTIONS(2589), - [sym__pipe_table_start] = ACTIONS(2589), - [sym__fenced_div_start] = ACTIONS(2589), - [sym__fenced_div_end] = ACTIONS(2589), - [sym_ref_id_specifier] = ACTIONS(2589), - [sym__code_span_start] = ACTIONS(2589), - [sym__html_comment] = ACTIONS(2589), - [sym__autolink] = ACTIONS(2589), - [sym__highlight_span_start] = ACTIONS(2589), - [sym__insert_span_start] = ACTIONS(2589), - [sym__delete_span_start] = ACTIONS(2589), - [sym__edit_comment_span_start] = ACTIONS(2589), - [sym__single_quote_span_open] = ACTIONS(2589), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2589), - [sym__shortcode_open] = ACTIONS(2589), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2589), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2589), - [sym__cite_author_in_text] = ACTIONS(2589), - [sym__cite_suppress_author] = ACTIONS(2589), - [sym__strikeout_open] = ACTIONS(2589), - [sym__subscript_open] = ACTIONS(2589), - [sym__superscript_open] = ACTIONS(2589), - [sym__inline_note_start_token] = ACTIONS(2589), - [sym__strong_emphasis_open_star] = ACTIONS(2589), - [sym__strong_emphasis_open_underscore] = ACTIONS(2589), - [sym__emphasis_open_star] = ACTIONS(2589), - [sym__emphasis_open_underscore] = ACTIONS(2589), - [sym_inline_note_reference] = ACTIONS(2589), - [sym_html_element] = ACTIONS(2589), - [sym__pandoc_line_break] = ACTIONS(2589), - }, - [STATE(245)] = { - [anon_sym_COLON] = ACTIONS(2359), - [sym_entity_reference] = ACTIONS(2359), - [sym_numeric_character_reference] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_BANG_LBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), [anon_sym_PIPE] = ACTIONS(2359), - [sym__whitespace] = ACTIONS(2359), - [sym__line_ending] = ACTIONS(2359), - [sym__soft_line_ending] = ACTIONS(2359), - [sym__block_close] = ACTIONS(2359), - [sym__block_quote_start] = ACTIONS(2359), - [sym_atx_h1_marker] = ACTIONS(2359), - [sym_atx_h2_marker] = ACTIONS(2359), - [sym_atx_h3_marker] = ACTIONS(2359), - [sym_atx_h4_marker] = ACTIONS(2359), - [sym_atx_h5_marker] = ACTIONS(2359), - [sym_atx_h6_marker] = ACTIONS(2359), - [sym__thematic_break] = ACTIONS(2359), - [sym__list_marker_minus] = ACTIONS(2359), - [sym__list_marker_plus] = ACTIONS(2359), - [sym__list_marker_star] = ACTIONS(2359), - [sym__list_marker_parenthesis] = ACTIONS(2359), - [sym__list_marker_dot] = ACTIONS(2359), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_example] = ACTIONS(2359), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), - [sym__fenced_code_block_start_backtick] = ACTIONS(2359), - [sym_minus_metadata] = ACTIONS(2359), - [sym__pipe_table_start] = ACTIONS(2359), - [sym__fenced_div_start] = ACTIONS(2359), - [sym__fenced_div_end] = ACTIONS(2359), - [sym_ref_id_specifier] = ACTIONS(2359), - [sym__code_span_start] = ACTIONS(2359), - [sym__html_comment] = ACTIONS(2359), - [sym__autolink] = ACTIONS(2359), - [sym__highlight_span_start] = ACTIONS(2359), - [sym__insert_span_start] = ACTIONS(2359), - [sym__delete_span_start] = ACTIONS(2359), - [sym__edit_comment_span_start] = ACTIONS(2359), - [sym__single_quote_span_open] = ACTIONS(2359), - [sym__double_quote_span_open] = ACTIONS(2359), - [sym__shortcode_open_escaped] = ACTIONS(2359), - [sym__shortcode_open] = ACTIONS(2359), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), - [sym__cite_author_in_text] = ACTIONS(2359), - [sym__cite_suppress_author] = ACTIONS(2359), - [sym__strikeout_open] = ACTIONS(2359), - [sym__subscript_open] = ACTIONS(2359), - [sym__superscript_open] = ACTIONS(2359), - [sym__inline_note_start_token] = ACTIONS(2359), - [sym__strong_emphasis_open_star] = ACTIONS(2359), - [sym__strong_emphasis_open_underscore] = ACTIONS(2359), - [sym__emphasis_open_star] = ACTIONS(2359), - [sym__emphasis_open_underscore] = ACTIONS(2359), - [sym_inline_note_reference] = ACTIONS(2359), - [sym_html_element] = ACTIONS(2359), - [sym__pandoc_line_break] = ACTIONS(2359), - }, - [STATE(246)] = { - [anon_sym_COLON] = 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_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] = 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(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_line_break] = ACTIONS(2593), - }, - [STATE(247)] = { - [anon_sym_COLON] = ACTIONS(2365), - [sym_entity_reference] = ACTIONS(2365), - [sym_numeric_character_reference] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_BANG_LBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [aux_sym_pandoc_str_token1] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2365), - [sym__whitespace] = ACTIONS(2365), - [sym__line_ending] = ACTIONS(2365), - [sym__soft_line_ending] = ACTIONS(2365), - [sym__block_close] = ACTIONS(2365), - [sym__block_quote_start] = ACTIONS(2365), - [sym_atx_h1_marker] = ACTIONS(2365), - [sym_atx_h2_marker] = ACTIONS(2365), - [sym_atx_h3_marker] = ACTIONS(2365), - [sym_atx_h4_marker] = ACTIONS(2365), - [sym_atx_h5_marker] = ACTIONS(2365), - [sym_atx_h6_marker] = ACTIONS(2365), - [sym__thematic_break] = ACTIONS(2365), - [sym__list_marker_minus] = ACTIONS(2365), - [sym__list_marker_plus] = ACTIONS(2365), - [sym__list_marker_star] = ACTIONS(2365), - [sym__list_marker_parenthesis] = ACTIONS(2365), - [sym__list_marker_dot] = ACTIONS(2365), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_example] = ACTIONS(2365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), - [sym__fenced_code_block_start_backtick] = ACTIONS(2365), - [sym_minus_metadata] = ACTIONS(2365), - [sym__pipe_table_start] = ACTIONS(2365), - [sym__fenced_div_start] = ACTIONS(2365), - [sym__fenced_div_end] = ACTIONS(2365), - [sym_ref_id_specifier] = ACTIONS(2365), + [sym__whitespace] = ACTIONS(2611), + [sym__soft_line_ending] = ACTIONS(2363), [sym__code_span_start] = ACTIONS(2365), - [sym__html_comment] = ACTIONS(2365), - [sym__autolink] = ACTIONS(2365), - [sym__highlight_span_start] = ACTIONS(2365), - [sym__insert_span_start] = ACTIONS(2365), - [sym__delete_span_start] = ACTIONS(2365), - [sym__edit_comment_span_start] = ACTIONS(2365), - [sym__single_quote_span_open] = ACTIONS(2365), - [sym__double_quote_span_open] = ACTIONS(2365), - [sym__shortcode_open_escaped] = ACTIONS(2365), - [sym__shortcode_open] = ACTIONS(2365), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), - [sym__cite_author_in_text] = ACTIONS(2365), - [sym__cite_suppress_author] = ACTIONS(2365), - [sym__strikeout_open] = ACTIONS(2365), - [sym__subscript_open] = ACTIONS(2365), - [sym__superscript_open] = ACTIONS(2365), - [sym__inline_note_start_token] = ACTIONS(2365), - [sym__strong_emphasis_open_star] = ACTIONS(2365), - [sym__strong_emphasis_open_underscore] = ACTIONS(2365), - [sym__emphasis_open_star] = ACTIONS(2365), - [sym__emphasis_open_underscore] = ACTIONS(2365), - [sym_inline_note_reference] = ACTIONS(2365), - [sym_html_element] = ACTIONS(2365), - [sym__pandoc_line_break] = ACTIONS(2365), - }, - [STATE(248)] = { - [anon_sym_COLON] = ACTIONS(2597), - [sym_entity_reference] = ACTIONS(2597), - [sym_numeric_character_reference] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_BANG_LBRACK] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2599), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [aux_sym_pandoc_str_token1] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2597), - [sym__whitespace] = ACTIONS(2597), - [sym__line_ending] = ACTIONS(2597), - [sym__soft_line_ending] = ACTIONS(2597), - [sym__block_close] = ACTIONS(2597), - [sym__block_quote_start] = ACTIONS(2597), - [sym_atx_h1_marker] = ACTIONS(2597), - [sym_atx_h2_marker] = ACTIONS(2597), - [sym_atx_h3_marker] = ACTIONS(2597), - [sym_atx_h4_marker] = ACTIONS(2597), - [sym_atx_h5_marker] = ACTIONS(2597), - [sym_atx_h6_marker] = ACTIONS(2597), - [sym__thematic_break] = ACTIONS(2597), - [sym__list_marker_minus] = ACTIONS(2597), - [sym__list_marker_plus] = ACTIONS(2597), - [sym__list_marker_star] = ACTIONS(2597), - [sym__list_marker_parenthesis] = ACTIONS(2597), - [sym__list_marker_dot] = ACTIONS(2597), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_example] = ACTIONS(2597), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2597), - [sym__fenced_code_block_start_backtick] = ACTIONS(2597), - [sym_minus_metadata] = ACTIONS(2597), - [sym__pipe_table_start] = ACTIONS(2597), - [sym__fenced_div_start] = ACTIONS(2597), - [sym__fenced_div_end] = ACTIONS(2597), - [sym_ref_id_specifier] = ACTIONS(2597), - [sym__code_span_start] = ACTIONS(2597), - [sym__html_comment] = ACTIONS(2597), - [sym__autolink] = ACTIONS(2597), - [sym__highlight_span_start] = ACTIONS(2597), - [sym__insert_span_start] = ACTIONS(2597), - [sym__delete_span_start] = ACTIONS(2597), - [sym__edit_comment_span_start] = ACTIONS(2597), - [sym__single_quote_span_open] = ACTIONS(2597), - [sym__double_quote_span_open] = ACTIONS(2597), - [sym__shortcode_open_escaped] = ACTIONS(2597), - [sym__shortcode_open] = ACTIONS(2597), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2597), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2597), - [sym__cite_suppress_author] = ACTIONS(2597), - [sym__strikeout_open] = ACTIONS(2597), - [sym__subscript_open] = ACTIONS(2597), - [sym__superscript_open] = ACTIONS(2597), - [sym__inline_note_start_token] = ACTIONS(2597), - [sym__strong_emphasis_open_star] = ACTIONS(2597), - [sym__strong_emphasis_open_underscore] = ACTIONS(2597), - [sym__emphasis_open_star] = ACTIONS(2597), - [sym__emphasis_open_underscore] = ACTIONS(2597), - [sym_inline_note_reference] = ACTIONS(2597), - [sym_html_element] = ACTIONS(2597), - [sym__pandoc_line_break] = ACTIONS(2597), - }, - [STATE(249)] = { - [anon_sym_COLON] = ACTIONS(2371), - [sym_entity_reference] = ACTIONS(2371), - [sym_numeric_character_reference] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_BANG_LBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [aux_sym_pandoc_str_token1] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2371), - [sym__whitespace] = ACTIONS(2371), - [sym__line_ending] = ACTIONS(2371), - [sym__soft_line_ending] = ACTIONS(2371), - [sym__block_close] = ACTIONS(2371), - [sym__block_quote_start] = ACTIONS(2371), - [sym_atx_h1_marker] = ACTIONS(2371), - [sym_atx_h2_marker] = ACTIONS(2371), - [sym_atx_h3_marker] = ACTIONS(2371), - [sym_atx_h4_marker] = ACTIONS(2371), - [sym_atx_h5_marker] = ACTIONS(2371), - [sym_atx_h6_marker] = ACTIONS(2371), - [sym__thematic_break] = ACTIONS(2371), - [sym__list_marker_minus] = ACTIONS(2371), - [sym__list_marker_plus] = ACTIONS(2371), - [sym__list_marker_star] = ACTIONS(2371), - [sym__list_marker_parenthesis] = ACTIONS(2371), - [sym__list_marker_dot] = ACTIONS(2371), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_example] = ACTIONS(2371), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), - [sym__fenced_code_block_start_backtick] = ACTIONS(2371), - [sym_minus_metadata] = ACTIONS(2371), - [sym__pipe_table_start] = ACTIONS(2371), - [sym__fenced_div_start] = ACTIONS(2371), - [sym__fenced_div_end] = ACTIONS(2371), - [sym_ref_id_specifier] = ACTIONS(2371), - [sym__code_span_start] = ACTIONS(2371), - [sym__html_comment] = ACTIONS(2371), - [sym__autolink] = ACTIONS(2371), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), [sym__delete_span_start] = ACTIONS(2371), - [sym__edit_comment_span_start] = ACTIONS(2371), - [sym__single_quote_span_open] = ACTIONS(2371), - [sym__double_quote_span_open] = ACTIONS(2371), - [sym__shortcode_open_escaped] = ACTIONS(2371), - [sym__shortcode_open] = ACTIONS(2371), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), - [sym__cite_author_in_text] = ACTIONS(2371), - [sym__cite_suppress_author] = ACTIONS(2371), - [sym__strikeout_open] = ACTIONS(2371), - [sym__subscript_open] = ACTIONS(2371), - [sym__superscript_open] = ACTIONS(2371), - [sym__inline_note_start_token] = ACTIONS(2371), - [sym__strong_emphasis_open_star] = ACTIONS(2371), - [sym__strong_emphasis_open_underscore] = ACTIONS(2371), - [sym__emphasis_open_star] = ACTIONS(2371), - [sym__emphasis_open_underscore] = ACTIONS(2371), - [sym_inline_note_reference] = ACTIONS(2371), - [sym_html_element] = ACTIONS(2371), - [sym__pandoc_line_break] = ACTIONS(2371), - }, - [STATE(250)] = { - [anon_sym_COLON] = ACTIONS(2601), - [sym_entity_reference] = ACTIONS(2601), - [sym_numeric_character_reference] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_BANG_LBRACK] = ACTIONS(2601), - [anon_sym_DOLLAR] = ACTIONS(2603), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [aux_sym_pandoc_str_token1] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2601), - [sym__whitespace] = ACTIONS(2601), - [sym__line_ending] = ACTIONS(2601), - [sym__soft_line_ending] = ACTIONS(2601), - [sym__block_close] = ACTIONS(2601), - [sym__block_quote_start] = ACTIONS(2601), - [sym_atx_h1_marker] = ACTIONS(2601), - [sym_atx_h2_marker] = ACTIONS(2601), - [sym_atx_h3_marker] = ACTIONS(2601), - [sym_atx_h4_marker] = ACTIONS(2601), - [sym_atx_h5_marker] = ACTIONS(2601), - [sym_atx_h6_marker] = ACTIONS(2601), - [sym__thematic_break] = ACTIONS(2601), - [sym__list_marker_minus] = ACTIONS(2601), - [sym__list_marker_plus] = ACTIONS(2601), - [sym__list_marker_star] = ACTIONS(2601), - [sym__list_marker_parenthesis] = ACTIONS(2601), - [sym__list_marker_dot] = ACTIONS(2601), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_example] = ACTIONS(2601), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2601), - [sym__fenced_code_block_start_backtick] = ACTIONS(2601), - [sym_minus_metadata] = ACTIONS(2601), - [sym__pipe_table_start] = ACTIONS(2601), - [sym__fenced_div_start] = ACTIONS(2601), - [sym__fenced_div_end] = ACTIONS(2601), - [sym_ref_id_specifier] = ACTIONS(2601), - [sym__code_span_start] = ACTIONS(2601), - [sym__html_comment] = ACTIONS(2601), - [sym__autolink] = ACTIONS(2601), - [sym__highlight_span_start] = ACTIONS(2601), - [sym__insert_span_start] = ACTIONS(2601), - [sym__delete_span_start] = ACTIONS(2601), - [sym__edit_comment_span_start] = ACTIONS(2601), - [sym__single_quote_span_open] = ACTIONS(2601), - [sym__double_quote_span_open] = ACTIONS(2601), - [sym__shortcode_open_escaped] = ACTIONS(2601), - [sym__shortcode_open] = ACTIONS(2601), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2601), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2601), - [sym__cite_author_in_text] = ACTIONS(2601), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2601), - [sym__subscript_open] = ACTIONS(2601), - [sym__superscript_open] = ACTIONS(2601), - [sym__inline_note_start_token] = ACTIONS(2601), - [sym__strong_emphasis_open_star] = ACTIONS(2601), - [sym__strong_emphasis_open_underscore] = ACTIONS(2601), - [sym__emphasis_open_star] = ACTIONS(2601), - [sym__emphasis_open_underscore] = ACTIONS(2601), - [sym_inline_note_reference] = ACTIONS(2601), - [sym_html_element] = ACTIONS(2601), - [sym__pandoc_line_break] = ACTIONS(2601), - }, - [STATE(251)] = { - [anon_sym_COLON] = ACTIONS(2605), - [sym_entity_reference] = ACTIONS(2605), - [sym_numeric_character_reference] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_BANG_LBRACK] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [aux_sym_pandoc_str_token1] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2605), - [sym__whitespace] = ACTIONS(2605), - [sym__line_ending] = ACTIONS(2605), - [sym__soft_line_ending] = ACTIONS(2605), - [sym__block_close] = ACTIONS(2605), - [sym__block_quote_start] = ACTIONS(2605), - [sym_atx_h1_marker] = ACTIONS(2605), - [sym_atx_h2_marker] = ACTIONS(2605), - [sym_atx_h3_marker] = ACTIONS(2605), - [sym_atx_h4_marker] = ACTIONS(2605), - [sym_atx_h5_marker] = ACTIONS(2605), - [sym_atx_h6_marker] = ACTIONS(2605), - [sym__thematic_break] = ACTIONS(2605), - [sym__list_marker_minus] = ACTIONS(2605), - [sym__list_marker_plus] = ACTIONS(2605), - [sym__list_marker_star] = ACTIONS(2605), - [sym__list_marker_parenthesis] = ACTIONS(2605), - [sym__list_marker_dot] = ACTIONS(2605), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_example] = ACTIONS(2605), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2605), - [sym__fenced_code_block_start_backtick] = ACTIONS(2605), - [sym_minus_metadata] = ACTIONS(2605), - [sym__pipe_table_start] = ACTIONS(2605), - [sym__fenced_div_start] = ACTIONS(2605), - [sym__fenced_div_end] = ACTIONS(2605), - [sym_ref_id_specifier] = ACTIONS(2605), - [sym__code_span_start] = ACTIONS(2605), - [sym__html_comment] = ACTIONS(2605), - [sym__autolink] = ACTIONS(2605), - [sym__highlight_span_start] = ACTIONS(2605), - [sym__insert_span_start] = ACTIONS(2605), - [sym__delete_span_start] = ACTIONS(2605), - [sym__edit_comment_span_start] = ACTIONS(2605), - [sym__single_quote_span_open] = ACTIONS(2605), - [sym__double_quote_span_open] = ACTIONS(2605), - [sym__shortcode_open_escaped] = ACTIONS(2605), - [sym__shortcode_open] = ACTIONS(2605), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2605), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2605), - [sym__cite_author_in_text] = ACTIONS(2605), - [sym__cite_suppress_author] = ACTIONS(2605), - [sym__strikeout_open] = ACTIONS(2605), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2605), - [sym__inline_note_start_token] = ACTIONS(2605), - [sym__strong_emphasis_open_star] = ACTIONS(2605), - [sym__strong_emphasis_open_underscore] = ACTIONS(2605), - [sym__emphasis_open_star] = ACTIONS(2605), - [sym__emphasis_open_underscore] = ACTIONS(2605), - [sym_inline_note_reference] = ACTIONS(2605), - [sym_html_element] = ACTIONS(2605), - [sym__pandoc_line_break] = ACTIONS(2605), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(252)] = { - [anon_sym_COLON] = ACTIONS(2609), - [sym_entity_reference] = ACTIONS(2609), - [sym_numeric_character_reference] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_BANG_LBRACK] = ACTIONS(2609), - [anon_sym_DOLLAR] = ACTIONS(2611), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [aux_sym_pandoc_str_token1] = ACTIONS(2611), - [anon_sym_PIPE] = ACTIONS(2609), - [sym__whitespace] = ACTIONS(2609), - [sym__line_ending] = ACTIONS(2609), - [sym__soft_line_ending] = ACTIONS(2609), - [sym__block_close] = ACTIONS(2609), - [sym__block_quote_start] = ACTIONS(2609), - [sym_atx_h1_marker] = ACTIONS(2609), - [sym_atx_h2_marker] = ACTIONS(2609), - [sym_atx_h3_marker] = ACTIONS(2609), - [sym_atx_h4_marker] = ACTIONS(2609), - [sym_atx_h5_marker] = ACTIONS(2609), - [sym_atx_h6_marker] = ACTIONS(2609), - [sym__thematic_break] = ACTIONS(2609), - [sym__list_marker_minus] = ACTIONS(2609), - [sym__list_marker_plus] = ACTIONS(2609), - [sym__list_marker_star] = ACTIONS(2609), - [sym__list_marker_parenthesis] = ACTIONS(2609), - [sym__list_marker_dot] = ACTIONS(2609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_example] = ACTIONS(2609), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2609), - [sym__fenced_code_block_start_backtick] = ACTIONS(2609), - [sym_minus_metadata] = ACTIONS(2609), - [sym__pipe_table_start] = ACTIONS(2609), - [sym__fenced_div_start] = ACTIONS(2609), - [sym__fenced_div_end] = ACTIONS(2609), - [sym_ref_id_specifier] = ACTIONS(2609), - [sym__code_span_start] = ACTIONS(2609), - [sym__html_comment] = ACTIONS(2609), - [sym__autolink] = ACTIONS(2609), - [sym__highlight_span_start] = ACTIONS(2609), - [sym__insert_span_start] = ACTIONS(2609), - [sym__delete_span_start] = ACTIONS(2609), - [sym__edit_comment_span_start] = ACTIONS(2609), - [sym__single_quote_span_open] = ACTIONS(2609), - [sym__double_quote_span_open] = ACTIONS(2609), - [sym__shortcode_open_escaped] = ACTIONS(2609), - [sym__shortcode_open] = ACTIONS(2609), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2609), - [sym__cite_author_in_text] = ACTIONS(2609), - [sym__cite_suppress_author] = ACTIONS(2609), - [sym__strikeout_open] = ACTIONS(2609), - [sym__subscript_open] = ACTIONS(2609), - [sym__superscript_open] = ACTIONS(2609), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2609), - [sym__strong_emphasis_open_underscore] = ACTIONS(2609), - [sym__emphasis_open_star] = ACTIONS(2609), - [sym__emphasis_open_underscore] = ACTIONS(2609), - [sym_inline_note_reference] = ACTIONS(2609), - [sym_html_element] = ACTIONS(2609), - [sym__pandoc_line_break] = ACTIONS(2609), + [STATE(271)] = { + [ts_builtin_sym_end] = ACTIONS(2305), + [anon_sym_COLON] = ACTIONS(2305), + [sym_entity_reference] = ACTIONS(2305), + [sym_numeric_character_reference] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG_LBRACK] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [aux_sym_pandoc_str_token1] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2305), + [sym__whitespace] = ACTIONS(2305), + [sym__line_ending] = ACTIONS(2305), + [sym__soft_line_ending] = ACTIONS(2305), + [sym_block_continuation] = ACTIONS(2613), + [sym__block_quote_start] = ACTIONS(2305), + [sym_atx_h1_marker] = ACTIONS(2305), + [sym_atx_h2_marker] = ACTIONS(2305), + [sym_atx_h3_marker] = ACTIONS(2305), + [sym_atx_h4_marker] = ACTIONS(2305), + [sym_atx_h5_marker] = ACTIONS(2305), + [sym_atx_h6_marker] = ACTIONS(2305), + [sym__thematic_break] = ACTIONS(2305), + [sym__list_marker_minus] = ACTIONS(2305), + [sym__list_marker_plus] = ACTIONS(2305), + [sym__list_marker_star] = ACTIONS(2305), + [sym__list_marker_parenthesis] = ACTIONS(2305), + [sym__list_marker_dot] = ACTIONS(2305), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), + [sym__list_marker_example] = ACTIONS(2305), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), + [sym__fenced_code_block_start_backtick] = ACTIONS(2305), + [sym_minus_metadata] = ACTIONS(2305), + [sym__pipe_table_start] = ACTIONS(2305), + [sym__fenced_div_start] = ACTIONS(2305), + [sym_ref_id_specifier] = ACTIONS(2305), + [sym__code_span_start] = ACTIONS(2305), + [sym__html_comment] = ACTIONS(2305), + [sym__autolink] = ACTIONS(2305), + [sym__highlight_span_start] = ACTIONS(2305), + [sym__insert_span_start] = ACTIONS(2305), + [sym__delete_span_start] = ACTIONS(2305), + [sym__edit_comment_span_start] = ACTIONS(2305), + [sym__single_quote_span_open] = ACTIONS(2305), + [sym__double_quote_span_open] = ACTIONS(2305), + [sym__shortcode_open_escaped] = ACTIONS(2305), + [sym__shortcode_open] = ACTIONS(2305), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), + [sym__cite_author_in_text] = ACTIONS(2305), + [sym__cite_suppress_author] = ACTIONS(2305), + [sym__strikeout_open] = ACTIONS(2305), + [sym__subscript_open] = ACTIONS(2305), + [sym__superscript_open] = ACTIONS(2305), + [sym__inline_note_start_token] = ACTIONS(2305), + [sym__strong_emphasis_open_star] = ACTIONS(2305), + [sym__strong_emphasis_open_underscore] = ACTIONS(2305), + [sym__emphasis_open_star] = ACTIONS(2305), + [sym__emphasis_open_underscore] = ACTIONS(2305), + [sym_inline_note_reference] = ACTIONS(2305), + [sym_html_element] = ACTIONS(2305), + [sym__pandoc_line_break] = ACTIONS(2305), + [sym_grid_table] = ACTIONS(2305), }, - [STATE(253)] = { - [anon_sym_COLON] = ACTIONS(2613), - [sym_entity_reference] = ACTIONS(2613), - [sym_numeric_character_reference] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_BANG_LBRACK] = ACTIONS(2613), - [anon_sym_DOLLAR] = ACTIONS(2615), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [aux_sym_pandoc_str_token1] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2613), - [sym__whitespace] = ACTIONS(2613), - [sym__line_ending] = ACTIONS(2613), - [sym__soft_line_ending] = ACTIONS(2613), - [sym__block_close] = ACTIONS(2613), - [sym__block_quote_start] = ACTIONS(2613), - [sym_atx_h1_marker] = ACTIONS(2613), - [sym_atx_h2_marker] = ACTIONS(2613), - [sym_atx_h3_marker] = ACTIONS(2613), - [sym_atx_h4_marker] = ACTIONS(2613), - [sym_atx_h5_marker] = ACTIONS(2613), - [sym_atx_h6_marker] = ACTIONS(2613), - [sym__thematic_break] = ACTIONS(2613), - [sym__list_marker_minus] = ACTIONS(2613), - [sym__list_marker_plus] = ACTIONS(2613), - [sym__list_marker_star] = ACTIONS(2613), - [sym__list_marker_parenthesis] = ACTIONS(2613), - [sym__list_marker_dot] = ACTIONS(2613), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_example] = ACTIONS(2613), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2613), - [sym__fenced_code_block_start_backtick] = ACTIONS(2613), - [sym_minus_metadata] = ACTIONS(2613), - [sym__pipe_table_start] = ACTIONS(2613), - [sym__fenced_div_start] = ACTIONS(2613), - [sym__fenced_div_end] = ACTIONS(2613), - [sym_ref_id_specifier] = ACTIONS(2613), - [sym__code_span_start] = ACTIONS(2613), - [sym__html_comment] = ACTIONS(2613), - [sym__autolink] = ACTIONS(2613), - [sym__highlight_span_start] = ACTIONS(2613), - [sym__insert_span_start] = ACTIONS(2613), - [sym__delete_span_start] = ACTIONS(2613), - [sym__edit_comment_span_start] = ACTIONS(2613), - [sym__single_quote_span_open] = ACTIONS(2613), - [sym__double_quote_span_open] = ACTIONS(2613), - [sym__shortcode_open_escaped] = ACTIONS(2613), - [sym__shortcode_open] = ACTIONS(2613), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2613), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2613), - [sym__cite_author_in_text] = ACTIONS(2613), - [sym__cite_suppress_author] = ACTIONS(2613), - [sym__strikeout_open] = ACTIONS(2613), - [sym__subscript_open] = ACTIONS(2613), - [sym__superscript_open] = ACTIONS(2613), - [sym__inline_note_start_token] = ACTIONS(2613), - [sym__strong_emphasis_open_star] = ACTIONS(2613), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2613), - [sym__emphasis_open_underscore] = ACTIONS(2613), - [sym_inline_note_reference] = ACTIONS(2613), - [sym_html_element] = ACTIONS(2613), - [sym__pandoc_line_break] = ACTIONS(2613), + [STATE(272)] = { + [anon_sym_COLON] = ACTIONS(2615), + [sym_entity_reference] = ACTIONS(2615), + [sym_numeric_character_reference] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_BANG_LBRACK] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [aux_sym_pandoc_str_token1] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2615), + [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] = ACTIONS(2615), + [sym__pipe_table_start] = ACTIONS(2615), + [sym__fenced_div_start] = ACTIONS(2615), + [sym__fenced_div_end] = ACTIONS(2615), + [sym_ref_id_specifier] = ACTIONS(2615), + [sym__code_span_start] = ACTIONS(2615), + [sym__html_comment] = ACTIONS(2615), + [sym__autolink] = ACTIONS(2615), + [sym__highlight_span_start] = ACTIONS(2615), + [sym__insert_span_start] = ACTIONS(2615), + [sym__delete_span_start] = ACTIONS(2615), + [sym__edit_comment_span_start] = ACTIONS(2615), + [sym__single_quote_span_open] = ACTIONS(2615), + [sym__double_quote_span_open] = ACTIONS(2615), + [sym__shortcode_open_escaped] = ACTIONS(2615), + [sym__shortcode_open] = ACTIONS(2615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), + [sym__cite_author_in_text] = ACTIONS(2615), + [sym__cite_suppress_author] = ACTIONS(2615), + [sym__strikeout_open] = ACTIONS(2615), + [sym__subscript_open] = ACTIONS(2615), + [sym__superscript_open] = ACTIONS(2615), + [sym__inline_note_start_token] = ACTIONS(2615), + [sym__strong_emphasis_open_star] = ACTIONS(2615), + [sym__strong_emphasis_open_underscore] = ACTIONS(2615), + [sym__emphasis_open_star] = ACTIONS(2615), + [sym__emphasis_open_underscore] = ACTIONS(2615), + [sym_inline_note_reference] = ACTIONS(2615), + [sym_html_element] = ACTIONS(2615), + [sym__pandoc_line_break] = ACTIONS(2615), + [sym_grid_table] = ACTIONS(2615), }, - [STATE(254)] = { - [anon_sym_COLON] = ACTIONS(2617), - [sym_entity_reference] = ACTIONS(2617), - [sym_numeric_character_reference] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_BANG_LBRACK] = ACTIONS(2617), - [anon_sym_DOLLAR] = ACTIONS(2619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [aux_sym_pandoc_str_token1] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2617), - [sym__whitespace] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2617), - [sym__soft_line_ending] = ACTIONS(2617), - [sym__block_close] = ACTIONS(2617), - [sym__block_quote_start] = ACTIONS(2617), - [sym_atx_h1_marker] = ACTIONS(2617), - [sym_atx_h2_marker] = ACTIONS(2617), - [sym_atx_h3_marker] = ACTIONS(2617), - [sym_atx_h4_marker] = ACTIONS(2617), - [sym_atx_h5_marker] = ACTIONS(2617), - [sym_atx_h6_marker] = ACTIONS(2617), - [sym__thematic_break] = ACTIONS(2617), - [sym__list_marker_minus] = ACTIONS(2617), - [sym__list_marker_plus] = ACTIONS(2617), - [sym__list_marker_star] = ACTIONS(2617), - [sym__list_marker_parenthesis] = ACTIONS(2617), - [sym__list_marker_dot] = ACTIONS(2617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_example] = ACTIONS(2617), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2617), - [sym__fenced_code_block_start_backtick] = ACTIONS(2617), - [sym_minus_metadata] = ACTIONS(2617), - [sym__pipe_table_start] = ACTIONS(2617), - [sym__fenced_div_start] = ACTIONS(2617), - [sym__fenced_div_end] = ACTIONS(2617), - [sym_ref_id_specifier] = ACTIONS(2617), - [sym__code_span_start] = ACTIONS(2617), - [sym__html_comment] = ACTIONS(2617), - [sym__autolink] = ACTIONS(2617), - [sym__highlight_span_start] = ACTIONS(2617), - [sym__insert_span_start] = ACTIONS(2617), - [sym__delete_span_start] = ACTIONS(2617), - [sym__edit_comment_span_start] = ACTIONS(2617), - [sym__single_quote_span_open] = ACTIONS(2617), - [sym__double_quote_span_open] = ACTIONS(2617), - [sym__shortcode_open_escaped] = ACTIONS(2617), - [sym__shortcode_open] = ACTIONS(2617), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2617), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2617), - [sym__cite_author_in_text] = ACTIONS(2617), - [sym__cite_suppress_author] = ACTIONS(2617), - [sym__strikeout_open] = ACTIONS(2617), - [sym__subscript_open] = ACTIONS(2617), - [sym__superscript_open] = ACTIONS(2617), - [sym__inline_note_start_token] = ACTIONS(2617), - [sym__strong_emphasis_open_star] = ACTIONS(2617), - [sym__strong_emphasis_open_underscore] = ACTIONS(2617), - [sym__emphasis_open_star] = ACTIONS(2617), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2617), - [sym_html_element] = ACTIONS(2617), - [sym__pandoc_line_break] = ACTIONS(2617), + [STATE(273)] = { + [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2619), + [sym_grid_table] = ACTIONS(2619), }, - [STATE(255)] = { - [anon_sym_COLON] = ACTIONS(2621), - [sym_entity_reference] = ACTIONS(2621), - [sym_numeric_character_reference] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_BANG_LBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [aux_sym_pandoc_str_token1] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2621), - [sym__whitespace] = ACTIONS(2621), - [sym__line_ending] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2621), - [sym__block_close] = ACTIONS(2621), - [sym__block_quote_start] = ACTIONS(2621), - [sym_atx_h1_marker] = ACTIONS(2621), - [sym_atx_h2_marker] = ACTIONS(2621), - [sym_atx_h3_marker] = ACTIONS(2621), - [sym_atx_h4_marker] = ACTIONS(2621), - [sym_atx_h5_marker] = ACTIONS(2621), - [sym_atx_h6_marker] = ACTIONS(2621), - [sym__thematic_break] = ACTIONS(2621), - [sym__list_marker_minus] = ACTIONS(2621), - [sym__list_marker_plus] = ACTIONS(2621), - [sym__list_marker_star] = ACTIONS(2621), - [sym__list_marker_parenthesis] = ACTIONS(2621), - [sym__list_marker_dot] = ACTIONS(2621), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_example] = ACTIONS(2621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2621), - [sym__fenced_code_block_start_backtick] = ACTIONS(2621), - [sym_minus_metadata] = ACTIONS(2621), - [sym__pipe_table_start] = ACTIONS(2621), - [sym__fenced_div_start] = ACTIONS(2621), - [sym__fenced_div_end] = ACTIONS(2621), - [sym_ref_id_specifier] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(2621), - [sym__html_comment] = ACTIONS(2621), - [sym__autolink] = ACTIONS(2621), - [sym__highlight_span_start] = ACTIONS(2621), - [sym__insert_span_start] = ACTIONS(2621), - [sym__delete_span_start] = ACTIONS(2621), - [sym__edit_comment_span_start] = ACTIONS(2621), - [sym__single_quote_span_open] = ACTIONS(2621), - [sym__double_quote_span_open] = ACTIONS(2621), - [sym__shortcode_open_escaped] = ACTIONS(2621), - [sym__shortcode_open] = ACTIONS(2621), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2621), - [sym__cite_author_in_text] = ACTIONS(2621), - [sym__cite_suppress_author] = ACTIONS(2621), - [sym__strikeout_open] = ACTIONS(2621), - [sym__subscript_open] = ACTIONS(2621), - [sym__superscript_open] = ACTIONS(2621), - [sym__inline_note_start_token] = ACTIONS(2621), - [sym__strong_emphasis_open_star] = ACTIONS(2621), - [sym__strong_emphasis_open_underscore] = ACTIONS(2621), - [sym__emphasis_open_star] = ACTIONS(2621), - [sym__emphasis_open_underscore] = ACTIONS(2621), - [sym_inline_note_reference] = ACTIONS(2621), - [sym_html_element] = ACTIONS(2621), - [sym__pandoc_line_break] = ACTIONS(2621), + [STATE(274)] = { + [ts_builtin_sym_end] = ACTIONS(2261), + [anon_sym_COLON] = 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(2623), + [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_line_break] = ACTIONS(2261), + [sym_grid_table] = ACTIONS(2261), }, - [STATE(256)] = { + [STATE(275)] = { [anon_sym_COLON] = ACTIONS(2625), [sym_entity_reference] = ACTIONS(2625), [sym_numeric_character_reference] = ACTIONS(2625), @@ -48420,76 +49955,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2625), [sym_html_element] = ACTIONS(2625), [sym__pandoc_line_break] = ACTIONS(2625), + [sym_grid_table] = ACTIONS(2625), }, - [STATE(257)] = { - [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2629), + [STATE(276)] = { + [ts_builtin_sym_end] = ACTIONS(2267), + [anon_sym_COLON] = 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(2629), + [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_line_break] = ACTIONS(2267), + [sym_grid_table] = ACTIONS(2267), }, - [STATE(258)] = { + [STATE(277)] = { + [ts_builtin_sym_end] = ACTIONS(2189), + [anon_sym_COLON] = ACTIONS(2189), + [sym_entity_reference] = ACTIONS(2189), + [sym_numeric_character_reference] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BANG_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [aux_sym_pandoc_str_token1] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2189), + [sym__whitespace] = ACTIONS(2189), + [sym__line_ending] = ACTIONS(2189), + [sym__soft_line_ending] = ACTIONS(2189), + [sym_block_continuation] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2189), + [sym_atx_h1_marker] = ACTIONS(2189), + [sym_atx_h2_marker] = ACTIONS(2189), + [sym_atx_h3_marker] = ACTIONS(2189), + [sym_atx_h4_marker] = ACTIONS(2189), + [sym_atx_h5_marker] = ACTIONS(2189), + [sym_atx_h6_marker] = ACTIONS(2189), + [sym__thematic_break] = ACTIONS(2189), + [sym__list_marker_minus] = ACTIONS(2189), + [sym__list_marker_plus] = ACTIONS(2189), + [sym__list_marker_star] = ACTIONS(2189), + [sym__list_marker_parenthesis] = ACTIONS(2189), + [sym__list_marker_dot] = ACTIONS(2189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_example] = ACTIONS(2189), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2189), + [sym__fenced_code_block_start_backtick] = ACTIONS(2189), + [sym_minus_metadata] = ACTIONS(2189), + [sym__pipe_table_start] = ACTIONS(2189), + [sym__fenced_div_start] = ACTIONS(2189), + [sym_ref_id_specifier] = ACTIONS(2189), + [sym__code_span_start] = ACTIONS(2189), + [sym__html_comment] = ACTIONS(2189), + [sym__autolink] = ACTIONS(2189), + [sym__highlight_span_start] = ACTIONS(2189), + [sym__insert_span_start] = ACTIONS(2189), + [sym__delete_span_start] = ACTIONS(2189), + [sym__edit_comment_span_start] = ACTIONS(2189), + [sym__single_quote_span_open] = ACTIONS(2189), + [sym__double_quote_span_open] = ACTIONS(2189), + [sym__shortcode_open_escaped] = ACTIONS(2189), + [sym__shortcode_open] = ACTIONS(2189), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2189), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2189), + [sym__cite_author_in_text] = ACTIONS(2189), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2189), + [sym__subscript_open] = ACTIONS(2189), + [sym__superscript_open] = ACTIONS(2189), + [sym__inline_note_start_token] = ACTIONS(2189), + [sym__strong_emphasis_open_star] = ACTIONS(2189), + [sym__strong_emphasis_open_underscore] = ACTIONS(2189), + [sym__emphasis_open_star] = ACTIONS(2189), + [sym__emphasis_open_underscore] = ACTIONS(2189), + [sym_inline_note_reference] = ACTIONS(2189), + [sym_html_element] = ACTIONS(2189), + [sym__pandoc_line_break] = ACTIONS(2189), + [sym_grid_table] = ACTIONS(2189), + }, + [STATE(278)] = { [anon_sym_COLON] = ACTIONS(2633), [sym_entity_reference] = ACTIONS(2633), [sym_numeric_character_reference] = ACTIONS(2633), @@ -48556,825 +50162,561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2633), [sym_html_element] = ACTIONS(2633), [sym__pandoc_line_break] = ACTIONS(2633), + [sym_grid_table] = ACTIONS(2633), }, - [STATE(259)] = { - [anon_sym_COLON] = ACTIONS(2637), - [sym_entity_reference] = ACTIONS(2637), - [sym_numeric_character_reference] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_BANG_LBRACK] = ACTIONS(2637), - [anon_sym_DOLLAR] = ACTIONS(2639), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [aux_sym_pandoc_str_token1] = ACTIONS(2639), - [anon_sym_PIPE] = ACTIONS(2637), - [sym__whitespace] = ACTIONS(2637), - [sym__line_ending] = ACTIONS(2637), - [sym__soft_line_ending] = ACTIONS(2637), - [sym__block_close] = ACTIONS(2637), - [sym__block_quote_start] = ACTIONS(2637), - [sym_atx_h1_marker] = ACTIONS(2637), - [sym_atx_h2_marker] = ACTIONS(2637), - [sym_atx_h3_marker] = ACTIONS(2637), - [sym_atx_h4_marker] = ACTIONS(2637), - [sym_atx_h5_marker] = ACTIONS(2637), - [sym_atx_h6_marker] = ACTIONS(2637), - [sym__thematic_break] = ACTIONS(2637), - [sym__list_marker_minus] = ACTIONS(2637), - [sym__list_marker_plus] = ACTIONS(2637), - [sym__list_marker_star] = ACTIONS(2637), - [sym__list_marker_parenthesis] = ACTIONS(2637), - [sym__list_marker_dot] = ACTIONS(2637), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_example] = ACTIONS(2637), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2637), - [sym__fenced_code_block_start_backtick] = ACTIONS(2637), - [sym_minus_metadata] = ACTIONS(2637), - [sym__pipe_table_start] = ACTIONS(2637), - [sym__fenced_div_start] = ACTIONS(2637), - [sym__fenced_div_end] = ACTIONS(2637), - [sym_ref_id_specifier] = ACTIONS(2637), - [sym__code_span_start] = ACTIONS(2637), - [sym__html_comment] = ACTIONS(2637), - [sym__autolink] = ACTIONS(2637), - [sym__highlight_span_start] = ACTIONS(2637), - [sym__insert_span_start] = ACTIONS(2637), - [sym__delete_span_start] = ACTIONS(2637), - [sym__edit_comment_span_start] = ACTIONS(2637), - [sym__single_quote_span_open] = ACTIONS(2637), - [sym__double_quote_span_open] = ACTIONS(2637), - [sym__shortcode_open_escaped] = ACTIONS(2637), - [sym__shortcode_open] = ACTIONS(2637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2637), - [sym__cite_author_in_text] = ACTIONS(2637), - [sym__cite_suppress_author] = ACTIONS(2637), - [sym__strikeout_open] = ACTIONS(2637), - [sym__subscript_open] = ACTIONS(2637), - [sym__superscript_open] = ACTIONS(2637), - [sym__inline_note_start_token] = ACTIONS(2637), - [sym__strong_emphasis_open_star] = ACTIONS(2637), - [sym__strong_emphasis_open_underscore] = ACTIONS(2637), - [sym__emphasis_open_star] = ACTIONS(2637), - [sym__emphasis_open_underscore] = ACTIONS(2637), - [sym_inline_note_reference] = ACTIONS(2637), - [sym_html_element] = ACTIONS(2637), - [sym__pandoc_line_break] = ACTIONS(2637), - }, - [STATE(260)] = { - [anon_sym_COLON] = ACTIONS(2641), - [sym_entity_reference] = ACTIONS(2641), - [sym_numeric_character_reference] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_BANG_LBRACK] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [aux_sym_pandoc_str_token1] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2641), - [sym__whitespace] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2641), - [sym__soft_line_ending] = ACTIONS(2641), - [sym__block_close] = ACTIONS(2641), - [sym__block_quote_start] = ACTIONS(2641), - [sym_atx_h1_marker] = ACTIONS(2641), - [sym_atx_h2_marker] = ACTIONS(2641), - [sym_atx_h3_marker] = ACTIONS(2641), - [sym_atx_h4_marker] = ACTIONS(2641), - [sym_atx_h5_marker] = ACTIONS(2641), - [sym_atx_h6_marker] = ACTIONS(2641), - [sym__thematic_break] = ACTIONS(2641), - [sym__list_marker_minus] = ACTIONS(2641), - [sym__list_marker_plus] = ACTIONS(2641), - [sym__list_marker_star] = ACTIONS(2641), - [sym__list_marker_parenthesis] = ACTIONS(2641), - [sym__list_marker_dot] = ACTIONS(2641), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_example] = ACTIONS(2641), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2641), - [sym__fenced_code_block_start_backtick] = ACTIONS(2641), - [sym_minus_metadata] = ACTIONS(2641), - [sym__pipe_table_start] = ACTIONS(2641), - [sym__fenced_div_start] = ACTIONS(2641), - [sym__fenced_div_end] = ACTIONS(2641), - [sym_ref_id_specifier] = ACTIONS(2641), - [sym__code_span_start] = ACTIONS(2641), - [sym__html_comment] = ACTIONS(2641), - [sym__autolink] = ACTIONS(2641), - [sym__highlight_span_start] = ACTIONS(2641), - [sym__insert_span_start] = ACTIONS(2641), - [sym__delete_span_start] = ACTIONS(2641), - [sym__edit_comment_span_start] = ACTIONS(2641), - [sym__single_quote_span_open] = ACTIONS(2641), - [sym__double_quote_span_open] = ACTIONS(2641), - [sym__shortcode_open_escaped] = ACTIONS(2641), - [sym__shortcode_open] = ACTIONS(2641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2641), - [sym__cite_author_in_text] = ACTIONS(2641), - [sym__cite_suppress_author] = ACTIONS(2641), - [sym__strikeout_open] = ACTIONS(2641), - [sym__subscript_open] = ACTIONS(2641), - [sym__superscript_open] = ACTIONS(2641), - [sym__inline_note_start_token] = ACTIONS(2641), - [sym__strong_emphasis_open_star] = ACTIONS(2641), - [sym__strong_emphasis_open_underscore] = ACTIONS(2641), - [sym__emphasis_open_star] = ACTIONS(2641), - [sym__emphasis_open_underscore] = ACTIONS(2641), - [sym_inline_note_reference] = ACTIONS(2641), - [sym_html_element] = ACTIONS(2641), - [sym__pandoc_line_break] = ACTIONS(2641), - }, - [STATE(261)] = { - [anon_sym_COLON] = ACTIONS(2645), - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [sym__whitespace] = ACTIONS(2645), - [sym__line_ending] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2645), - [sym__block_close] = ACTIONS(2645), - [sym__block_quote_start] = ACTIONS(2645), - [sym_atx_h1_marker] = ACTIONS(2645), - [sym_atx_h2_marker] = ACTIONS(2645), - [sym_atx_h3_marker] = ACTIONS(2645), - [sym_atx_h4_marker] = ACTIONS(2645), - [sym_atx_h5_marker] = ACTIONS(2645), - [sym_atx_h6_marker] = ACTIONS(2645), - [sym__thematic_break] = ACTIONS(2645), - [sym__list_marker_minus] = ACTIONS(2645), - [sym__list_marker_plus] = ACTIONS(2645), - [sym__list_marker_star] = ACTIONS(2645), - [sym__list_marker_parenthesis] = ACTIONS(2645), - [sym__list_marker_dot] = ACTIONS(2645), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_example] = ACTIONS(2645), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2645), - [sym__fenced_code_block_start_backtick] = ACTIONS(2645), - [sym_minus_metadata] = ACTIONS(2645), - [sym__pipe_table_start] = ACTIONS(2645), - [sym__fenced_div_start] = ACTIONS(2645), - [sym__fenced_div_end] = ACTIONS(2645), - [sym_ref_id_specifier] = ACTIONS(2645), - [sym__code_span_start] = ACTIONS(2645), - [sym__html_comment] = ACTIONS(2645), - [sym__autolink] = ACTIONS(2645), - [sym__highlight_span_start] = ACTIONS(2645), - [sym__insert_span_start] = ACTIONS(2645), - [sym__delete_span_start] = ACTIONS(2645), - [sym__edit_comment_span_start] = ACTIONS(2645), - [sym__single_quote_span_open] = ACTIONS(2645), - [sym__double_quote_span_open] = ACTIONS(2645), - [sym__shortcode_open_escaped] = ACTIONS(2645), - [sym__shortcode_open] = ACTIONS(2645), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2645), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2645), - [sym__cite_author_in_text] = ACTIONS(2645), - [sym__cite_suppress_author] = ACTIONS(2645), - [sym__strikeout_open] = ACTIONS(2645), - [sym__subscript_open] = ACTIONS(2645), - [sym__superscript_open] = ACTIONS(2645), - [sym__inline_note_start_token] = ACTIONS(2645), - [sym__strong_emphasis_open_star] = ACTIONS(2645), - [sym__strong_emphasis_open_underscore] = ACTIONS(2645), - [sym__emphasis_open_star] = ACTIONS(2645), - [sym__emphasis_open_underscore] = ACTIONS(2645), - [sym_inline_note_reference] = ACTIONS(2645), - [sym_html_element] = ACTIONS(2645), - [sym__pandoc_line_break] = ACTIONS(2645), - }, - [STATE(262)] = { - [anon_sym_COLON] = ACTIONS(2649), - [sym_entity_reference] = ACTIONS(2649), - [sym_numeric_character_reference] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_BANG_LBRACK] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [aux_sym_pandoc_str_token1] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2649), - [sym__whitespace] = ACTIONS(2649), - [sym__line_ending] = ACTIONS(2649), - [sym__soft_line_ending] = ACTIONS(2649), - [sym__block_close] = ACTIONS(2649), - [sym__block_quote_start] = ACTIONS(2649), - [sym_atx_h1_marker] = ACTIONS(2649), - [sym_atx_h2_marker] = ACTIONS(2649), - [sym_atx_h3_marker] = ACTIONS(2649), - [sym_atx_h4_marker] = ACTIONS(2649), - [sym_atx_h5_marker] = ACTIONS(2649), - [sym_atx_h6_marker] = ACTIONS(2649), - [sym__thematic_break] = ACTIONS(2649), - [sym__list_marker_minus] = ACTIONS(2649), - [sym__list_marker_plus] = ACTIONS(2649), - [sym__list_marker_star] = ACTIONS(2649), - [sym__list_marker_parenthesis] = ACTIONS(2649), - [sym__list_marker_dot] = ACTIONS(2649), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_example] = ACTIONS(2649), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2649), - [sym__fenced_code_block_start_backtick] = ACTIONS(2649), - [sym_minus_metadata] = ACTIONS(2649), - [sym__pipe_table_start] = ACTIONS(2649), - [sym__fenced_div_start] = ACTIONS(2649), - [sym__fenced_div_end] = ACTIONS(2649), - [sym_ref_id_specifier] = ACTIONS(2649), - [sym__code_span_start] = ACTIONS(2649), - [sym__html_comment] = ACTIONS(2649), - [sym__autolink] = ACTIONS(2649), - [sym__highlight_span_start] = ACTIONS(2649), - [sym__insert_span_start] = ACTIONS(2649), - [sym__delete_span_start] = ACTIONS(2649), - [sym__edit_comment_span_start] = ACTIONS(2649), - [sym__single_quote_span_open] = ACTIONS(2649), - [sym__double_quote_span_open] = ACTIONS(2649), - [sym__shortcode_open_escaped] = ACTIONS(2649), - [sym__shortcode_open] = ACTIONS(2649), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2649), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2649), - [sym__cite_author_in_text] = ACTIONS(2649), - [sym__cite_suppress_author] = ACTIONS(2649), - [sym__strikeout_open] = ACTIONS(2649), - [sym__subscript_open] = ACTIONS(2649), - [sym__superscript_open] = ACTIONS(2649), - [sym__inline_note_start_token] = ACTIONS(2649), - [sym__strong_emphasis_open_star] = ACTIONS(2649), - [sym__strong_emphasis_open_underscore] = ACTIONS(2649), - [sym__emphasis_open_star] = ACTIONS(2649), - [sym__emphasis_open_underscore] = ACTIONS(2649), - [sym_inline_note_reference] = ACTIONS(2649), - [sym_html_element] = ACTIONS(2649), - [sym__pandoc_line_break] = ACTIONS(2649), - }, - [STATE(263)] = { - [anon_sym_COLON] = ACTIONS(2653), - [sym_entity_reference] = ACTIONS(2653), - [sym_numeric_character_reference] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_BANG_LBRACK] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [aux_sym_pandoc_str_token1] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2653), - [sym__whitespace] = ACTIONS(2653), - [sym__line_ending] = ACTIONS(2653), - [sym__soft_line_ending] = ACTIONS(2653), - [sym__block_close] = ACTIONS(2653), - [sym__block_quote_start] = ACTIONS(2653), - [sym_atx_h1_marker] = ACTIONS(2653), - [sym_atx_h2_marker] = ACTIONS(2653), - [sym_atx_h3_marker] = ACTIONS(2653), - [sym_atx_h4_marker] = ACTIONS(2653), - [sym_atx_h5_marker] = ACTIONS(2653), - [sym_atx_h6_marker] = ACTIONS(2653), - [sym__thematic_break] = ACTIONS(2653), - [sym__list_marker_minus] = ACTIONS(2653), - [sym__list_marker_plus] = ACTIONS(2653), - [sym__list_marker_star] = ACTIONS(2653), - [sym__list_marker_parenthesis] = ACTIONS(2653), - [sym__list_marker_dot] = ACTIONS(2653), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_example] = ACTIONS(2653), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), - [sym__fenced_code_block_start_backtick] = ACTIONS(2653), - [sym_minus_metadata] = ACTIONS(2653), - [sym__pipe_table_start] = ACTIONS(2653), - [sym__fenced_div_start] = ACTIONS(2653), - [sym__fenced_div_end] = ACTIONS(2653), - [sym_ref_id_specifier] = ACTIONS(2653), - [sym__code_span_start] = ACTIONS(2653), - [sym__html_comment] = ACTIONS(2653), - [sym__autolink] = ACTIONS(2653), - [sym__highlight_span_start] = ACTIONS(2653), - [sym__insert_span_start] = ACTIONS(2653), - [sym__delete_span_start] = ACTIONS(2653), - [sym__edit_comment_span_start] = ACTIONS(2653), - [sym__single_quote_span_open] = ACTIONS(2653), - [sym__double_quote_span_open] = ACTIONS(2653), - [sym__shortcode_open_escaped] = ACTIONS(2653), - [sym__shortcode_open] = ACTIONS(2653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), - [sym__cite_author_in_text] = ACTIONS(2653), - [sym__cite_suppress_author] = ACTIONS(2653), - [sym__strikeout_open] = ACTIONS(2653), - [sym__subscript_open] = ACTIONS(2653), - [sym__superscript_open] = ACTIONS(2653), - [sym__inline_note_start_token] = ACTIONS(2653), - [sym__strong_emphasis_open_star] = ACTIONS(2653), - [sym__strong_emphasis_open_underscore] = ACTIONS(2653), - [sym__emphasis_open_star] = ACTIONS(2653), - [sym__emphasis_open_underscore] = ACTIONS(2653), - [sym_inline_note_reference] = ACTIONS(2653), - [sym_html_element] = ACTIONS(2653), - [sym__pandoc_line_break] = ACTIONS(2653), + [STATE(279)] = { + [anon_sym_COLON] = ACTIONS(2189), + [sym_entity_reference] = ACTIONS(2189), + [sym_numeric_character_reference] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_BANG_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [aux_sym_pandoc_str_token1] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2189), + [sym__whitespace] = ACTIONS(2189), + [sym__line_ending] = ACTIONS(2189), + [sym__soft_line_ending] = ACTIONS(2189), + [sym__block_close] = ACTIONS(2189), + [sym_block_continuation] = ACTIONS(2637), + [sym__block_quote_start] = ACTIONS(2189), + [sym_atx_h1_marker] = ACTIONS(2189), + [sym_atx_h2_marker] = ACTIONS(2189), + [sym_atx_h3_marker] = ACTIONS(2189), + [sym_atx_h4_marker] = ACTIONS(2189), + [sym_atx_h5_marker] = ACTIONS(2189), + [sym_atx_h6_marker] = ACTIONS(2189), + [sym__thematic_break] = ACTIONS(2189), + [sym__list_marker_minus] = ACTIONS(2189), + [sym__list_marker_plus] = ACTIONS(2189), + [sym__list_marker_star] = ACTIONS(2189), + [sym__list_marker_parenthesis] = ACTIONS(2189), + [sym__list_marker_dot] = ACTIONS(2189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2189), + [sym__list_marker_example] = ACTIONS(2189), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2189), + [sym__fenced_code_block_start_backtick] = ACTIONS(2189), + [sym_minus_metadata] = ACTIONS(2189), + [sym__pipe_table_start] = ACTIONS(2189), + [sym__fenced_div_start] = ACTIONS(2189), + [sym_ref_id_specifier] = ACTIONS(2189), + [sym__code_span_start] = ACTIONS(2189), + [sym__html_comment] = ACTIONS(2189), + [sym__autolink] = ACTIONS(2189), + [sym__highlight_span_start] = ACTIONS(2189), + [sym__insert_span_start] = ACTIONS(2189), + [sym__delete_span_start] = ACTIONS(2189), + [sym__edit_comment_span_start] = ACTIONS(2189), + [sym__single_quote_span_open] = ACTIONS(2189), + [sym__double_quote_span_open] = ACTIONS(2189), + [sym__shortcode_open_escaped] = ACTIONS(2189), + [sym__shortcode_open] = ACTIONS(2189), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2189), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2189), + [sym__cite_author_in_text] = ACTIONS(2189), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2189), + [sym__subscript_open] = ACTIONS(2189), + [sym__superscript_open] = ACTIONS(2189), + [sym__inline_note_start_token] = ACTIONS(2189), + [sym__strong_emphasis_open_star] = ACTIONS(2189), + [sym__strong_emphasis_open_underscore] = ACTIONS(2189), + [sym__emphasis_open_star] = ACTIONS(2189), + [sym__emphasis_open_underscore] = ACTIONS(2189), + [sym_inline_note_reference] = ACTIONS(2189), + [sym_html_element] = ACTIONS(2189), + [sym__pandoc_line_break] = ACTIONS(2189), + [sym_grid_table] = ACTIONS(2189), }, - [STATE(264)] = { - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [sym__whitespace] = ACTIONS(2657), - [sym__line_ending] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2657), - [sym__block_close] = ACTIONS(2657), - [sym__block_quote_start] = ACTIONS(2657), - [sym_atx_h1_marker] = ACTIONS(2657), - [sym_atx_h2_marker] = ACTIONS(2657), - [sym_atx_h3_marker] = ACTIONS(2657), - [sym_atx_h4_marker] = ACTIONS(2657), - [sym_atx_h5_marker] = ACTIONS(2657), - [sym_atx_h6_marker] = ACTIONS(2657), - [sym__thematic_break] = ACTIONS(2657), - [sym__list_marker_minus] = ACTIONS(2657), - [sym__list_marker_plus] = ACTIONS(2657), - [sym__list_marker_star] = ACTIONS(2657), - [sym__list_marker_parenthesis] = ACTIONS(2657), - [sym__list_marker_dot] = ACTIONS(2657), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_example] = ACTIONS(2657), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), - [sym__fenced_code_block_start_backtick] = ACTIONS(2657), - [sym_minus_metadata] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym__fenced_div_end] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), + [STATE(280)] = { + [anon_sym_COLON] = ACTIONS(2639), + [sym_entity_reference] = ACTIONS(2639), + [sym_numeric_character_reference] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_BANG_LBRACK] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2641), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [aux_sym_pandoc_str_token1] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2639), + [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] = ACTIONS(2639), + [sym__pipe_table_start] = ACTIONS(2639), + [sym__fenced_div_start] = ACTIONS(2639), + [sym__fenced_div_end] = ACTIONS(2639), + [sym_ref_id_specifier] = ACTIONS(2639), + [sym__code_span_start] = ACTIONS(2639), + [sym__html_comment] = ACTIONS(2639), + [sym__autolink] = ACTIONS(2639), + [sym__highlight_span_start] = ACTIONS(2639), + [sym__insert_span_start] = ACTIONS(2639), + [sym__delete_span_start] = ACTIONS(2639), + [sym__edit_comment_span_start] = ACTIONS(2639), + [sym__single_quote_span_open] = ACTIONS(2639), + [sym__double_quote_span_open] = ACTIONS(2639), + [sym__shortcode_open_escaped] = ACTIONS(2639), + [sym__shortcode_open] = ACTIONS(2639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2639), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2639), + [sym__cite_author_in_text] = ACTIONS(2639), + [sym__cite_suppress_author] = ACTIONS(2639), + [sym__strikeout_open] = ACTIONS(2639), + [sym__subscript_open] = ACTIONS(2639), + [sym__superscript_open] = ACTIONS(2639), + [sym__inline_note_start_token] = ACTIONS(2639), + [sym__strong_emphasis_open_star] = ACTIONS(2639), + [sym__strong_emphasis_open_underscore] = ACTIONS(2639), + [sym__emphasis_open_star] = ACTIONS(2639), + [sym__emphasis_open_underscore] = ACTIONS(2639), + [sym_inline_note_reference] = ACTIONS(2639), + [sym_html_element] = ACTIONS(2639), + [sym__pandoc_line_break] = ACTIONS(2639), + [sym_grid_table] = ACTIONS(2639), }, - [STATE(265)] = { - [anon_sym_COLON] = ACTIONS(2661), - [sym_entity_reference] = ACTIONS(2661), - [sym_numeric_character_reference] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_BANG_LBRACK] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(2663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [aux_sym_pandoc_str_token1] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2661), - [sym__whitespace] = ACTIONS(2661), - [sym__line_ending] = ACTIONS(2661), - [sym__soft_line_ending] = ACTIONS(2661), - [sym__block_close] = ACTIONS(2661), - [sym__block_quote_start] = ACTIONS(2661), - [sym_atx_h1_marker] = ACTIONS(2661), - [sym_atx_h2_marker] = ACTIONS(2661), - [sym_atx_h3_marker] = ACTIONS(2661), - [sym_atx_h4_marker] = ACTIONS(2661), - [sym_atx_h5_marker] = ACTIONS(2661), - [sym_atx_h6_marker] = ACTIONS(2661), - [sym__thematic_break] = ACTIONS(2661), - [sym__list_marker_minus] = ACTIONS(2661), - [sym__list_marker_plus] = ACTIONS(2661), - [sym__list_marker_star] = ACTIONS(2661), - [sym__list_marker_parenthesis] = ACTIONS(2661), - [sym__list_marker_dot] = ACTIONS(2661), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_example] = ACTIONS(2661), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), - [sym__fenced_code_block_start_backtick] = ACTIONS(2661), - [sym_minus_metadata] = ACTIONS(2661), - [sym__pipe_table_start] = ACTIONS(2661), - [sym__fenced_div_start] = ACTIONS(2661), - [sym__fenced_div_end] = ACTIONS(2661), - [sym_ref_id_specifier] = ACTIONS(2661), - [sym__code_span_start] = ACTIONS(2661), - [sym__html_comment] = ACTIONS(2661), - [sym__autolink] = ACTIONS(2661), - [sym__highlight_span_start] = ACTIONS(2661), - [sym__insert_span_start] = ACTIONS(2661), - [sym__delete_span_start] = ACTIONS(2661), - [sym__edit_comment_span_start] = ACTIONS(2661), - [sym__single_quote_span_open] = ACTIONS(2661), - [sym__double_quote_span_open] = ACTIONS(2661), - [sym__shortcode_open_escaped] = ACTIONS(2661), - [sym__shortcode_open] = ACTIONS(2661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), - [sym__cite_author_in_text] = ACTIONS(2661), - [sym__cite_suppress_author] = ACTIONS(2661), - [sym__strikeout_open] = ACTIONS(2661), - [sym__subscript_open] = ACTIONS(2661), - [sym__superscript_open] = ACTIONS(2661), - [sym__inline_note_start_token] = ACTIONS(2661), - [sym__strong_emphasis_open_star] = ACTIONS(2661), - [sym__strong_emphasis_open_underscore] = ACTIONS(2661), - [sym__emphasis_open_star] = ACTIONS(2661), - [sym__emphasis_open_underscore] = ACTIONS(2661), - [sym_inline_note_reference] = ACTIONS(2661), - [sym_html_element] = ACTIONS(2661), - [sym__pandoc_line_break] = ACTIONS(2661), + [STATE(281)] = { + [anon_sym_COLON] = ACTIONS(2643), + [sym_entity_reference] = ACTIONS(2643), + [sym_numeric_character_reference] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_BANG_LBRACK] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [aux_sym_pandoc_str_token1] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2643), + [sym__whitespace] = ACTIONS(2643), + [sym__line_ending] = ACTIONS(2643), + [sym__soft_line_ending] = ACTIONS(2643), + [sym__block_close] = ACTIONS(2643), + [sym__block_quote_start] = ACTIONS(2643), + [sym_atx_h1_marker] = ACTIONS(2643), + [sym_atx_h2_marker] = ACTIONS(2643), + [sym_atx_h3_marker] = ACTIONS(2643), + [sym_atx_h4_marker] = ACTIONS(2643), + [sym_atx_h5_marker] = ACTIONS(2643), + [sym_atx_h6_marker] = ACTIONS(2643), + [sym__thematic_break] = ACTIONS(2643), + [sym__list_marker_minus] = ACTIONS(2643), + [sym__list_marker_plus] = ACTIONS(2643), + [sym__list_marker_star] = ACTIONS(2643), + [sym__list_marker_parenthesis] = ACTIONS(2643), + [sym__list_marker_dot] = ACTIONS(2643), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_example] = ACTIONS(2643), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2643), + [sym__fenced_code_block_start_backtick] = ACTIONS(2643), + [sym_minus_metadata] = ACTIONS(2643), + [sym__pipe_table_start] = ACTIONS(2643), + [sym__fenced_div_start] = ACTIONS(2643), + [sym__fenced_div_end] = ACTIONS(2643), + [sym_ref_id_specifier] = ACTIONS(2643), + [sym__code_span_start] = ACTIONS(2643), + [sym__html_comment] = ACTIONS(2643), + [sym__autolink] = ACTIONS(2643), + [sym__highlight_span_start] = ACTIONS(2643), + [sym__insert_span_start] = ACTIONS(2643), + [sym__delete_span_start] = ACTIONS(2643), + [sym__edit_comment_span_start] = ACTIONS(2643), + [sym__single_quote_span_open] = ACTIONS(2643), + [sym__double_quote_span_open] = ACTIONS(2643), + [sym__shortcode_open_escaped] = ACTIONS(2643), + [sym__shortcode_open] = ACTIONS(2643), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2643), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2643), + [sym__cite_author_in_text] = ACTIONS(2643), + [sym__cite_suppress_author] = ACTIONS(2643), + [sym__strikeout_open] = ACTIONS(2643), + [sym__subscript_open] = ACTIONS(2643), + [sym__superscript_open] = ACTIONS(2643), + [sym__inline_note_start_token] = ACTIONS(2643), + [sym__strong_emphasis_open_star] = ACTIONS(2643), + [sym__strong_emphasis_open_underscore] = ACTIONS(2643), + [sym__emphasis_open_star] = ACTIONS(2643), + [sym__emphasis_open_underscore] = ACTIONS(2643), + [sym_inline_note_reference] = ACTIONS(2643), + [sym_html_element] = ACTIONS(2643), + [sym__pandoc_line_break] = ACTIONS(2643), + [sym_grid_table] = ACTIONS(2643), }, - [STATE(266)] = { - [anon_sym_COLON] = ACTIONS(2665), - [sym_entity_reference] = ACTIONS(2665), - [sym_numeric_character_reference] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_BANG_LBRACK] = ACTIONS(2665), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [aux_sym_pandoc_str_token1] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2665), - [sym__whitespace] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2665), - [sym__soft_line_ending] = ACTIONS(2665), - [sym__block_close] = ACTIONS(2665), - [sym__block_quote_start] = ACTIONS(2665), - [sym_atx_h1_marker] = ACTIONS(2665), - [sym_atx_h2_marker] = ACTIONS(2665), - [sym_atx_h3_marker] = ACTIONS(2665), - [sym_atx_h4_marker] = ACTIONS(2665), - [sym_atx_h5_marker] = ACTIONS(2665), - [sym_atx_h6_marker] = ACTIONS(2665), - [sym__thematic_break] = ACTIONS(2665), - [sym__list_marker_minus] = ACTIONS(2665), - [sym__list_marker_plus] = ACTIONS(2665), - [sym__list_marker_star] = ACTIONS(2665), - [sym__list_marker_parenthesis] = ACTIONS(2665), - [sym__list_marker_dot] = ACTIONS(2665), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_example] = ACTIONS(2665), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), - [sym__fenced_code_block_start_backtick] = ACTIONS(2665), - [sym_minus_metadata] = ACTIONS(2665), - [sym__pipe_table_start] = ACTIONS(2665), - [sym__fenced_div_start] = ACTIONS(2665), - [sym__fenced_div_end] = ACTIONS(2665), - [sym_ref_id_specifier] = ACTIONS(2665), - [sym__code_span_start] = ACTIONS(2665), - [sym__html_comment] = ACTIONS(2665), - [sym__autolink] = ACTIONS(2665), - [sym__highlight_span_start] = ACTIONS(2665), - [sym__insert_span_start] = ACTIONS(2665), - [sym__delete_span_start] = ACTIONS(2665), - [sym__edit_comment_span_start] = ACTIONS(2665), - [sym__single_quote_span_open] = ACTIONS(2665), - [sym__double_quote_span_open] = ACTIONS(2665), - [sym__shortcode_open_escaped] = ACTIONS(2665), - [sym__shortcode_open] = ACTIONS(2665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), - [sym__cite_author_in_text] = ACTIONS(2665), - [sym__cite_suppress_author] = ACTIONS(2665), - [sym__strikeout_open] = ACTIONS(2665), - [sym__subscript_open] = ACTIONS(2665), - [sym__superscript_open] = ACTIONS(2665), - [sym__inline_note_start_token] = ACTIONS(2665), - [sym__strong_emphasis_open_star] = ACTIONS(2665), - [sym__strong_emphasis_open_underscore] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2665), - [sym__emphasis_open_underscore] = ACTIONS(2665), - [sym_inline_note_reference] = ACTIONS(2665), - [sym_html_element] = ACTIONS(2665), - [sym__pandoc_line_break] = ACTIONS(2665), + [STATE(282)] = { + [ts_builtin_sym_end] = ACTIONS(2201), + [anon_sym_COLON] = ACTIONS(2201), + [sym_entity_reference] = ACTIONS(2201), + [sym_numeric_character_reference] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_BANG_LBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [aux_sym_pandoc_str_token1] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2201), + [sym__whitespace] = ACTIONS(2201), + [sym__line_ending] = ACTIONS(2201), + [sym__soft_line_ending] = ACTIONS(2201), + [sym_block_continuation] = ACTIONS(2647), + [sym__block_quote_start] = ACTIONS(2201), + [sym_atx_h1_marker] = ACTIONS(2201), + [sym_atx_h2_marker] = ACTIONS(2201), + [sym_atx_h3_marker] = ACTIONS(2201), + [sym_atx_h4_marker] = ACTIONS(2201), + [sym_atx_h5_marker] = ACTIONS(2201), + [sym_atx_h6_marker] = ACTIONS(2201), + [sym__thematic_break] = ACTIONS(2201), + [sym__list_marker_minus] = ACTIONS(2201), + [sym__list_marker_plus] = ACTIONS(2201), + [sym__list_marker_star] = ACTIONS(2201), + [sym__list_marker_parenthesis] = ACTIONS(2201), + [sym__list_marker_dot] = ACTIONS(2201), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_example] = ACTIONS(2201), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2201), + [sym__fenced_code_block_start_backtick] = ACTIONS(2201), + [sym_minus_metadata] = ACTIONS(2201), + [sym__pipe_table_start] = ACTIONS(2201), + [sym__fenced_div_start] = ACTIONS(2201), + [sym_ref_id_specifier] = ACTIONS(2201), + [sym__code_span_start] = ACTIONS(2201), + [sym__html_comment] = ACTIONS(2201), + [sym__autolink] = ACTIONS(2201), + [sym__highlight_span_start] = ACTIONS(2201), + [sym__insert_span_start] = ACTIONS(2201), + [sym__delete_span_start] = ACTIONS(2201), + [sym__edit_comment_span_start] = ACTIONS(2201), + [sym__single_quote_span_open] = ACTIONS(2201), + [sym__double_quote_span_open] = ACTIONS(2201), + [sym__shortcode_open_escaped] = ACTIONS(2201), + [sym__shortcode_open] = ACTIONS(2201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2201), + [sym__cite_author_in_text] = ACTIONS(2201), + [sym__cite_suppress_author] = ACTIONS(2201), + [sym__strikeout_open] = ACTIONS(2201), + [sym__subscript_open] = ACTIONS(2201), + [sym__superscript_open] = ACTIONS(2201), + [sym__inline_note_start_token] = ACTIONS(2201), + [sym__strong_emphasis_open_star] = ACTIONS(2201), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2201), + [sym__emphasis_open_underscore] = ACTIONS(2201), + [sym_inline_note_reference] = ACTIONS(2201), + [sym_html_element] = ACTIONS(2201), + [sym__pandoc_line_break] = ACTIONS(2201), + [sym_grid_table] = ACTIONS(2201), }, - [STATE(267)] = { - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [sym__whitespace] = ACTIONS(2669), - [sym__line_ending] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2669), - [sym__block_close] = ACTIONS(2669), - [sym__block_quote_start] = ACTIONS(2669), - [sym_atx_h1_marker] = ACTIONS(2669), - [sym_atx_h2_marker] = ACTIONS(2669), - [sym_atx_h3_marker] = ACTIONS(2669), - [sym_atx_h4_marker] = ACTIONS(2669), - [sym_atx_h5_marker] = ACTIONS(2669), - [sym_atx_h6_marker] = ACTIONS(2669), - [sym__thematic_break] = ACTIONS(2669), - [sym__list_marker_minus] = ACTIONS(2669), - [sym__list_marker_plus] = ACTIONS(2669), - [sym__list_marker_star] = ACTIONS(2669), - [sym__list_marker_parenthesis] = ACTIONS(2669), - [sym__list_marker_dot] = ACTIONS(2669), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_example] = ACTIONS(2669), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), - [sym__fenced_code_block_start_backtick] = ACTIONS(2669), - [sym_minus_metadata] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym__fenced_div_end] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), + [STATE(283)] = { + [anon_sym_COLON] = ACTIONS(2195), + [sym_entity_reference] = ACTIONS(2195), + [sym_numeric_character_reference] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_BANG_LBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [aux_sym_pandoc_str_token1] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2195), + [sym__whitespace] = ACTIONS(2195), + [sym__line_ending] = ACTIONS(2195), + [sym__soft_line_ending] = ACTIONS(2195), + [sym__block_close] = ACTIONS(2195), + [sym_block_continuation] = ACTIONS(2649), + [sym__block_quote_start] = ACTIONS(2195), + [sym_atx_h1_marker] = ACTIONS(2195), + [sym_atx_h2_marker] = ACTIONS(2195), + [sym_atx_h3_marker] = ACTIONS(2195), + [sym_atx_h4_marker] = ACTIONS(2195), + [sym_atx_h5_marker] = ACTIONS(2195), + [sym_atx_h6_marker] = ACTIONS(2195), + [sym__thematic_break] = ACTIONS(2195), + [sym__list_marker_minus] = ACTIONS(2195), + [sym__list_marker_plus] = ACTIONS(2195), + [sym__list_marker_star] = ACTIONS(2195), + [sym__list_marker_parenthesis] = ACTIONS(2195), + [sym__list_marker_dot] = ACTIONS(2195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_example] = ACTIONS(2195), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2195), + [sym__fenced_code_block_start_backtick] = ACTIONS(2195), + [sym_minus_metadata] = ACTIONS(2195), + [sym__pipe_table_start] = ACTIONS(2195), + [sym__fenced_div_start] = ACTIONS(2195), + [sym_ref_id_specifier] = ACTIONS(2195), + [sym__code_span_start] = ACTIONS(2195), + [sym__html_comment] = ACTIONS(2195), + [sym__autolink] = ACTIONS(2195), + [sym__highlight_span_start] = ACTIONS(2195), + [sym__insert_span_start] = ACTIONS(2195), + [sym__delete_span_start] = ACTIONS(2195), + [sym__edit_comment_span_start] = ACTIONS(2195), + [sym__single_quote_span_open] = ACTIONS(2195), + [sym__double_quote_span_open] = ACTIONS(2195), + [sym__shortcode_open_escaped] = ACTIONS(2195), + [sym__shortcode_open] = ACTIONS(2195), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2195), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2195), + [sym__cite_author_in_text] = ACTIONS(2195), + [sym__cite_suppress_author] = ACTIONS(2195), + [sym__strikeout_open] = ACTIONS(2195), + [sym__subscript_open] = ACTIONS(2195), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2195), + [sym__strong_emphasis_open_star] = ACTIONS(2195), + [sym__strong_emphasis_open_underscore] = ACTIONS(2195), + [sym__emphasis_open_star] = ACTIONS(2195), + [sym__emphasis_open_underscore] = ACTIONS(2195), + [sym_inline_note_reference] = ACTIONS(2195), + [sym_html_element] = ACTIONS(2195), + [sym__pandoc_line_break] = ACTIONS(2195), + [sym_grid_table] = ACTIONS(2195), }, - [STATE(268)] = { - [anon_sym_COLON] = ACTIONS(2673), - [sym_entity_reference] = ACTIONS(2673), - [sym_numeric_character_reference] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_BANG_LBRACK] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2675), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [aux_sym_pandoc_str_token1] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(2673), - [sym__whitespace] = ACTIONS(2673), - [sym__line_ending] = ACTIONS(2673), - [sym__soft_line_ending] = ACTIONS(2673), - [sym__block_close] = ACTIONS(2673), - [sym__block_quote_start] = ACTIONS(2673), - [sym_atx_h1_marker] = ACTIONS(2673), - [sym_atx_h2_marker] = ACTIONS(2673), - [sym_atx_h3_marker] = ACTIONS(2673), - [sym_atx_h4_marker] = ACTIONS(2673), - [sym_atx_h5_marker] = ACTIONS(2673), - [sym_atx_h6_marker] = ACTIONS(2673), - [sym__thematic_break] = ACTIONS(2673), - [sym__list_marker_minus] = ACTIONS(2673), - [sym__list_marker_plus] = ACTIONS(2673), - [sym__list_marker_star] = ACTIONS(2673), - [sym__list_marker_parenthesis] = ACTIONS(2673), - [sym__list_marker_dot] = ACTIONS(2673), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_example] = ACTIONS(2673), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), - [sym__fenced_code_block_start_backtick] = ACTIONS(2673), - [sym_minus_metadata] = ACTIONS(2673), - [sym__pipe_table_start] = ACTIONS(2673), - [sym__fenced_div_start] = ACTIONS(2673), - [sym__fenced_div_end] = ACTIONS(2673), - [sym_ref_id_specifier] = ACTIONS(2673), - [sym__code_span_start] = ACTIONS(2673), - [sym__html_comment] = ACTIONS(2673), - [sym__autolink] = ACTIONS(2673), - [sym__highlight_span_start] = ACTIONS(2673), - [sym__insert_span_start] = ACTIONS(2673), - [sym__delete_span_start] = ACTIONS(2673), - [sym__edit_comment_span_start] = ACTIONS(2673), - [sym__single_quote_span_open] = ACTIONS(2673), - [sym__double_quote_span_open] = ACTIONS(2673), - [sym__shortcode_open_escaped] = ACTIONS(2673), - [sym__shortcode_open] = ACTIONS(2673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), - [sym__cite_author_in_text] = ACTIONS(2673), - [sym__cite_suppress_author] = ACTIONS(2673), - [sym__strikeout_open] = ACTIONS(2673), - [sym__subscript_open] = ACTIONS(2673), - [sym__superscript_open] = ACTIONS(2673), - [sym__inline_note_start_token] = ACTIONS(2673), - [sym__strong_emphasis_open_star] = ACTIONS(2673), - [sym__strong_emphasis_open_underscore] = ACTIONS(2673), - [sym__emphasis_open_star] = ACTIONS(2673), - [sym__emphasis_open_underscore] = ACTIONS(2673), - [sym_inline_note_reference] = ACTIONS(2673), - [sym_html_element] = ACTIONS(2673), - [sym__pandoc_line_break] = ACTIONS(2673), + [STATE(284)] = { + [anon_sym_COLON] = ACTIONS(2651), + [sym_entity_reference] = ACTIONS(2651), + [sym_numeric_character_reference] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_BANG_LBRACK] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [aux_sym_pandoc_str_token1] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2651), + [sym__whitespace] = ACTIONS(2651), + [sym__line_ending] = ACTIONS(2651), + [sym__soft_line_ending] = ACTIONS(2651), + [sym__block_close] = ACTIONS(2651), + [sym__block_quote_start] = ACTIONS(2651), + [sym_atx_h1_marker] = ACTIONS(2651), + [sym_atx_h2_marker] = ACTIONS(2651), + [sym_atx_h3_marker] = ACTIONS(2651), + [sym_atx_h4_marker] = ACTIONS(2651), + [sym_atx_h5_marker] = ACTIONS(2651), + [sym_atx_h6_marker] = ACTIONS(2651), + [sym__thematic_break] = ACTIONS(2651), + [sym__list_marker_minus] = ACTIONS(2651), + [sym__list_marker_plus] = ACTIONS(2651), + [sym__list_marker_star] = ACTIONS(2651), + [sym__list_marker_parenthesis] = ACTIONS(2651), + [sym__list_marker_dot] = ACTIONS(2651), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_example] = ACTIONS(2651), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2651), + [sym__fenced_code_block_start_backtick] = ACTIONS(2651), + [sym_minus_metadata] = ACTIONS(2651), + [sym__pipe_table_start] = ACTIONS(2651), + [sym__fenced_div_start] = ACTIONS(2651), + [sym__fenced_div_end] = ACTIONS(2651), + [sym_ref_id_specifier] = ACTIONS(2651), + [sym__code_span_start] = ACTIONS(2651), + [sym__html_comment] = ACTIONS(2651), + [sym__autolink] = ACTIONS(2651), + [sym__highlight_span_start] = ACTIONS(2651), + [sym__insert_span_start] = ACTIONS(2651), + [sym__delete_span_start] = ACTIONS(2651), + [sym__edit_comment_span_start] = ACTIONS(2651), + [sym__single_quote_span_open] = ACTIONS(2651), + [sym__double_quote_span_open] = ACTIONS(2651), + [sym__shortcode_open_escaped] = ACTIONS(2651), + [sym__shortcode_open] = ACTIONS(2651), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2651), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2651), + [sym__cite_author_in_text] = ACTIONS(2651), + [sym__cite_suppress_author] = ACTIONS(2651), + [sym__strikeout_open] = ACTIONS(2651), + [sym__subscript_open] = ACTIONS(2651), + [sym__superscript_open] = ACTIONS(2651), + [sym__inline_note_start_token] = ACTIONS(2651), + [sym__strong_emphasis_open_star] = ACTIONS(2651), + [sym__strong_emphasis_open_underscore] = ACTIONS(2651), + [sym__emphasis_open_star] = ACTIONS(2651), + [sym__emphasis_open_underscore] = ACTIONS(2651), + [sym_inline_note_reference] = ACTIONS(2651), + [sym_html_element] = ACTIONS(2651), + [sym__pandoc_line_break] = ACTIONS(2651), + [sym_grid_table] = ACTIONS(2651), }, - [STATE(269)] = { - [anon_sym_COLON] = ACTIONS(2677), - [sym_entity_reference] = ACTIONS(2677), - [sym_numeric_character_reference] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_BANG_LBRACK] = ACTIONS(2677), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [aux_sym_pandoc_str_token1] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2677), - [sym__whitespace] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2677), - [sym__soft_line_ending] = ACTIONS(2677), - [sym__block_close] = ACTIONS(2677), - [sym__block_quote_start] = ACTIONS(2677), - [sym_atx_h1_marker] = ACTIONS(2677), - [sym_atx_h2_marker] = ACTIONS(2677), - [sym_atx_h3_marker] = ACTIONS(2677), - [sym_atx_h4_marker] = ACTIONS(2677), - [sym_atx_h5_marker] = ACTIONS(2677), - [sym_atx_h6_marker] = ACTIONS(2677), - [sym__thematic_break] = ACTIONS(2677), - [sym__list_marker_minus] = ACTIONS(2677), - [sym__list_marker_plus] = ACTIONS(2677), - [sym__list_marker_star] = ACTIONS(2677), - [sym__list_marker_parenthesis] = ACTIONS(2677), - [sym__list_marker_dot] = ACTIONS(2677), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_example] = ACTIONS(2677), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), - [sym__fenced_code_block_start_backtick] = ACTIONS(2677), - [sym_minus_metadata] = ACTIONS(2677), - [sym__pipe_table_start] = ACTIONS(2677), - [sym__fenced_div_start] = ACTIONS(2677), - [sym__fenced_div_end] = ACTIONS(2677), - [sym_ref_id_specifier] = ACTIONS(2677), - [sym__code_span_start] = ACTIONS(2677), - [sym__html_comment] = ACTIONS(2677), - [sym__autolink] = ACTIONS(2677), - [sym__highlight_span_start] = ACTIONS(2677), - [sym__insert_span_start] = ACTIONS(2677), - [sym__delete_span_start] = ACTIONS(2677), - [sym__edit_comment_span_start] = ACTIONS(2677), - [sym__single_quote_span_open] = ACTIONS(2677), - [sym__double_quote_span_open] = ACTIONS(2677), - [sym__shortcode_open_escaped] = ACTIONS(2677), - [sym__shortcode_open] = ACTIONS(2677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), - [sym__cite_author_in_text] = ACTIONS(2677), - [sym__cite_suppress_author] = ACTIONS(2677), - [sym__strikeout_open] = ACTIONS(2677), - [sym__subscript_open] = ACTIONS(2677), - [sym__superscript_open] = ACTIONS(2677), - [sym__inline_note_start_token] = ACTIONS(2677), - [sym__strong_emphasis_open_star] = ACTIONS(2677), - [sym__strong_emphasis_open_underscore] = ACTIONS(2677), - [sym__emphasis_open_star] = ACTIONS(2677), - [sym__emphasis_open_underscore] = ACTIONS(2677), - [sym_inline_note_reference] = ACTIONS(2677), - [sym_html_element] = ACTIONS(2677), - [sym__pandoc_line_break] = ACTIONS(2677), + [STATE(285)] = { + [ts_builtin_sym_end] = ACTIONS(2207), + [anon_sym_COLON] = ACTIONS(2207), + [sym_entity_reference] = ACTIONS(2207), + [sym_numeric_character_reference] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_BANG_LBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [aux_sym_pandoc_str_token1] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2207), + [sym__whitespace] = ACTIONS(2207), + [sym__line_ending] = ACTIONS(2207), + [sym__soft_line_ending] = ACTIONS(2207), + [sym_block_continuation] = ACTIONS(2655), + [sym__block_quote_start] = ACTIONS(2207), + [sym_atx_h1_marker] = ACTIONS(2207), + [sym_atx_h2_marker] = ACTIONS(2207), + [sym_atx_h3_marker] = ACTIONS(2207), + [sym_atx_h4_marker] = ACTIONS(2207), + [sym_atx_h5_marker] = ACTIONS(2207), + [sym_atx_h6_marker] = ACTIONS(2207), + [sym__thematic_break] = ACTIONS(2207), + [sym__list_marker_minus] = ACTIONS(2207), + [sym__list_marker_plus] = ACTIONS(2207), + [sym__list_marker_star] = ACTIONS(2207), + [sym__list_marker_parenthesis] = ACTIONS(2207), + [sym__list_marker_dot] = ACTIONS(2207), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2207), + [sym__list_marker_example] = ACTIONS(2207), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2207), + [sym__fenced_code_block_start_backtick] = ACTIONS(2207), + [sym_minus_metadata] = ACTIONS(2207), + [sym__pipe_table_start] = ACTIONS(2207), + [sym__fenced_div_start] = ACTIONS(2207), + [sym_ref_id_specifier] = ACTIONS(2207), + [sym__code_span_start] = ACTIONS(2207), + [sym__html_comment] = ACTIONS(2207), + [sym__autolink] = ACTIONS(2207), + [sym__highlight_span_start] = ACTIONS(2207), + [sym__insert_span_start] = ACTIONS(2207), + [sym__delete_span_start] = ACTIONS(2207), + [sym__edit_comment_span_start] = ACTIONS(2207), + [sym__single_quote_span_open] = ACTIONS(2207), + [sym__double_quote_span_open] = ACTIONS(2207), + [sym__shortcode_open_escaped] = ACTIONS(2207), + [sym__shortcode_open] = ACTIONS(2207), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2207), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2207), + [sym__cite_author_in_text] = ACTIONS(2207), + [sym__cite_suppress_author] = ACTIONS(2207), + [sym__strikeout_open] = ACTIONS(2207), + [sym__subscript_open] = ACTIONS(2207), + [sym__superscript_open] = ACTIONS(2207), + [sym__inline_note_start_token] = ACTIONS(2207), + [sym__strong_emphasis_open_star] = ACTIONS(2207), + [sym__strong_emphasis_open_underscore] = ACTIONS(2207), + [sym__emphasis_open_star] = ACTIONS(2207), + [sym__emphasis_open_underscore] = ACTIONS(2207), + [sym_inline_note_reference] = ACTIONS(2207), + [sym_html_element] = ACTIONS(2207), + [sym__pandoc_line_break] = ACTIONS(2207), + [sym_grid_table] = ACTIONS(2207), }, - [STATE(270)] = { - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [sym__whitespace] = ACTIONS(2681), - [sym__line_ending] = ACTIONS(2681), - [sym__soft_line_ending] = ACTIONS(2681), - [sym__block_close] = ACTIONS(2681), - [sym__block_quote_start] = ACTIONS(2681), - [sym_atx_h1_marker] = ACTIONS(2681), - [sym_atx_h2_marker] = ACTIONS(2681), - [sym_atx_h3_marker] = ACTIONS(2681), - [sym_atx_h4_marker] = ACTIONS(2681), - [sym_atx_h5_marker] = ACTIONS(2681), - [sym_atx_h6_marker] = ACTIONS(2681), - [sym__thematic_break] = ACTIONS(2681), - [sym__list_marker_minus] = ACTIONS(2681), - [sym__list_marker_plus] = ACTIONS(2681), - [sym__list_marker_star] = ACTIONS(2681), - [sym__list_marker_parenthesis] = ACTIONS(2681), - [sym__list_marker_dot] = ACTIONS(2681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_example] = ACTIONS(2681), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), - [sym__fenced_code_block_start_backtick] = ACTIONS(2681), - [sym_minus_metadata] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym__fenced_div_end] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), + [STATE(286)] = { + [anon_sym_COLON] = ACTIONS(2201), + [sym_entity_reference] = ACTIONS(2201), + [sym_numeric_character_reference] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_BANG_LBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [aux_sym_pandoc_str_token1] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2201), + [sym__whitespace] = ACTIONS(2201), + [sym__line_ending] = ACTIONS(2201), + [sym__soft_line_ending] = ACTIONS(2201), + [sym__block_close] = ACTIONS(2201), + [sym_block_continuation] = ACTIONS(2657), + [sym__block_quote_start] = ACTIONS(2201), + [sym_atx_h1_marker] = ACTIONS(2201), + [sym_atx_h2_marker] = ACTIONS(2201), + [sym_atx_h3_marker] = ACTIONS(2201), + [sym_atx_h4_marker] = ACTIONS(2201), + [sym_atx_h5_marker] = ACTIONS(2201), + [sym_atx_h6_marker] = ACTIONS(2201), + [sym__thematic_break] = ACTIONS(2201), + [sym__list_marker_minus] = ACTIONS(2201), + [sym__list_marker_plus] = ACTIONS(2201), + [sym__list_marker_star] = ACTIONS(2201), + [sym__list_marker_parenthesis] = ACTIONS(2201), + [sym__list_marker_dot] = ACTIONS(2201), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2201), + [sym__list_marker_example] = ACTIONS(2201), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2201), + [sym__fenced_code_block_start_backtick] = ACTIONS(2201), + [sym_minus_metadata] = ACTIONS(2201), + [sym__pipe_table_start] = ACTIONS(2201), + [sym__fenced_div_start] = ACTIONS(2201), + [sym_ref_id_specifier] = ACTIONS(2201), + [sym__code_span_start] = ACTIONS(2201), + [sym__html_comment] = ACTIONS(2201), + [sym__autolink] = ACTIONS(2201), + [sym__highlight_span_start] = ACTIONS(2201), + [sym__insert_span_start] = ACTIONS(2201), + [sym__delete_span_start] = ACTIONS(2201), + [sym__edit_comment_span_start] = ACTIONS(2201), + [sym__single_quote_span_open] = ACTIONS(2201), + [sym__double_quote_span_open] = ACTIONS(2201), + [sym__shortcode_open_escaped] = ACTIONS(2201), + [sym__shortcode_open] = ACTIONS(2201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2201), + [sym__cite_author_in_text] = ACTIONS(2201), + [sym__cite_suppress_author] = ACTIONS(2201), + [sym__strikeout_open] = ACTIONS(2201), + [sym__subscript_open] = ACTIONS(2201), + [sym__superscript_open] = ACTIONS(2201), + [sym__inline_note_start_token] = ACTIONS(2201), + [sym__strong_emphasis_open_star] = ACTIONS(2201), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2201), + [sym__emphasis_open_underscore] = ACTIONS(2201), + [sym_inline_note_reference] = ACTIONS(2201), + [sym_html_element] = ACTIONS(2201), + [sym__pandoc_line_break] = ACTIONS(2201), + [sym_grid_table] = ACTIONS(2201), }, - [STATE(271)] = { - [ts_builtin_sym_end] = ACTIONS(2317), + [STATE(287)] = { [anon_sym_COLON] = ACTIONS(2317), [sym_entity_reference] = ACTIONS(2317), [sym_numeric_character_reference] = ACTIONS(2317), @@ -49388,7 +50730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2317), [sym__line_ending] = ACTIONS(2317), [sym__soft_line_ending] = ACTIONS(2317), - [sym_block_continuation] = ACTIONS(2685), + [sym__block_close] = ACTIONS(2317), + [sym_block_continuation] = ACTIONS(2659), [sym__block_quote_start] = ACTIONS(2317), [sym_atx_h1_marker] = ACTIONS(2317), [sym_atx_h2_marker] = ACTIONS(2317), @@ -49440,2184 +50783,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2317), [sym_html_element] = ACTIONS(2317), [sym__pandoc_line_break] = ACTIONS(2317), + [sym_grid_table] = ACTIONS(2317), }, - [STATE(272)] = { - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [sym__whitespace] = ACTIONS(2687), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_close] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym__fenced_div_end] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), - }, - [STATE(273)] = { - [anon_sym_COLON] = ACTIONS(2691), - [sym_entity_reference] = ACTIONS(2691), - [sym_numeric_character_reference] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_BANG_LBRACK] = ACTIONS(2691), - [anon_sym_DOLLAR] = ACTIONS(2693), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [aux_sym_pandoc_str_token1] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2691), - [sym__whitespace] = ACTIONS(2691), - [sym__line_ending] = ACTIONS(2691), - [sym__soft_line_ending] = ACTIONS(2691), - [sym__block_close] = ACTIONS(2691), - [sym__block_quote_start] = ACTIONS(2691), - [sym_atx_h1_marker] = ACTIONS(2691), - [sym_atx_h2_marker] = ACTIONS(2691), - [sym_atx_h3_marker] = ACTIONS(2691), - [sym_atx_h4_marker] = ACTIONS(2691), - [sym_atx_h5_marker] = ACTIONS(2691), - [sym_atx_h6_marker] = ACTIONS(2691), - [sym__thematic_break] = ACTIONS(2691), - [sym__list_marker_minus] = ACTIONS(2691), - [sym__list_marker_plus] = ACTIONS(2691), - [sym__list_marker_star] = ACTIONS(2691), - [sym__list_marker_parenthesis] = ACTIONS(2691), - [sym__list_marker_dot] = ACTIONS(2691), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_example] = ACTIONS(2691), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2691), - [sym__fenced_code_block_start_backtick] = ACTIONS(2691), - [sym_minus_metadata] = ACTIONS(2691), - [sym__pipe_table_start] = ACTIONS(2691), - [sym__fenced_div_start] = ACTIONS(2691), - [sym__fenced_div_end] = ACTIONS(2691), - [sym_ref_id_specifier] = ACTIONS(2691), - [sym__code_span_start] = ACTIONS(2691), - [sym__html_comment] = ACTIONS(2691), - [sym__autolink] = ACTIONS(2691), - [sym__highlight_span_start] = ACTIONS(2691), - [sym__insert_span_start] = ACTIONS(2691), - [sym__delete_span_start] = ACTIONS(2691), - [sym__edit_comment_span_start] = ACTIONS(2691), - [sym__single_quote_span_open] = ACTIONS(2691), - [sym__double_quote_span_open] = ACTIONS(2691), - [sym__shortcode_open_escaped] = ACTIONS(2691), - [sym__shortcode_open] = ACTIONS(2691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2691), - [sym__cite_author_in_text] = ACTIONS(2691), - [sym__cite_suppress_author] = ACTIONS(2691), - [sym__strikeout_open] = ACTIONS(2691), - [sym__subscript_open] = ACTIONS(2691), - [sym__superscript_open] = ACTIONS(2691), - [sym__inline_note_start_token] = ACTIONS(2691), - [sym__strong_emphasis_open_star] = ACTIONS(2691), - [sym__strong_emphasis_open_underscore] = ACTIONS(2691), - [sym__emphasis_open_star] = ACTIONS(2691), - [sym__emphasis_open_underscore] = ACTIONS(2691), - [sym_inline_note_reference] = ACTIONS(2691), - [sym_html_element] = ACTIONS(2691), - [sym__pandoc_line_break] = ACTIONS(2691), - }, - [STATE(274)] = { - [anon_sym_COLON] = ACTIONS(2695), - [sym_entity_reference] = ACTIONS(2695), - [sym_numeric_character_reference] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_BANG_LBRACK] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(2697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2695), - [aux_sym_pandoc_str_token1] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2695), - [sym__whitespace] = ACTIONS(2695), - [sym__line_ending] = ACTIONS(2695), - [sym__soft_line_ending] = ACTIONS(2695), - [sym__block_close] = ACTIONS(2695), - [sym__block_quote_start] = ACTIONS(2695), - [sym_atx_h1_marker] = ACTIONS(2695), - [sym_atx_h2_marker] = ACTIONS(2695), - [sym_atx_h3_marker] = ACTIONS(2695), - [sym_atx_h4_marker] = ACTIONS(2695), - [sym_atx_h5_marker] = ACTIONS(2695), - [sym_atx_h6_marker] = ACTIONS(2695), - [sym__thematic_break] = ACTIONS(2695), - [sym__list_marker_minus] = ACTIONS(2695), - [sym__list_marker_plus] = ACTIONS(2695), - [sym__list_marker_star] = ACTIONS(2695), - [sym__list_marker_parenthesis] = ACTIONS(2695), - [sym__list_marker_dot] = ACTIONS(2695), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_example] = ACTIONS(2695), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2695), - [sym__fenced_code_block_start_backtick] = ACTIONS(2695), - [sym_minus_metadata] = ACTIONS(2695), - [sym__pipe_table_start] = ACTIONS(2695), - [sym__fenced_div_start] = ACTIONS(2695), - [sym__fenced_div_end] = ACTIONS(2695), - [sym_ref_id_specifier] = ACTIONS(2695), - [sym__code_span_start] = ACTIONS(2695), - [sym__html_comment] = ACTIONS(2695), - [sym__autolink] = ACTIONS(2695), - [sym__highlight_span_start] = ACTIONS(2695), - [sym__insert_span_start] = ACTIONS(2695), - [sym__delete_span_start] = ACTIONS(2695), - [sym__edit_comment_span_start] = ACTIONS(2695), - [sym__single_quote_span_open] = ACTIONS(2695), - [sym__double_quote_span_open] = ACTIONS(2695), - [sym__shortcode_open_escaped] = ACTIONS(2695), - [sym__shortcode_open] = ACTIONS(2695), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2695), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2695), - [sym__cite_author_in_text] = ACTIONS(2695), - [sym__cite_suppress_author] = ACTIONS(2695), - [sym__strikeout_open] = ACTIONS(2695), - [sym__subscript_open] = ACTIONS(2695), - [sym__superscript_open] = ACTIONS(2695), - [sym__inline_note_start_token] = ACTIONS(2695), - [sym__strong_emphasis_open_star] = ACTIONS(2695), - [sym__strong_emphasis_open_underscore] = ACTIONS(2695), - [sym__emphasis_open_star] = ACTIONS(2695), - [sym__emphasis_open_underscore] = ACTIONS(2695), - [sym_inline_note_reference] = ACTIONS(2695), - [sym_html_element] = ACTIONS(2695), - [sym__pandoc_line_break] = ACTIONS(2695), - }, - [STATE(275)] = { - [anon_sym_COLON] = ACTIONS(2699), - [sym_entity_reference] = ACTIONS(2699), - [sym_numeric_character_reference] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_BANG_LBRACK] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2699), - [aux_sym_pandoc_str_token1] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2699), - [sym__whitespace] = ACTIONS(2699), - [sym__line_ending] = ACTIONS(2699), - [sym__soft_line_ending] = ACTIONS(2699), - [sym__block_close] = ACTIONS(2699), - [sym__block_quote_start] = ACTIONS(2699), - [sym_atx_h1_marker] = ACTIONS(2699), - [sym_atx_h2_marker] = ACTIONS(2699), - [sym_atx_h3_marker] = ACTIONS(2699), - [sym_atx_h4_marker] = ACTIONS(2699), - [sym_atx_h5_marker] = ACTIONS(2699), - [sym_atx_h6_marker] = ACTIONS(2699), - [sym__thematic_break] = ACTIONS(2699), - [sym__list_marker_minus] = ACTIONS(2699), - [sym__list_marker_plus] = ACTIONS(2699), - [sym__list_marker_star] = ACTIONS(2699), - [sym__list_marker_parenthesis] = ACTIONS(2699), - [sym__list_marker_dot] = ACTIONS(2699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_example] = ACTIONS(2699), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2699), - [sym__fenced_code_block_start_backtick] = ACTIONS(2699), - [sym_minus_metadata] = ACTIONS(2699), - [sym__pipe_table_start] = ACTIONS(2699), - [sym__fenced_div_start] = ACTIONS(2699), - [sym__fenced_div_end] = ACTIONS(2699), - [sym_ref_id_specifier] = ACTIONS(2699), - [sym__code_span_start] = ACTIONS(2699), - [sym__html_comment] = ACTIONS(2699), - [sym__autolink] = ACTIONS(2699), - [sym__highlight_span_start] = ACTIONS(2699), - [sym__insert_span_start] = ACTIONS(2699), - [sym__delete_span_start] = ACTIONS(2699), - [sym__edit_comment_span_start] = ACTIONS(2699), - [sym__single_quote_span_open] = ACTIONS(2699), - [sym__double_quote_span_open] = ACTIONS(2699), - [sym__shortcode_open_escaped] = ACTIONS(2699), - [sym__shortcode_open] = ACTIONS(2699), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2699), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2699), - [sym__cite_author_in_text] = ACTIONS(2699), - [sym__cite_suppress_author] = ACTIONS(2699), - [sym__strikeout_open] = ACTIONS(2699), - [sym__subscript_open] = ACTIONS(2699), - [sym__superscript_open] = ACTIONS(2699), - [sym__inline_note_start_token] = ACTIONS(2699), - [sym__strong_emphasis_open_star] = ACTIONS(2699), - [sym__strong_emphasis_open_underscore] = ACTIONS(2699), - [sym__emphasis_open_star] = ACTIONS(2699), - [sym__emphasis_open_underscore] = ACTIONS(2699), - [sym_inline_note_reference] = ACTIONS(2699), - [sym_html_element] = ACTIONS(2699), - [sym__pandoc_line_break] = ACTIONS(2699), - }, - [STATE(276)] = { - [anon_sym_COLON] = ACTIONS(2703), - [sym_entity_reference] = ACTIONS(2703), - [sym_numeric_character_reference] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_BANG_LBRACK] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2705), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2703), - [aux_sym_pandoc_str_token1] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2703), - [sym__whitespace] = ACTIONS(2703), - [sym__line_ending] = ACTIONS(2703), - [sym__soft_line_ending] = ACTIONS(2703), - [sym__block_close] = ACTIONS(2703), - [sym__block_quote_start] = ACTIONS(2703), - [sym_atx_h1_marker] = ACTIONS(2703), - [sym_atx_h2_marker] = ACTIONS(2703), - [sym_atx_h3_marker] = ACTIONS(2703), - [sym_atx_h4_marker] = ACTIONS(2703), - [sym_atx_h5_marker] = ACTIONS(2703), - [sym_atx_h6_marker] = ACTIONS(2703), - [sym__thematic_break] = ACTIONS(2703), - [sym__list_marker_minus] = ACTIONS(2703), - [sym__list_marker_plus] = ACTIONS(2703), - [sym__list_marker_star] = ACTIONS(2703), - [sym__list_marker_parenthesis] = ACTIONS(2703), - [sym__list_marker_dot] = ACTIONS(2703), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_example] = ACTIONS(2703), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2703), - [sym__fenced_code_block_start_backtick] = ACTIONS(2703), - [sym_minus_metadata] = ACTIONS(2703), - [sym__pipe_table_start] = ACTIONS(2703), - [sym__fenced_div_start] = ACTIONS(2703), - [sym__fenced_div_end] = ACTIONS(2703), - [sym_ref_id_specifier] = ACTIONS(2703), - [sym__code_span_start] = ACTIONS(2703), - [sym__html_comment] = ACTIONS(2703), - [sym__autolink] = ACTIONS(2703), - [sym__highlight_span_start] = ACTIONS(2703), - [sym__insert_span_start] = ACTIONS(2703), - [sym__delete_span_start] = ACTIONS(2703), - [sym__edit_comment_span_start] = ACTIONS(2703), - [sym__single_quote_span_open] = ACTIONS(2703), - [sym__double_quote_span_open] = ACTIONS(2703), - [sym__shortcode_open_escaped] = ACTIONS(2703), - [sym__shortcode_open] = ACTIONS(2703), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2703), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2703), - [sym__cite_author_in_text] = ACTIONS(2703), - [sym__cite_suppress_author] = ACTIONS(2703), - [sym__strikeout_open] = ACTIONS(2703), - [sym__subscript_open] = ACTIONS(2703), - [sym__superscript_open] = ACTIONS(2703), - [sym__inline_note_start_token] = ACTIONS(2703), - [sym__strong_emphasis_open_star] = ACTIONS(2703), - [sym__strong_emphasis_open_underscore] = ACTIONS(2703), - [sym__emphasis_open_star] = ACTIONS(2703), - [sym__emphasis_open_underscore] = ACTIONS(2703), - [sym_inline_note_reference] = ACTIONS(2703), - [sym_html_element] = ACTIONS(2703), - [sym__pandoc_line_break] = ACTIONS(2703), - }, - [STATE(277)] = { - [anon_sym_COLON] = ACTIONS(2707), - [sym_entity_reference] = ACTIONS(2707), - [sym_numeric_character_reference] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_BANG_LBRACK] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(2709), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [aux_sym_pandoc_str_token1] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [sym__whitespace] = ACTIONS(2707), - [sym__line_ending] = ACTIONS(2707), - [sym__soft_line_ending] = ACTIONS(2707), - [sym__block_close] = ACTIONS(2707), - [sym__block_quote_start] = ACTIONS(2707), - [sym_atx_h1_marker] = ACTIONS(2707), - [sym_atx_h2_marker] = ACTIONS(2707), - [sym_atx_h3_marker] = ACTIONS(2707), - [sym_atx_h4_marker] = ACTIONS(2707), - [sym_atx_h5_marker] = ACTIONS(2707), - [sym_atx_h6_marker] = ACTIONS(2707), - [sym__thematic_break] = ACTIONS(2707), - [sym__list_marker_minus] = ACTIONS(2707), - [sym__list_marker_plus] = ACTIONS(2707), - [sym__list_marker_star] = ACTIONS(2707), - [sym__list_marker_parenthesis] = ACTIONS(2707), - [sym__list_marker_dot] = ACTIONS(2707), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_example] = ACTIONS(2707), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2707), - [sym__fenced_code_block_start_backtick] = ACTIONS(2707), - [sym_minus_metadata] = ACTIONS(2707), - [sym__pipe_table_start] = ACTIONS(2707), - [sym__fenced_div_start] = ACTIONS(2707), - [sym__fenced_div_end] = ACTIONS(2707), - [sym_ref_id_specifier] = ACTIONS(2707), - [sym__code_span_start] = ACTIONS(2707), - [sym__html_comment] = ACTIONS(2707), - [sym__autolink] = ACTIONS(2707), - [sym__highlight_span_start] = ACTIONS(2707), - [sym__insert_span_start] = ACTIONS(2707), - [sym__delete_span_start] = ACTIONS(2707), - [sym__edit_comment_span_start] = ACTIONS(2707), - [sym__single_quote_span_open] = ACTIONS(2707), - [sym__double_quote_span_open] = ACTIONS(2707), - [sym__shortcode_open_escaped] = ACTIONS(2707), - [sym__shortcode_open] = ACTIONS(2707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2707), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2707), - [sym__cite_author_in_text] = ACTIONS(2707), - [sym__cite_suppress_author] = ACTIONS(2707), - [sym__strikeout_open] = ACTIONS(2707), - [sym__subscript_open] = ACTIONS(2707), - [sym__superscript_open] = ACTIONS(2707), - [sym__inline_note_start_token] = ACTIONS(2707), - [sym__strong_emphasis_open_star] = ACTIONS(2707), - [sym__strong_emphasis_open_underscore] = ACTIONS(2707), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2707), - [sym_inline_note_reference] = ACTIONS(2707), - [sym_html_element] = ACTIONS(2707), - [sym__pandoc_line_break] = ACTIONS(2707), - }, - [STATE(278)] = { - [anon_sym_COLON] = ACTIONS(2711), - [sym_entity_reference] = ACTIONS(2711), - [sym_numeric_character_reference] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_BANG_LBRACK] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2713), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2711), - [aux_sym_pandoc_str_token1] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2711), - [sym__whitespace] = ACTIONS(2711), - [sym__line_ending] = ACTIONS(2711), - [sym__soft_line_ending] = ACTIONS(2711), - [sym__block_close] = ACTIONS(2711), - [sym__block_quote_start] = ACTIONS(2711), - [sym_atx_h1_marker] = ACTIONS(2711), - [sym_atx_h2_marker] = ACTIONS(2711), - [sym_atx_h3_marker] = ACTIONS(2711), - [sym_atx_h4_marker] = ACTIONS(2711), - [sym_atx_h5_marker] = ACTIONS(2711), - [sym_atx_h6_marker] = ACTIONS(2711), - [sym__thematic_break] = ACTIONS(2711), - [sym__list_marker_minus] = ACTIONS(2711), - [sym__list_marker_plus] = ACTIONS(2711), - [sym__list_marker_star] = ACTIONS(2711), - [sym__list_marker_parenthesis] = ACTIONS(2711), - [sym__list_marker_dot] = ACTIONS(2711), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_example] = ACTIONS(2711), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2711), - [sym__fenced_code_block_start_backtick] = ACTIONS(2711), - [sym_minus_metadata] = ACTIONS(2711), - [sym__pipe_table_start] = ACTIONS(2711), - [sym__fenced_div_start] = ACTIONS(2711), - [sym__fenced_div_end] = ACTIONS(2711), - [sym_ref_id_specifier] = ACTIONS(2711), - [sym__code_span_start] = ACTIONS(2711), - [sym__html_comment] = ACTIONS(2711), - [sym__autolink] = ACTIONS(2711), - [sym__highlight_span_start] = ACTIONS(2711), - [sym__insert_span_start] = ACTIONS(2711), - [sym__delete_span_start] = ACTIONS(2711), - [sym__edit_comment_span_start] = ACTIONS(2711), - [sym__single_quote_span_open] = ACTIONS(2711), - [sym__double_quote_span_open] = ACTIONS(2711), - [sym__shortcode_open_escaped] = ACTIONS(2711), - [sym__shortcode_open] = ACTIONS(2711), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2711), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2711), - [sym__cite_author_in_text] = ACTIONS(2711), - [sym__cite_suppress_author] = ACTIONS(2711), - [sym__strikeout_open] = ACTIONS(2711), - [sym__subscript_open] = ACTIONS(2711), - [sym__superscript_open] = ACTIONS(2711), - [sym__inline_note_start_token] = ACTIONS(2711), - [sym__strong_emphasis_open_star] = ACTIONS(2711), - [sym__strong_emphasis_open_underscore] = ACTIONS(2711), - [sym__emphasis_open_star] = ACTIONS(2711), - [sym__emphasis_open_underscore] = ACTIONS(2711), - [sym_inline_note_reference] = ACTIONS(2711), - [sym_html_element] = ACTIONS(2711), - [sym__pandoc_line_break] = ACTIONS(2711), + [STATE(288)] = { + [ts_builtin_sym_end] = ACTIONS(2213), + [anon_sym_COLON] = 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(2661), + [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_line_break] = ACTIONS(2213), + [sym_grid_table] = ACTIONS(2213), }, - [STATE(279)] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [anon_sym_COLON] = ACTIONS(2359), - [sym_entity_reference] = ACTIONS(2359), - [sym_numeric_character_reference] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_BANG_LBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [STATE(289)] = { + [sym__inlines] = STATE(3290), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1404), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(628), + [sym__inline_whitespace] = STATE(628), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2663), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), [anon_sym_PIPE] = ACTIONS(2359), - [sym__whitespace] = ACTIONS(2359), - [sym__line_ending] = ACTIONS(2359), - [sym__soft_line_ending] = ACTIONS(2359), - [sym_block_continuation] = ACTIONS(2715), - [sym__block_quote_start] = ACTIONS(2359), - [sym_atx_h1_marker] = ACTIONS(2359), - [sym_atx_h2_marker] = ACTIONS(2359), - [sym_atx_h3_marker] = ACTIONS(2359), - [sym_atx_h4_marker] = ACTIONS(2359), - [sym_atx_h5_marker] = ACTIONS(2359), - [sym_atx_h6_marker] = ACTIONS(2359), - [sym__thematic_break] = ACTIONS(2359), - [sym__list_marker_minus] = ACTIONS(2359), - [sym__list_marker_plus] = ACTIONS(2359), - [sym__list_marker_star] = ACTIONS(2359), - [sym__list_marker_parenthesis] = ACTIONS(2359), - [sym__list_marker_dot] = ACTIONS(2359), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_example] = ACTIONS(2359), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), - [sym__fenced_code_block_start_backtick] = ACTIONS(2359), - [sym_minus_metadata] = ACTIONS(2359), - [sym__pipe_table_start] = ACTIONS(2359), - [sym__fenced_div_start] = ACTIONS(2359), - [sym_ref_id_specifier] = ACTIONS(2359), - [sym__code_span_start] = ACTIONS(2359), - [sym__html_comment] = ACTIONS(2359), - [sym__autolink] = ACTIONS(2359), - [sym__highlight_span_start] = ACTIONS(2359), - [sym__insert_span_start] = ACTIONS(2359), - [sym__delete_span_start] = ACTIONS(2359), - [sym__edit_comment_span_start] = ACTIONS(2359), - [sym__single_quote_span_open] = ACTIONS(2359), - [sym__double_quote_span_open] = ACTIONS(2359), - [sym__shortcode_open_escaped] = ACTIONS(2359), - [sym__shortcode_open] = ACTIONS(2359), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), - [sym__cite_author_in_text] = ACTIONS(2359), - [sym__cite_suppress_author] = ACTIONS(2359), - [sym__strikeout_open] = ACTIONS(2359), - [sym__subscript_open] = ACTIONS(2359), - [sym__superscript_open] = ACTIONS(2359), - [sym__inline_note_start_token] = ACTIONS(2359), - [sym__strong_emphasis_open_star] = ACTIONS(2359), - [sym__strong_emphasis_open_underscore] = ACTIONS(2359), - [sym__emphasis_open_star] = ACTIONS(2359), - [sym__emphasis_open_underscore] = ACTIONS(2359), - [sym_inline_note_reference] = ACTIONS(2359), - [sym_html_element] = ACTIONS(2359), - [sym__pandoc_line_break] = ACTIONS(2359), - }, - [STATE(280)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2717), - }, - [STATE(281)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2721), - }, - [STATE(282)] = { - [ts_builtin_sym_end] = ACTIONS(2365), - [anon_sym_COLON] = ACTIONS(2365), - [sym_entity_reference] = ACTIONS(2365), - [sym_numeric_character_reference] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_BANG_LBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [aux_sym_pandoc_str_token1] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2365), - [sym__whitespace] = ACTIONS(2365), - [sym__line_ending] = ACTIONS(2365), - [sym__soft_line_ending] = ACTIONS(2365), - [sym_block_continuation] = ACTIONS(2725), - [sym__block_quote_start] = ACTIONS(2365), - [sym_atx_h1_marker] = ACTIONS(2365), - [sym_atx_h2_marker] = ACTIONS(2365), - [sym_atx_h3_marker] = ACTIONS(2365), - [sym_atx_h4_marker] = ACTIONS(2365), - [sym_atx_h5_marker] = ACTIONS(2365), - [sym_atx_h6_marker] = ACTIONS(2365), - [sym__thematic_break] = ACTIONS(2365), - [sym__list_marker_minus] = ACTIONS(2365), - [sym__list_marker_plus] = ACTIONS(2365), - [sym__list_marker_star] = ACTIONS(2365), - [sym__list_marker_parenthesis] = ACTIONS(2365), - [sym__list_marker_dot] = ACTIONS(2365), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_example] = ACTIONS(2365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), - [sym__fenced_code_block_start_backtick] = ACTIONS(2365), - [sym_minus_metadata] = ACTIONS(2365), - [sym__pipe_table_start] = ACTIONS(2365), - [sym__fenced_div_start] = ACTIONS(2365), - [sym_ref_id_specifier] = ACTIONS(2365), + [sym__whitespace] = ACTIONS(2667), + [sym__soft_line_ending] = ACTIONS(2363), [sym__code_span_start] = ACTIONS(2365), - [sym__html_comment] = ACTIONS(2365), - [sym__autolink] = ACTIONS(2365), - [sym__highlight_span_start] = ACTIONS(2365), - [sym__insert_span_start] = ACTIONS(2365), - [sym__delete_span_start] = ACTIONS(2365), - [sym__edit_comment_span_start] = ACTIONS(2365), - [sym__single_quote_span_open] = ACTIONS(2365), - [sym__double_quote_span_open] = ACTIONS(2365), - [sym__shortcode_open_escaped] = ACTIONS(2365), - [sym__shortcode_open] = ACTIONS(2365), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), - [sym__cite_author_in_text] = ACTIONS(2365), - [sym__cite_suppress_author] = ACTIONS(2365), - [sym__strikeout_open] = ACTIONS(2365), - [sym__subscript_open] = ACTIONS(2365), - [sym__superscript_open] = ACTIONS(2365), - [sym__inline_note_start_token] = ACTIONS(2365), - [sym__strong_emphasis_open_star] = ACTIONS(2365), - [sym__strong_emphasis_open_underscore] = ACTIONS(2365), - [sym__emphasis_open_star] = ACTIONS(2365), - [sym__emphasis_open_underscore] = ACTIONS(2365), - [sym_inline_note_reference] = ACTIONS(2365), - [sym_html_element] = ACTIONS(2365), - [sym__pandoc_line_break] = ACTIONS(2365), - }, - [STATE(283)] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [anon_sym_COLON] = ACTIONS(2371), - [sym_entity_reference] = ACTIONS(2371), - [sym_numeric_character_reference] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_BANG_LBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [aux_sym_pandoc_str_token1] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2371), - [sym__whitespace] = ACTIONS(2371), - [sym__line_ending] = ACTIONS(2371), - [sym__soft_line_ending] = ACTIONS(2371), - [sym_block_continuation] = ACTIONS(2727), - [sym__block_quote_start] = ACTIONS(2371), - [sym_atx_h1_marker] = ACTIONS(2371), - [sym_atx_h2_marker] = ACTIONS(2371), - [sym_atx_h3_marker] = ACTIONS(2371), - [sym_atx_h4_marker] = ACTIONS(2371), - [sym_atx_h5_marker] = ACTIONS(2371), - [sym_atx_h6_marker] = ACTIONS(2371), - [sym__thematic_break] = ACTIONS(2371), - [sym__list_marker_minus] = ACTIONS(2371), - [sym__list_marker_plus] = ACTIONS(2371), - [sym__list_marker_star] = ACTIONS(2371), - [sym__list_marker_parenthesis] = ACTIONS(2371), - [sym__list_marker_dot] = ACTIONS(2371), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_example] = ACTIONS(2371), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), - [sym__fenced_code_block_start_backtick] = ACTIONS(2371), - [sym_minus_metadata] = ACTIONS(2371), - [sym__pipe_table_start] = ACTIONS(2371), - [sym__fenced_div_start] = ACTIONS(2371), - [sym_ref_id_specifier] = ACTIONS(2371), - [sym__code_span_start] = ACTIONS(2371), - [sym__html_comment] = ACTIONS(2371), - [sym__autolink] = ACTIONS(2371), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), [sym__delete_span_start] = ACTIONS(2371), - [sym__edit_comment_span_start] = ACTIONS(2371), - [sym__single_quote_span_open] = ACTIONS(2371), - [sym__double_quote_span_open] = ACTIONS(2371), - [sym__shortcode_open_escaped] = ACTIONS(2371), - [sym__shortcode_open] = ACTIONS(2371), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), - [sym__cite_author_in_text] = ACTIONS(2371), - [sym__cite_suppress_author] = ACTIONS(2371), - [sym__strikeout_open] = ACTIONS(2371), - [sym__subscript_open] = ACTIONS(2371), - [sym__superscript_open] = ACTIONS(2371), - [sym__inline_note_start_token] = ACTIONS(2371), - [sym__strong_emphasis_open_star] = ACTIONS(2371), - [sym__strong_emphasis_open_underscore] = ACTIONS(2371), - [sym__emphasis_open_star] = ACTIONS(2371), - [sym__emphasis_open_underscore] = ACTIONS(2371), - [sym_inline_note_reference] = ACTIONS(2371), - [sym_html_element] = ACTIONS(2371), - [sym__pandoc_line_break] = ACTIONS(2371), - }, - [STATE(284)] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [anon_sym_COLON] = 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_continuation] = ACTIONS(2729), - [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__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), [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_line_break] = ACTIONS(2399), - }, - [STATE(285)] = { - [ts_builtin_sym_end] = ACTIONS(2245), - [anon_sym_COLON] = ACTIONS(2245), - [sym_entity_reference] = ACTIONS(2245), - [sym_numeric_character_reference] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_BANG_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [aux_sym_pandoc_str_token1] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2245), - [sym__whitespace] = ACTIONS(2245), - [sym__line_ending] = ACTIONS(2245), - [sym__soft_line_ending] = ACTIONS(2245), - [sym_block_continuation] = ACTIONS(2731), - [sym__block_quote_start] = ACTIONS(2245), - [sym_atx_h1_marker] = ACTIONS(2245), - [sym_atx_h2_marker] = ACTIONS(2245), - [sym_atx_h3_marker] = ACTIONS(2245), - [sym_atx_h4_marker] = ACTIONS(2245), - [sym_atx_h5_marker] = ACTIONS(2245), - [sym_atx_h6_marker] = ACTIONS(2245), - [sym__thematic_break] = ACTIONS(2245), - [sym__list_marker_minus] = ACTIONS(2245), - [sym__list_marker_plus] = ACTIONS(2245), - [sym__list_marker_star] = ACTIONS(2245), - [sym__list_marker_parenthesis] = ACTIONS(2245), - [sym__list_marker_dot] = ACTIONS(2245), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_example] = ACTIONS(2245), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2245), - [sym__fenced_code_block_start_backtick] = ACTIONS(2245), - [sym_minus_metadata] = ACTIONS(2245), - [sym__pipe_table_start] = ACTIONS(2245), - [sym__fenced_div_start] = ACTIONS(2245), - [sym_ref_id_specifier] = ACTIONS(2245), - [sym__code_span_start] = ACTIONS(2245), - [sym__html_comment] = ACTIONS(2245), - [sym__autolink] = ACTIONS(2245), - [sym__highlight_span_start] = ACTIONS(2245), - [sym__insert_span_start] = ACTIONS(2245), - [sym__delete_span_start] = ACTIONS(2245), - [sym__edit_comment_span_start] = ACTIONS(2245), - [sym__single_quote_span_open] = ACTIONS(2245), - [sym__double_quote_span_open] = ACTIONS(2245), - [sym__shortcode_open_escaped] = ACTIONS(2245), - [sym__shortcode_open] = ACTIONS(2245), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2245), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2245), - [sym__cite_author_in_text] = ACTIONS(2245), - [sym__cite_suppress_author] = ACTIONS(2245), - [sym__strikeout_open] = ACTIONS(2245), - [sym__subscript_open] = ACTIONS(2245), - [sym__superscript_open] = ACTIONS(2245), - [sym__inline_note_start_token] = ACTIONS(2245), - [sym__strong_emphasis_open_star] = ACTIONS(2245), - [sym__strong_emphasis_open_underscore] = ACTIONS(2245), - [sym__emphasis_open_star] = ACTIONS(2245), - [sym__emphasis_open_underscore] = ACTIONS(2245), - [sym_inline_note_reference] = ACTIONS(2245), - [sym_html_element] = ACTIONS(2245), - [sym__pandoc_line_break] = ACTIONS(2245), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(286)] = { - [anon_sym_COLON] = ACTIONS(2293), - [sym_entity_reference] = ACTIONS(2293), - [sym_numeric_character_reference] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [aux_sym_pandoc_str_token1] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2293), - [sym__whitespace] = ACTIONS(2293), - [sym__line_ending] = ACTIONS(2293), - [sym__soft_line_ending] = ACTIONS(2293), - [sym__block_close] = ACTIONS(2293), - [sym_block_continuation] = ACTIONS(2733), - [sym__block_quote_start] = ACTIONS(2293), - [sym_atx_h1_marker] = ACTIONS(2293), - [sym_atx_h2_marker] = ACTIONS(2293), - [sym_atx_h3_marker] = ACTIONS(2293), - [sym_atx_h4_marker] = ACTIONS(2293), - [sym_atx_h5_marker] = ACTIONS(2293), - [sym_atx_h6_marker] = ACTIONS(2293), - [sym__thematic_break] = ACTIONS(2293), - [sym__list_marker_minus] = ACTIONS(2293), - [sym__list_marker_plus] = ACTIONS(2293), - [sym__list_marker_star] = ACTIONS(2293), - [sym__list_marker_parenthesis] = ACTIONS(2293), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2293), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2293), - [sym__fenced_code_block_start_backtick] = ACTIONS(2293), - [sym_minus_metadata] = ACTIONS(2293), - [sym__pipe_table_start] = ACTIONS(2293), - [sym__fenced_div_start] = ACTIONS(2293), - [sym_ref_id_specifier] = ACTIONS(2293), - [sym__code_span_start] = ACTIONS(2293), - [sym__html_comment] = ACTIONS(2293), - [sym__autolink] = ACTIONS(2293), - [sym__highlight_span_start] = ACTIONS(2293), - [sym__insert_span_start] = ACTIONS(2293), - [sym__delete_span_start] = ACTIONS(2293), - [sym__edit_comment_span_start] = ACTIONS(2293), - [sym__single_quote_span_open] = ACTIONS(2293), - [sym__double_quote_span_open] = ACTIONS(2293), - [sym__shortcode_open_escaped] = ACTIONS(2293), - [sym__shortcode_open] = ACTIONS(2293), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2293), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2293), - [sym__cite_author_in_text] = ACTIONS(2293), - [sym__cite_suppress_author] = ACTIONS(2293), - [sym__strikeout_open] = ACTIONS(2293), - [sym__subscript_open] = ACTIONS(2293), - [sym__superscript_open] = ACTIONS(2293), - [sym__inline_note_start_token] = ACTIONS(2293), - [sym__strong_emphasis_open_star] = ACTIONS(2293), - [sym__strong_emphasis_open_underscore] = ACTIONS(2293), - [sym__emphasis_open_star] = ACTIONS(2293), - [sym__emphasis_open_underscore] = ACTIONS(2293), - [sym_inline_note_reference] = ACTIONS(2293), - [sym_html_element] = ACTIONS(2293), - [sym__pandoc_line_break] = ACTIONS(2293), - }, - [STATE(287)] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2323), - [sym_entity_reference] = ACTIONS(2323), - [sym_numeric_character_reference] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_BANG_LBRACK] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [aux_sym_pandoc_str_token1] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2323), - [sym__whitespace] = ACTIONS(2323), - [sym__line_ending] = ACTIONS(2323), - [sym__soft_line_ending] = ACTIONS(2323), - [sym_block_continuation] = ACTIONS(2735), - [sym__block_quote_start] = ACTIONS(2323), - [sym_atx_h1_marker] = ACTIONS(2323), - [sym_atx_h2_marker] = ACTIONS(2323), - [sym_atx_h3_marker] = ACTIONS(2323), - [sym_atx_h4_marker] = ACTIONS(2323), - [sym_atx_h5_marker] = ACTIONS(2323), - [sym_atx_h6_marker] = ACTIONS(2323), - [sym__thematic_break] = ACTIONS(2323), - [sym__list_marker_minus] = ACTIONS(2323), - [sym__list_marker_plus] = ACTIONS(2323), - [sym__list_marker_star] = ACTIONS(2323), - [sym__list_marker_parenthesis] = ACTIONS(2323), - [sym__list_marker_dot] = ACTIONS(2323), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_example] = ACTIONS(2323), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2323), - [sym__fenced_code_block_start_backtick] = ACTIONS(2323), - [sym_minus_metadata] = ACTIONS(2323), - [sym__pipe_table_start] = ACTIONS(2323), - [sym__fenced_div_start] = ACTIONS(2323), - [sym_ref_id_specifier] = ACTIONS(2323), - [sym__code_span_start] = ACTIONS(2323), - [sym__html_comment] = ACTIONS(2323), - [sym__autolink] = ACTIONS(2323), - [sym__highlight_span_start] = ACTIONS(2323), - [sym__insert_span_start] = ACTIONS(2323), - [sym__delete_span_start] = ACTIONS(2323), - [sym__edit_comment_span_start] = ACTIONS(2323), - [sym__single_quote_span_open] = ACTIONS(2323), - [sym__double_quote_span_open] = ACTIONS(2323), - [sym__shortcode_open_escaped] = ACTIONS(2323), - [sym__shortcode_open] = ACTIONS(2323), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2323), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2323), - [sym__cite_author_in_text] = ACTIONS(2323), - [sym__cite_suppress_author] = ACTIONS(2323), - [sym__strikeout_open] = ACTIONS(2323), - [sym__subscript_open] = ACTIONS(2323), - [sym__superscript_open] = ACTIONS(2323), - [sym__inline_note_start_token] = ACTIONS(2323), - [sym__strong_emphasis_open_star] = ACTIONS(2323), - [sym__strong_emphasis_open_underscore] = ACTIONS(2323), - [sym__emphasis_open_star] = ACTIONS(2323), - [sym__emphasis_open_underscore] = ACTIONS(2323), - [sym_inline_note_reference] = ACTIONS(2323), - [sym_html_element] = ACTIONS(2323), - [sym__pandoc_line_break] = ACTIONS(2323), - }, - [STATE(288)] = { - [sym_pipe_table_cell] = STATE(2848), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2737), - [sym__line_ending] = ACTIONS(2739), - [sym__eof] = ACTIONS(2739), - [sym__pipe_table_line_ending] = ACTIONS(2739), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2741), - [sym__pandoc_line_break] = ACTIONS(2049), - }, - [STATE(289)] = { - [sym_pipe_table_cell] = STATE(2854), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(292), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2743), - [sym__line_ending] = ACTIONS(2745), - [sym__eof] = ACTIONS(2745), - [sym__pipe_table_line_ending] = ACTIONS(2745), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pandoc_line_break] = ACTIONS(2049), - }, - [STATE(290)] = { - [sym_pipe_table_cell] = STATE(2854), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(309), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2747), - [sym__line_ending] = ACTIONS(2749), - [sym__eof] = ACTIONS(2749), - [sym__pipe_table_line_ending] = ACTIONS(2749), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pandoc_line_break] = ACTIONS(2049), + [STATE(290)] = { + [sym__inlines] = STATE(3200), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1405), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(629), + [sym__inline_whitespace] = STATE(629), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2669), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2671), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(291)] = { - [sym_pipe_table_cell] = STATE(2848), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2737), - [sym__line_ending] = ACTIONS(2745), - [sym__eof] = ACTIONS(2745), - [sym__pipe_table_line_ending] = ACTIONS(2745), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2741), - [sym__pandoc_line_break] = ACTIONS(2049), + [anon_sym_COLON] = ACTIONS(2673), + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_close] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym_minus_metadata] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym__fenced_div_end] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), + [sym_grid_table] = ACTIONS(2673), }, [STATE(292)] = { - [sym_pipe_table_cell] = STATE(3401), - [sym_pandoc_span] = STATE(702), - [sym_pandoc_image] = STATE(702), - [sym_pandoc_math] = STATE(702), - [sym_pandoc_display_math] = STATE(702), - [sym_pandoc_code_span] = STATE(702), - [sym_pandoc_single_quote] = STATE(702), - [sym_pandoc_double_quote] = STATE(702), - [sym_insert] = STATE(702), - [sym_delete] = STATE(702), - [sym_edit_comment] = STATE(702), - [sym_highlight] = STATE(702), - [sym__pandoc_attr_specifier] = STATE(702), - [sym__line_with_maybe_spaces] = STATE(3402), - [sym__inline_element] = STATE(702), - [sym_shortcode_escaped] = STATE(702), - [sym_shortcode] = STATE(702), - [sym_citation] = STATE(702), - [sym_inline_note] = STATE(702), - [sym_pandoc_superscript] = STATE(702), - [sym_pandoc_subscript] = STATE(702), - [sym_pandoc_strikeout] = STATE(702), - [sym_pandoc_emph] = STATE(702), - [sym_pandoc_strong] = STATE(702), - [sym_pandoc_str] = STATE(702), - [aux_sym_pipe_table_row_repeat1] = STATE(292), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(702), - [sym_entity_reference] = ACTIONS(2751), - [sym_numeric_character_reference] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_BANG_LBRACK] = ACTIONS(2757), - [anon_sym_DOLLAR] = ACTIONS(2760), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2766), - [aux_sym_pandoc_str_token1] = ACTIONS(2769), - [anon_sym_PIPE] = ACTIONS(2772), - [sym__whitespace] = ACTIONS(2775), - [sym__line_ending] = ACTIONS(2778), - [sym__eof] = ACTIONS(2778), - [sym__pipe_table_line_ending] = ACTIONS(2778), - [sym__code_span_start] = ACTIONS(2780), - [sym__html_comment] = ACTIONS(2751), - [sym__autolink] = ACTIONS(2751), - [sym__highlight_span_start] = ACTIONS(2783), - [sym__insert_span_start] = ACTIONS(2786), - [sym__delete_span_start] = ACTIONS(2789), - [sym__edit_comment_span_start] = ACTIONS(2792), - [sym__single_quote_span_open] = ACTIONS(2795), - [sym__double_quote_span_open] = ACTIONS(2798), - [sym__shortcode_open_escaped] = ACTIONS(2801), - [sym__shortcode_open] = ACTIONS(2804), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2807), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2810), - [sym__cite_author_in_text] = ACTIONS(2813), - [sym__cite_suppress_author] = ACTIONS(2816), - [sym__strikeout_open] = ACTIONS(2819), - [sym__subscript_open] = ACTIONS(2822), - [sym__superscript_open] = ACTIONS(2825), - [sym__inline_note_start_token] = ACTIONS(2828), - [sym__strong_emphasis_open_star] = ACTIONS(2831), - [sym__strong_emphasis_open_underscore] = ACTIONS(2834), - [sym__emphasis_open_star] = ACTIONS(2837), - [sym__emphasis_open_underscore] = ACTIONS(2840), - [sym_inline_note_reference] = ACTIONS(2751), - [sym_html_element] = ACTIONS(2751), - [sym__pandoc_line_break] = ACTIONS(2751), + [ts_builtin_sym_end] = ACTIONS(2223), + [anon_sym_COLON] = ACTIONS(2223), + [sym_entity_reference] = ACTIONS(2223), + [sym_numeric_character_reference] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_BANG_LBRACK] = ACTIONS(2223), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [aux_sym_pandoc_str_token1] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2223), + [sym__whitespace] = ACTIONS(2223), + [sym__line_ending] = ACTIONS(2223), + [sym__soft_line_ending] = ACTIONS(2223), + [sym_block_continuation] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2223), + [sym_atx_h1_marker] = ACTIONS(2223), + [sym_atx_h2_marker] = ACTIONS(2223), + [sym_atx_h3_marker] = ACTIONS(2223), + [sym_atx_h4_marker] = ACTIONS(2223), + [sym_atx_h5_marker] = ACTIONS(2223), + [sym_atx_h6_marker] = ACTIONS(2223), + [sym__thematic_break] = ACTIONS(2223), + [sym__list_marker_minus] = ACTIONS(2223), + [sym__list_marker_plus] = ACTIONS(2223), + [sym__list_marker_star] = ACTIONS(2223), + [sym__list_marker_parenthesis] = ACTIONS(2223), + [sym__list_marker_dot] = ACTIONS(2223), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2223), + [sym__list_marker_example] = ACTIONS(2223), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2223), + [sym__fenced_code_block_start_backtick] = ACTIONS(2223), + [sym_minus_metadata] = ACTIONS(2223), + [sym__pipe_table_start] = ACTIONS(2223), + [sym__fenced_div_start] = ACTIONS(2223), + [sym_ref_id_specifier] = ACTIONS(2223), + [sym__code_span_start] = ACTIONS(2223), + [sym__html_comment] = ACTIONS(2223), + [sym__autolink] = ACTIONS(2223), + [sym__highlight_span_start] = ACTIONS(2223), + [sym__insert_span_start] = ACTIONS(2223), + [sym__delete_span_start] = ACTIONS(2223), + [sym__edit_comment_span_start] = ACTIONS(2223), + [sym__single_quote_span_open] = ACTIONS(2223), + [sym__double_quote_span_open] = ACTIONS(2223), + [sym__shortcode_open_escaped] = ACTIONS(2223), + [sym__shortcode_open] = ACTIONS(2223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2223), + [sym__cite_author_in_text] = ACTIONS(2223), + [sym__cite_suppress_author] = ACTIONS(2223), + [sym__strikeout_open] = ACTIONS(2223), + [sym__subscript_open] = ACTIONS(2223), + [sym__superscript_open] = ACTIONS(2223), + [sym__inline_note_start_token] = ACTIONS(2223), + [sym__strong_emphasis_open_star] = ACTIONS(2223), + [sym__strong_emphasis_open_underscore] = ACTIONS(2223), + [sym__emphasis_open_star] = ACTIONS(2223), + [sym__emphasis_open_underscore] = ACTIONS(2223), + [sym_inline_note_reference] = ACTIONS(2223), + [sym_html_element] = ACTIONS(2223), + [sym__pandoc_line_break] = ACTIONS(2223), + [sym_grid_table] = ACTIONS(2223), }, [STATE(293)] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [anon_sym_COLON] = 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), - [sym_block_continuation] = ACTIONS(2843), - [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_line_break] = ACTIONS(2341), - }, - [STATE(294)] = { - [ts_builtin_sym_end] = ACTIONS(2251), - [anon_sym_COLON] = ACTIONS(2251), - [sym_entity_reference] = ACTIONS(2251), - [sym_numeric_character_reference] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_BANG_LBRACK] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [aux_sym_pandoc_str_token1] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2251), - [sym__whitespace] = ACTIONS(2251), - [sym__line_ending] = ACTIONS(2251), - [sym__soft_line_ending] = ACTIONS(2251), - [sym_block_continuation] = ACTIONS(2845), - [sym__block_quote_start] = ACTIONS(2251), - [sym_atx_h1_marker] = ACTIONS(2251), - [sym_atx_h2_marker] = ACTIONS(2251), - [sym_atx_h3_marker] = ACTIONS(2251), - [sym_atx_h4_marker] = ACTIONS(2251), - [sym_atx_h5_marker] = ACTIONS(2251), - [sym_atx_h6_marker] = ACTIONS(2251), - [sym__thematic_break] = ACTIONS(2251), - [sym__list_marker_minus] = ACTIONS(2251), - [sym__list_marker_plus] = ACTIONS(2251), - [sym__list_marker_star] = ACTIONS(2251), - [sym__list_marker_parenthesis] = ACTIONS(2251), - [sym__list_marker_dot] = ACTIONS(2251), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_example] = ACTIONS(2251), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2251), - [sym__fenced_code_block_start_backtick] = ACTIONS(2251), - [sym_minus_metadata] = ACTIONS(2251), - [sym__pipe_table_start] = ACTIONS(2251), - [sym__fenced_div_start] = ACTIONS(2251), - [sym_ref_id_specifier] = ACTIONS(2251), - [sym__code_span_start] = ACTIONS(2251), - [sym__html_comment] = ACTIONS(2251), - [sym__autolink] = ACTIONS(2251), - [sym__highlight_span_start] = ACTIONS(2251), - [sym__insert_span_start] = ACTIONS(2251), - [sym__delete_span_start] = ACTIONS(2251), - [sym__edit_comment_span_start] = ACTIONS(2251), - [sym__single_quote_span_open] = ACTIONS(2251), - [sym__double_quote_span_open] = ACTIONS(2251), - [sym__shortcode_open_escaped] = ACTIONS(2251), - [sym__shortcode_open] = ACTIONS(2251), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2251), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2251), - [sym__cite_author_in_text] = ACTIONS(2251), - [sym__cite_suppress_author] = ACTIONS(2251), - [sym__strikeout_open] = ACTIONS(2251), - [sym__subscript_open] = ACTIONS(2251), - [sym__superscript_open] = ACTIONS(2251), - [sym__inline_note_start_token] = ACTIONS(2251), - [sym__strong_emphasis_open_star] = ACTIONS(2251), - [sym__strong_emphasis_open_underscore] = ACTIONS(2251), - [sym__emphasis_open_star] = ACTIONS(2251), - [sym__emphasis_open_underscore] = ACTIONS(2251), - [sym_inline_note_reference] = ACTIONS(2251), - [sym_html_element] = ACTIONS(2251), - [sym__pandoc_line_break] = ACTIONS(2251), - }, - [STATE(295)] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2293), - [sym_entity_reference] = ACTIONS(2293), - [sym_numeric_character_reference] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [aux_sym_pandoc_str_token1] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2293), - [sym__whitespace] = ACTIONS(2293), - [sym__line_ending] = ACTIONS(2293), - [sym__soft_line_ending] = ACTIONS(2293), - [sym_block_continuation] = ACTIONS(2847), - [sym__block_quote_start] = ACTIONS(2293), - [sym_atx_h1_marker] = ACTIONS(2293), - [sym_atx_h2_marker] = ACTIONS(2293), - [sym_atx_h3_marker] = ACTIONS(2293), - [sym_atx_h4_marker] = ACTIONS(2293), - [sym_atx_h5_marker] = ACTIONS(2293), - [sym_atx_h6_marker] = ACTIONS(2293), - [sym__thematic_break] = ACTIONS(2293), - [sym__list_marker_minus] = ACTIONS(2293), - [sym__list_marker_plus] = ACTIONS(2293), - [sym__list_marker_star] = ACTIONS(2293), - [sym__list_marker_parenthesis] = ACTIONS(2293), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2293), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2293), - [sym__fenced_code_block_start_backtick] = ACTIONS(2293), - [sym_minus_metadata] = ACTIONS(2293), - [sym__pipe_table_start] = ACTIONS(2293), - [sym__fenced_div_start] = ACTIONS(2293), - [sym_ref_id_specifier] = ACTIONS(2293), - [sym__code_span_start] = ACTIONS(2293), - [sym__html_comment] = ACTIONS(2293), - [sym__autolink] = ACTIONS(2293), - [sym__highlight_span_start] = ACTIONS(2293), - [sym__insert_span_start] = ACTIONS(2293), - [sym__delete_span_start] = ACTIONS(2293), - [sym__edit_comment_span_start] = ACTIONS(2293), - [sym__single_quote_span_open] = ACTIONS(2293), - [sym__double_quote_span_open] = ACTIONS(2293), - [sym__shortcode_open_escaped] = ACTIONS(2293), - [sym__shortcode_open] = ACTIONS(2293), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2293), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2293), - [sym__cite_author_in_text] = ACTIONS(2293), - [sym__cite_suppress_author] = ACTIONS(2293), - [sym__strikeout_open] = ACTIONS(2293), - [sym__subscript_open] = ACTIONS(2293), - [sym__superscript_open] = ACTIONS(2293), - [sym__inline_note_start_token] = ACTIONS(2293), - [sym__strong_emphasis_open_star] = ACTIONS(2293), - [sym__strong_emphasis_open_underscore] = ACTIONS(2293), - [sym__emphasis_open_star] = ACTIONS(2293), - [sym__emphasis_open_underscore] = ACTIONS(2293), - [sym_inline_note_reference] = ACTIONS(2293), - [sym_html_element] = ACTIONS(2293), - [sym__pandoc_line_break] = ACTIONS(2293), - }, - [STATE(296)] = { - [anon_sym_COLON] = ACTIONS(2849), - [sym_entity_reference] = ACTIONS(2849), - [sym_numeric_character_reference] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_BANG_LBRACK] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2851), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [aux_sym_pandoc_str_token1] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2849), - [sym__whitespace] = ACTIONS(2849), - [sym__line_ending] = ACTIONS(2849), - [sym__soft_line_ending] = ACTIONS(2849), - [sym__block_close] = ACTIONS(2849), - [sym__block_quote_start] = ACTIONS(2849), - [sym_atx_h1_marker] = ACTIONS(2849), - [sym_atx_h2_marker] = ACTIONS(2849), - [sym_atx_h3_marker] = ACTIONS(2849), - [sym_atx_h4_marker] = ACTIONS(2849), - [sym_atx_h5_marker] = ACTIONS(2849), - [sym_atx_h6_marker] = ACTIONS(2849), - [sym__thematic_break] = ACTIONS(2849), - [sym__list_marker_minus] = ACTIONS(2849), - [sym__list_marker_plus] = ACTIONS(2849), - [sym__list_marker_star] = ACTIONS(2849), - [sym__list_marker_parenthesis] = ACTIONS(2849), - [sym__list_marker_dot] = ACTIONS(2849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_example] = ACTIONS(2849), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), - [sym__fenced_code_block_start_backtick] = ACTIONS(2849), - [sym_minus_metadata] = ACTIONS(2849), - [sym__pipe_table_start] = ACTIONS(2849), - [sym__fenced_div_start] = ACTIONS(2849), - [sym__fenced_div_end] = ACTIONS(2849), - [sym_ref_id_specifier] = ACTIONS(2849), - [sym__code_span_start] = ACTIONS(2849), - [sym__html_comment] = ACTIONS(2849), - [sym__autolink] = ACTIONS(2849), - [sym__highlight_span_start] = ACTIONS(2849), - [sym__insert_span_start] = ACTIONS(2849), - [sym__delete_span_start] = ACTIONS(2849), - [sym__edit_comment_span_start] = ACTIONS(2849), - [sym__single_quote_span_open] = ACTIONS(2849), - [sym__double_quote_span_open] = ACTIONS(2849), - [sym__shortcode_open_escaped] = ACTIONS(2849), - [sym__shortcode_open] = ACTIONS(2849), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2849), - [sym__strikeout_open] = ACTIONS(2849), - [sym__subscript_open] = ACTIONS(2849), - [sym__superscript_open] = ACTIONS(2849), - [sym__inline_note_start_token] = ACTIONS(2849), - [sym__strong_emphasis_open_star] = ACTIONS(2849), - [sym__strong_emphasis_open_underscore] = ACTIONS(2849), - [sym__emphasis_open_star] = ACTIONS(2849), - [sym__emphasis_open_underscore] = ACTIONS(2849), - [sym_inline_note_reference] = ACTIONS(2849), - [sym_html_element] = ACTIONS(2849), - [sym__pandoc_line_break] = ACTIONS(2849), - }, - [STATE(297)] = { - [anon_sym_COLON] = ACTIONS(2377), - [sym_entity_reference] = ACTIONS(2377), - [sym_numeric_character_reference] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_BANG_LBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [aux_sym_pandoc_str_token1] = ACTIONS(2379), - [anon_sym_PIPE] = ACTIONS(2377), - [sym__whitespace] = ACTIONS(2377), - [sym__line_ending] = ACTIONS(2377), - [sym__soft_line_ending] = ACTIONS(2377), - [sym__block_close] = ACTIONS(2377), - [sym_block_continuation] = ACTIONS(2853), - [sym__block_quote_start] = ACTIONS(2377), - [sym_atx_h1_marker] = ACTIONS(2377), - [sym_atx_h2_marker] = ACTIONS(2377), - [sym_atx_h3_marker] = ACTIONS(2377), - [sym_atx_h4_marker] = ACTIONS(2377), - [sym_atx_h5_marker] = ACTIONS(2377), - [sym_atx_h6_marker] = ACTIONS(2377), - [sym__thematic_break] = ACTIONS(2377), - [sym__list_marker_minus] = ACTIONS(2377), - [sym__list_marker_plus] = ACTIONS(2377), - [sym__list_marker_star] = ACTIONS(2377), - [sym__list_marker_parenthesis] = ACTIONS(2377), - [sym__list_marker_dot] = ACTIONS(2377), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_example] = ACTIONS(2377), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), - [sym__fenced_code_block_start_backtick] = ACTIONS(2377), - [sym_minus_metadata] = ACTIONS(2377), - [sym__pipe_table_start] = ACTIONS(2377), - [sym__fenced_div_start] = ACTIONS(2377), - [sym_ref_id_specifier] = ACTIONS(2377), - [sym__code_span_start] = ACTIONS(2377), - [sym__html_comment] = ACTIONS(2377), - [sym__autolink] = ACTIONS(2377), - [sym__highlight_span_start] = ACTIONS(2377), - [sym__insert_span_start] = ACTIONS(2377), - [sym__delete_span_start] = ACTIONS(2377), - [sym__edit_comment_span_start] = ACTIONS(2377), - [sym__single_quote_span_open] = ACTIONS(2377), - [sym__double_quote_span_open] = ACTIONS(2377), - [sym__shortcode_open_escaped] = ACTIONS(2377), - [sym__shortcode_open] = ACTIONS(2377), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), - [sym__cite_author_in_text] = ACTIONS(2377), - [sym__cite_suppress_author] = ACTIONS(2377), - [sym__strikeout_open] = ACTIONS(2377), - [sym__subscript_open] = ACTIONS(2377), - [sym__superscript_open] = ACTIONS(2377), - [sym__inline_note_start_token] = ACTIONS(2377), - [sym__strong_emphasis_open_star] = ACTIONS(2377), - [sym__strong_emphasis_open_underscore] = ACTIONS(2377), - [sym__emphasis_open_star] = ACTIONS(2377), - [sym__emphasis_open_underscore] = ACTIONS(2377), - [sym_inline_note_reference] = ACTIONS(2377), - [sym_html_element] = ACTIONS(2377), - [sym__pandoc_line_break] = ACTIONS(2377), - }, - [STATE(298)] = { - [anon_sym_COLON] = ACTIONS(2299), - [sym_entity_reference] = ACTIONS(2299), - [sym_numeric_character_reference] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_BANG_LBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [aux_sym_pandoc_str_token1] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2299), - [sym__whitespace] = ACTIONS(2299), - [sym__line_ending] = ACTIONS(2299), - [sym__soft_line_ending] = ACTIONS(2299), - [sym__block_close] = ACTIONS(2299), - [sym_block_continuation] = ACTIONS(2855), - [sym__block_quote_start] = ACTIONS(2299), - [sym_atx_h1_marker] = ACTIONS(2299), - [sym_atx_h2_marker] = ACTIONS(2299), - [sym_atx_h3_marker] = ACTIONS(2299), - [sym_atx_h4_marker] = ACTIONS(2299), - [sym_atx_h5_marker] = ACTIONS(2299), - [sym_atx_h6_marker] = ACTIONS(2299), - [sym__thematic_break] = ACTIONS(2299), - [sym__list_marker_minus] = ACTIONS(2299), - [sym__list_marker_plus] = ACTIONS(2299), - [sym__list_marker_star] = ACTIONS(2299), - [sym__list_marker_parenthesis] = ACTIONS(2299), - [sym__list_marker_dot] = ACTIONS(2299), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_example] = ACTIONS(2299), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), - [sym__fenced_code_block_start_backtick] = ACTIONS(2299), - [sym_minus_metadata] = ACTIONS(2299), - [sym__pipe_table_start] = ACTIONS(2299), - [sym__fenced_div_start] = ACTIONS(2299), - [sym_ref_id_specifier] = ACTIONS(2299), - [sym__code_span_start] = ACTIONS(2299), - [sym__html_comment] = ACTIONS(2299), - [sym__autolink] = ACTIONS(2299), - [sym__highlight_span_start] = ACTIONS(2299), - [sym__insert_span_start] = ACTIONS(2299), - [sym__delete_span_start] = ACTIONS(2299), - [sym__edit_comment_span_start] = ACTIONS(2299), - [sym__single_quote_span_open] = ACTIONS(2299), - [sym__double_quote_span_open] = ACTIONS(2299), - [sym__shortcode_open_escaped] = ACTIONS(2299), - [sym__shortcode_open] = ACTIONS(2299), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), - [sym__cite_author_in_text] = ACTIONS(2299), - [sym__cite_suppress_author] = ACTIONS(2299), - [sym__strikeout_open] = ACTIONS(2299), - [sym__subscript_open] = ACTIONS(2299), - [sym__superscript_open] = ACTIONS(2299), - [sym__inline_note_start_token] = ACTIONS(2299), - [sym__strong_emphasis_open_star] = ACTIONS(2299), - [sym__strong_emphasis_open_underscore] = ACTIONS(2299), - [sym__emphasis_open_star] = ACTIONS(2299), - [sym__emphasis_open_underscore] = ACTIONS(2299), - [sym_inline_note_reference] = ACTIONS(2299), - [sym_html_element] = ACTIONS(2299), - [sym__pandoc_line_break] = ACTIONS(2299), - }, - [STATE(299)] = { - [anon_sym_COLON] = ACTIONS(2305), - [sym_entity_reference] = ACTIONS(2305), - [sym_numeric_character_reference] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_BANG_LBRACK] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [aux_sym_pandoc_str_token1] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2305), - [sym__whitespace] = ACTIONS(2305), - [sym__line_ending] = ACTIONS(2305), - [sym__soft_line_ending] = ACTIONS(2305), - [sym__block_close] = ACTIONS(2305), - [sym_block_continuation] = ACTIONS(2857), - [sym__block_quote_start] = ACTIONS(2305), - [sym_atx_h1_marker] = ACTIONS(2305), - [sym_atx_h2_marker] = ACTIONS(2305), - [sym_atx_h3_marker] = ACTIONS(2305), - [sym_atx_h4_marker] = ACTIONS(2305), - [sym_atx_h5_marker] = ACTIONS(2305), - [sym_atx_h6_marker] = ACTIONS(2305), - [sym__thematic_break] = ACTIONS(2305), - [sym__list_marker_minus] = ACTIONS(2305), - [sym__list_marker_plus] = ACTIONS(2305), - [sym__list_marker_star] = ACTIONS(2305), - [sym__list_marker_parenthesis] = ACTIONS(2305), - [sym__list_marker_dot] = ACTIONS(2305), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_example] = ACTIONS(2305), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), - [sym__fenced_code_block_start_backtick] = ACTIONS(2305), - [sym_minus_metadata] = ACTIONS(2305), - [sym__pipe_table_start] = ACTIONS(2305), - [sym__fenced_div_start] = ACTIONS(2305), - [sym_ref_id_specifier] = ACTIONS(2305), - [sym__code_span_start] = ACTIONS(2305), - [sym__html_comment] = ACTIONS(2305), - [sym__autolink] = ACTIONS(2305), - [sym__highlight_span_start] = ACTIONS(2305), - [sym__insert_span_start] = ACTIONS(2305), - [sym__delete_span_start] = ACTIONS(2305), - [sym__edit_comment_span_start] = ACTIONS(2305), - [sym__single_quote_span_open] = ACTIONS(2305), - [sym__double_quote_span_open] = ACTIONS(2305), - [sym__shortcode_open_escaped] = ACTIONS(2305), - [sym__shortcode_open] = ACTIONS(2305), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), - [sym__cite_author_in_text] = ACTIONS(2305), - [sym__cite_suppress_author] = ACTIONS(2305), - [sym__strikeout_open] = ACTIONS(2305), - [sym__subscript_open] = ACTIONS(2305), - [sym__superscript_open] = ACTIONS(2305), - [sym__inline_note_start_token] = ACTIONS(2305), - [sym__strong_emphasis_open_star] = ACTIONS(2305), - [sym__strong_emphasis_open_underscore] = ACTIONS(2305), - [sym__emphasis_open_star] = ACTIONS(2305), - [sym__emphasis_open_underscore] = ACTIONS(2305), - [sym_inline_note_reference] = ACTIONS(2305), - [sym_html_element] = ACTIONS(2305), - [sym__pandoc_line_break] = ACTIONS(2305), - }, - [STATE(300)] = { - [anon_sym_COLON] = ACTIONS(2245), - [sym_entity_reference] = ACTIONS(2245), - [sym_numeric_character_reference] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_BANG_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [aux_sym_pandoc_str_token1] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2245), - [sym__whitespace] = ACTIONS(2245), - [sym__line_ending] = ACTIONS(2245), - [sym__soft_line_ending] = ACTIONS(2245), - [sym__block_close] = ACTIONS(2245), - [sym_block_continuation] = ACTIONS(2859), - [sym__block_quote_start] = ACTIONS(2245), - [sym_atx_h1_marker] = ACTIONS(2245), - [sym_atx_h2_marker] = ACTIONS(2245), - [sym_atx_h3_marker] = ACTIONS(2245), - [sym_atx_h4_marker] = ACTIONS(2245), - [sym_atx_h5_marker] = ACTIONS(2245), - [sym_atx_h6_marker] = ACTIONS(2245), - [sym__thematic_break] = ACTIONS(2245), - [sym__list_marker_minus] = ACTIONS(2245), - [sym__list_marker_plus] = ACTIONS(2245), - [sym__list_marker_star] = ACTIONS(2245), - [sym__list_marker_parenthesis] = ACTIONS(2245), - [sym__list_marker_dot] = ACTIONS(2245), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2245), - [sym__list_marker_example] = ACTIONS(2245), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2245), - [sym__fenced_code_block_start_backtick] = ACTIONS(2245), - [sym_minus_metadata] = ACTIONS(2245), - [sym__pipe_table_start] = ACTIONS(2245), - [sym__fenced_div_start] = ACTIONS(2245), - [sym_ref_id_specifier] = ACTIONS(2245), - [sym__code_span_start] = ACTIONS(2245), - [sym__html_comment] = ACTIONS(2245), - [sym__autolink] = ACTIONS(2245), - [sym__highlight_span_start] = ACTIONS(2245), - [sym__insert_span_start] = ACTIONS(2245), - [sym__delete_span_start] = ACTIONS(2245), - [sym__edit_comment_span_start] = ACTIONS(2245), - [sym__single_quote_span_open] = ACTIONS(2245), - [sym__double_quote_span_open] = ACTIONS(2245), - [sym__shortcode_open_escaped] = ACTIONS(2245), - [sym__shortcode_open] = ACTIONS(2245), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2245), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2245), - [sym__cite_author_in_text] = ACTIONS(2245), - [sym__cite_suppress_author] = ACTIONS(2245), - [sym__strikeout_open] = ACTIONS(2245), - [sym__subscript_open] = ACTIONS(2245), - [sym__superscript_open] = ACTIONS(2245), - [sym__inline_note_start_token] = ACTIONS(2245), - [sym__strong_emphasis_open_star] = ACTIONS(2245), - [sym__strong_emphasis_open_underscore] = ACTIONS(2245), - [sym__emphasis_open_star] = ACTIONS(2245), - [sym__emphasis_open_underscore] = ACTIONS(2245), - [sym_inline_note_reference] = ACTIONS(2245), - [sym_html_element] = ACTIONS(2245), - [sym__pandoc_line_break] = ACTIONS(2245), - }, - [STATE(301)] = { - [anon_sym_COLON] = ACTIONS(2251), - [sym_entity_reference] = ACTIONS(2251), - [sym_numeric_character_reference] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_BANG_LBRACK] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [aux_sym_pandoc_str_token1] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2251), - [sym__whitespace] = ACTIONS(2251), - [sym__line_ending] = ACTIONS(2251), - [sym__soft_line_ending] = ACTIONS(2251), - [sym__block_close] = ACTIONS(2251), - [sym_block_continuation] = ACTIONS(2861), - [sym__block_quote_start] = ACTIONS(2251), - [sym_atx_h1_marker] = ACTIONS(2251), - [sym_atx_h2_marker] = ACTIONS(2251), - [sym_atx_h3_marker] = ACTIONS(2251), - [sym_atx_h4_marker] = ACTIONS(2251), - [sym_atx_h5_marker] = ACTIONS(2251), - [sym_atx_h6_marker] = ACTIONS(2251), - [sym__thematic_break] = ACTIONS(2251), - [sym__list_marker_minus] = ACTIONS(2251), - [sym__list_marker_plus] = ACTIONS(2251), - [sym__list_marker_star] = ACTIONS(2251), - [sym__list_marker_parenthesis] = ACTIONS(2251), - [sym__list_marker_dot] = ACTIONS(2251), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2251), - [sym__list_marker_example] = ACTIONS(2251), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2251), - [sym__fenced_code_block_start_backtick] = ACTIONS(2251), - [sym_minus_metadata] = ACTIONS(2251), - [sym__pipe_table_start] = ACTIONS(2251), - [sym__fenced_div_start] = ACTIONS(2251), - [sym_ref_id_specifier] = ACTIONS(2251), - [sym__code_span_start] = ACTIONS(2251), - [sym__html_comment] = ACTIONS(2251), - [sym__autolink] = ACTIONS(2251), - [sym__highlight_span_start] = ACTIONS(2251), - [sym__insert_span_start] = ACTIONS(2251), - [sym__delete_span_start] = ACTIONS(2251), - [sym__edit_comment_span_start] = ACTIONS(2251), - [sym__single_quote_span_open] = ACTIONS(2251), - [sym__double_quote_span_open] = ACTIONS(2251), - [sym__shortcode_open_escaped] = ACTIONS(2251), - [sym__shortcode_open] = ACTIONS(2251), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2251), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2251), - [sym__cite_author_in_text] = ACTIONS(2251), - [sym__cite_suppress_author] = ACTIONS(2251), - [sym__strikeout_open] = ACTIONS(2251), - [sym__subscript_open] = ACTIONS(2251), - [sym__superscript_open] = ACTIONS(2251), - [sym__inline_note_start_token] = ACTIONS(2251), - [sym__strong_emphasis_open_star] = ACTIONS(2251), - [sym__strong_emphasis_open_underscore] = ACTIONS(2251), - [sym__emphasis_open_star] = ACTIONS(2251), - [sym__emphasis_open_underscore] = ACTIONS(2251), - [sym_inline_note_reference] = ACTIONS(2251), - [sym_html_element] = ACTIONS(2251), - [sym__pandoc_line_break] = ACTIONS(2251), - }, - [STATE(302)] = { - [anon_sym_COLON] = ACTIONS(2311), - [sym_entity_reference] = ACTIONS(2311), - [sym_numeric_character_reference] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_BANG_LBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [aux_sym_pandoc_str_token1] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2311), - [sym__whitespace] = ACTIONS(2311), - [sym__line_ending] = ACTIONS(2311), - [sym__soft_line_ending] = ACTIONS(2311), - [sym__block_close] = ACTIONS(2311), - [sym_block_continuation] = ACTIONS(2863), - [sym__block_quote_start] = ACTIONS(2311), - [sym_atx_h1_marker] = ACTIONS(2311), - [sym_atx_h2_marker] = ACTIONS(2311), - [sym_atx_h3_marker] = ACTIONS(2311), - [sym_atx_h4_marker] = ACTIONS(2311), - [sym_atx_h5_marker] = ACTIONS(2311), - [sym_atx_h6_marker] = ACTIONS(2311), - [sym__thematic_break] = ACTIONS(2311), - [sym__list_marker_minus] = ACTIONS(2311), - [sym__list_marker_plus] = ACTIONS(2311), - [sym__list_marker_star] = ACTIONS(2311), - [sym__list_marker_parenthesis] = ACTIONS(2311), - [sym__list_marker_dot] = ACTIONS(2311), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2311), - [sym_minus_metadata] = ACTIONS(2311), - [sym__pipe_table_start] = ACTIONS(2311), - [sym__fenced_div_start] = ACTIONS(2311), - [sym_ref_id_specifier] = ACTIONS(2311), - [sym__code_span_start] = ACTIONS(2311), - [sym__html_comment] = ACTIONS(2311), - [sym__autolink] = ACTIONS(2311), - [sym__highlight_span_start] = ACTIONS(2311), - [sym__insert_span_start] = ACTIONS(2311), - [sym__delete_span_start] = ACTIONS(2311), - [sym__edit_comment_span_start] = ACTIONS(2311), - [sym__single_quote_span_open] = ACTIONS(2311), - [sym__double_quote_span_open] = ACTIONS(2311), - [sym__shortcode_open_escaped] = ACTIONS(2311), - [sym__shortcode_open] = ACTIONS(2311), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), - [sym__cite_author_in_text] = ACTIONS(2311), - [sym__cite_suppress_author] = ACTIONS(2311), - [sym__strikeout_open] = ACTIONS(2311), - [sym__subscript_open] = ACTIONS(2311), - [sym__superscript_open] = ACTIONS(2311), - [sym__inline_note_start_token] = ACTIONS(2311), - [sym__strong_emphasis_open_star] = ACTIONS(2311), - [sym__strong_emphasis_open_underscore] = ACTIONS(2311), - [sym__emphasis_open_star] = ACTIONS(2311), - [sym__emphasis_open_underscore] = ACTIONS(2311), - [sym_inline_note_reference] = ACTIONS(2311), - [sym_html_element] = ACTIONS(2311), - [sym__pandoc_line_break] = ACTIONS(2311), - }, - [STATE(303)] = { - [anon_sym_COLON] = ACTIONS(2317), - [sym_entity_reference] = ACTIONS(2317), - [sym_numeric_character_reference] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_BANG_LBRACK] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [aux_sym_pandoc_str_token1] = ACTIONS(2319), - [anon_sym_PIPE] = ACTIONS(2317), - [sym__whitespace] = ACTIONS(2317), - [sym__line_ending] = ACTIONS(2317), - [sym__soft_line_ending] = ACTIONS(2317), - [sym__block_close] = ACTIONS(2317), - [sym_block_continuation] = ACTIONS(2865), - [sym__block_quote_start] = ACTIONS(2317), - [sym_atx_h1_marker] = ACTIONS(2317), - [sym_atx_h2_marker] = ACTIONS(2317), - [sym_atx_h3_marker] = ACTIONS(2317), - [sym_atx_h4_marker] = ACTIONS(2317), - [sym_atx_h5_marker] = ACTIONS(2317), - [sym_atx_h6_marker] = ACTIONS(2317), - [sym__thematic_break] = ACTIONS(2317), - [sym__list_marker_minus] = ACTIONS(2317), - [sym__list_marker_plus] = ACTIONS(2317), - [sym__list_marker_star] = ACTIONS(2317), - [sym__list_marker_parenthesis] = ACTIONS(2317), - [sym__list_marker_dot] = ACTIONS(2317), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_example] = ACTIONS(2317), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2317), - [sym__fenced_code_block_start_backtick] = ACTIONS(2317), - [sym_minus_metadata] = ACTIONS(2317), - [sym__pipe_table_start] = ACTIONS(2317), - [sym__fenced_div_start] = ACTIONS(2317), - [sym_ref_id_specifier] = ACTIONS(2317), - [sym__code_span_start] = ACTIONS(2317), - [sym__html_comment] = ACTIONS(2317), - [sym__autolink] = ACTIONS(2317), - [sym__highlight_span_start] = ACTIONS(2317), - [sym__insert_span_start] = ACTIONS(2317), - [sym__delete_span_start] = ACTIONS(2317), - [sym__edit_comment_span_start] = ACTIONS(2317), - [sym__single_quote_span_open] = ACTIONS(2317), - [sym__double_quote_span_open] = ACTIONS(2317), - [sym__shortcode_open_escaped] = ACTIONS(2317), - [sym__shortcode_open] = ACTIONS(2317), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2317), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2317), - [sym__cite_author_in_text] = ACTIONS(2317), - [sym__cite_suppress_author] = ACTIONS(2317), - [sym__strikeout_open] = ACTIONS(2317), - [sym__subscript_open] = ACTIONS(2317), - [sym__superscript_open] = ACTIONS(2317), - [sym__inline_note_start_token] = ACTIONS(2317), - [sym__strong_emphasis_open_star] = ACTIONS(2317), - [sym__strong_emphasis_open_underscore] = ACTIONS(2317), - [sym__emphasis_open_star] = ACTIONS(2317), - [sym__emphasis_open_underscore] = ACTIONS(2317), - [sym_inline_note_reference] = ACTIONS(2317), - [sym_html_element] = ACTIONS(2317), - [sym__pandoc_line_break] = ACTIONS(2317), - }, - [STATE(304)] = { [anon_sym_COLON] = ACTIONS(2323), [sym_entity_reference] = ACTIONS(2323), [sym_numeric_character_reference] = ACTIONS(2323), @@ -51632,7 +51145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2323), [sym__soft_line_ending] = ACTIONS(2323), [sym__block_close] = ACTIONS(2323), - [sym_block_continuation] = ACTIONS(2867), + [sym_block_continuation] = ACTIONS(2679), [sym__block_quote_start] = ACTIONS(2323), [sym_atx_h1_marker] = ACTIONS(2323), [sym_atx_h2_marker] = ACTIONS(2323), @@ -51684,8 +51197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2323), [sym_html_element] = ACTIONS(2323), [sym__pandoc_line_break] = ACTIONS(2323), + [sym_grid_table] = ACTIONS(2323), }, - [STATE(305)] = { + [STATE(294)] = { [anon_sym_COLON] = ACTIONS(2329), [sym_entity_reference] = ACTIONS(2329), [sym_numeric_character_reference] = ACTIONS(2329), @@ -51700,7 +51214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2329), [sym__soft_line_ending] = ACTIONS(2329), [sym__block_close] = ACTIONS(2329), - [sym_block_continuation] = ACTIONS(2869), + [sym_block_continuation] = ACTIONS(2681), [sym__block_quote_start] = ACTIONS(2329), [sym_atx_h1_marker] = ACTIONS(2329), [sym_atx_h2_marker] = ACTIONS(2329), @@ -51752,8 +51266,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2329), [sym_html_element] = ACTIONS(2329), [sym__pandoc_line_break] = ACTIONS(2329), + [sym_grid_table] = ACTIONS(2329), }, - [STATE(306)] = { + [STATE(295)] = { + [anon_sym_COLON] = ACTIONS(2183), + [sym_entity_reference] = ACTIONS(2183), + [sym_numeric_character_reference] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_BANG_LBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [aux_sym_pandoc_str_token1] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2183), + [sym__whitespace] = ACTIONS(2183), + [sym__line_ending] = ACTIONS(2183), + [sym__soft_line_ending] = ACTIONS(2183), + [sym__block_close] = ACTIONS(2183), + [sym_block_continuation] = ACTIONS(2683), + [sym__block_quote_start] = ACTIONS(2183), + [sym_atx_h1_marker] = ACTIONS(2183), + [sym_atx_h2_marker] = ACTIONS(2183), + [sym_atx_h3_marker] = ACTIONS(2183), + [sym_atx_h4_marker] = ACTIONS(2183), + [sym_atx_h5_marker] = ACTIONS(2183), + [sym_atx_h6_marker] = ACTIONS(2183), + [sym__thematic_break] = ACTIONS(2183), + [sym__list_marker_minus] = ACTIONS(2183), + [sym__list_marker_plus] = ACTIONS(2183), + [sym__list_marker_star] = ACTIONS(2183), + [sym__list_marker_parenthesis] = ACTIONS(2183), + [sym__list_marker_dot] = ACTIONS(2183), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_example] = ACTIONS(2183), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2183), + [sym__fenced_code_block_start_backtick] = ACTIONS(2183), + [sym_minus_metadata] = ACTIONS(2183), + [sym__pipe_table_start] = ACTIONS(2183), + [sym__fenced_div_start] = ACTIONS(2183), + [sym_ref_id_specifier] = ACTIONS(2183), + [sym__code_span_start] = ACTIONS(2183), + [sym__html_comment] = ACTIONS(2183), + [sym__autolink] = ACTIONS(2183), + [sym__highlight_span_start] = ACTIONS(2183), + [sym__insert_span_start] = ACTIONS(2183), + [sym__delete_span_start] = ACTIONS(2183), + [sym__edit_comment_span_start] = ACTIONS(2183), + [sym__single_quote_span_open] = ACTIONS(2183), + [sym__double_quote_span_open] = ACTIONS(2183), + [sym__shortcode_open_escaped] = ACTIONS(2183), + [sym__shortcode_open] = ACTIONS(2183), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2183), + [sym__cite_author_in_text] = ACTIONS(2183), + [sym__cite_suppress_author] = ACTIONS(2183), + [sym__strikeout_open] = ACTIONS(2183), + [sym__subscript_open] = ACTIONS(2183), + [sym__superscript_open] = ACTIONS(2183), + [sym__inline_note_start_token] = ACTIONS(2183), + [sym__strong_emphasis_open_star] = ACTIONS(2183), + [sym__strong_emphasis_open_underscore] = ACTIONS(2183), + [sym__emphasis_open_star] = ACTIONS(2183), + [sym__emphasis_open_underscore] = ACTIONS(2183), + [sym_inline_note_reference] = ACTIONS(2183), + [sym_html_element] = ACTIONS(2183), + [sym__pandoc_line_break] = ACTIONS(2183), + [sym_grid_table] = ACTIONS(2183), + }, + [STATE(296)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2237), + [sym_block_continuation] = ACTIONS(2685), + [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_line_break] = ACTIONS(2237), + [sym_grid_table] = ACTIONS(2237), + }, + [STATE(297)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2243), + [sym_block_continuation] = ACTIONS(2687), + [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_line_break] = ACTIONS(2243), + [sym_grid_table] = ACTIONS(2243), + }, + [STATE(298)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2249), + [sym_block_continuation] = ACTIONS(2689), + [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_line_break] = ACTIONS(2249), + [sym_grid_table] = ACTIONS(2249), + }, + [STATE(299)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2255), + [sym_block_continuation] = ACTIONS(2691), + [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_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), + }, + [STATE(300)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2261), + [sym_block_continuation] = ACTIONS(2693), + [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_line_break] = ACTIONS(2261), + [sym_grid_table] = ACTIONS(2261), + }, + [STATE(301)] = { + [ts_builtin_sym_end] = ACTIONS(2335), [anon_sym_COLON] = ACTIONS(2335), [sym_entity_reference] = ACTIONS(2335), [sym_numeric_character_reference] = ACTIONS(2335), @@ -51767,8 +51697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2335), [sym__line_ending] = ACTIONS(2335), [sym__soft_line_ending] = ACTIONS(2335), - [sym__block_close] = ACTIONS(2335), - [sym_block_continuation] = ACTIONS(2871), + [sym_block_continuation] = ACTIONS(2695), [sym__block_quote_start] = ACTIONS(2335), [sym_atx_h1_marker] = ACTIONS(2335), [sym_atx_h2_marker] = ACTIONS(2335), @@ -51820,2320 +51749,2494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2335), [sym_html_element] = ACTIONS(2335), [sym__pandoc_line_break] = ACTIONS(2335), + [sym_grid_table] = ACTIONS(2335), + }, + [STATE(302)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2267), + [sym_block_continuation] = ACTIONS(2697), + [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_line_break] = ACTIONS(2267), + [sym_grid_table] = ACTIONS(2267), + }, + [STATE(303)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2273), + [sym_block_continuation] = ACTIONS(2699), + [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_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), + }, + [STATE(304)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2279), + [sym_block_continuation] = ACTIONS(2701), + [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_line_break] = ACTIONS(2279), + [sym_grid_table] = ACTIONS(2279), + }, + [STATE(305)] = { + [anon_sym_COLON] = ACTIONS(2289), + [sym_entity_reference] = ACTIONS(2289), + [sym_numeric_character_reference] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_BANG_LBRACK] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [aux_sym_pandoc_str_token1] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2289), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym__block_close] = ACTIONS(2289), + [sym_block_continuation] = ACTIONS(2703), + [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] = ACTIONS(2289), + [sym__pipe_table_start] = ACTIONS(2289), + [sym__fenced_div_start] = ACTIONS(2289), + [sym_ref_id_specifier] = ACTIONS(2289), + [sym__code_span_start] = ACTIONS(2289), + [sym__html_comment] = ACTIONS(2289), + [sym__autolink] = ACTIONS(2289), + [sym__highlight_span_start] = ACTIONS(2289), + [sym__insert_span_start] = ACTIONS(2289), + [sym__delete_span_start] = ACTIONS(2289), + [sym__edit_comment_span_start] = ACTIONS(2289), + [sym__single_quote_span_open] = ACTIONS(2289), + [sym__double_quote_span_open] = ACTIONS(2289), + [sym__shortcode_open_escaped] = ACTIONS(2289), + [sym__shortcode_open] = ACTIONS(2289), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), + [sym__cite_author_in_text] = ACTIONS(2289), + [sym__cite_suppress_author] = ACTIONS(2289), + [sym__strikeout_open] = ACTIONS(2289), + [sym__subscript_open] = ACTIONS(2289), + [sym__superscript_open] = ACTIONS(2289), + [sym__inline_note_start_token] = ACTIONS(2289), + [sym__strong_emphasis_open_star] = ACTIONS(2289), + [sym__strong_emphasis_open_underscore] = ACTIONS(2289), + [sym__emphasis_open_star] = ACTIONS(2289), + [sym__emphasis_open_underscore] = ACTIONS(2289), + [sym_inline_note_reference] = ACTIONS(2289), + [sym_html_element] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + }, + [STATE(306)] = { + [anon_sym_COLON] = ACTIONS(2705), + [sym_entity_reference] = ACTIONS(2705), + [sym_numeric_character_reference] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_BANG_LBRACK] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(2707), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [aux_sym_pandoc_str_token1] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2705), + [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] = ACTIONS(2705), + [sym__pipe_table_start] = ACTIONS(2705), + [sym__fenced_div_start] = ACTIONS(2705), + [sym__fenced_div_end] = ACTIONS(2705), + [sym_ref_id_specifier] = ACTIONS(2705), + [sym__code_span_start] = ACTIONS(2705), + [sym__html_comment] = ACTIONS(2705), + [sym__autolink] = ACTIONS(2705), + [sym__highlight_span_start] = ACTIONS(2705), + [sym__insert_span_start] = ACTIONS(2705), + [sym__delete_span_start] = ACTIONS(2705), + [sym__edit_comment_span_start] = ACTIONS(2705), + [sym__single_quote_span_open] = ACTIONS(2705), + [sym__double_quote_span_open] = ACTIONS(2705), + [sym__shortcode_open_escaped] = ACTIONS(2705), + [sym__shortcode_open] = ACTIONS(2705), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2705), + [sym__cite_author_in_text] = ACTIONS(2705), + [sym__cite_suppress_author] = ACTIONS(2705), + [sym__strikeout_open] = ACTIONS(2705), + [sym__subscript_open] = ACTIONS(2705), + [sym__superscript_open] = ACTIONS(2705), + [sym__inline_note_start_token] = ACTIONS(2705), + [sym__strong_emphasis_open_star] = ACTIONS(2705), + [sym__strong_emphasis_open_underscore] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2705), + [sym__emphasis_open_underscore] = ACTIONS(2705), + [sym_inline_note_reference] = ACTIONS(2705), + [sym_html_element] = ACTIONS(2705), + [sym__pandoc_line_break] = ACTIONS(2705), + [sym_grid_table] = ACTIONS(2705), }, [STATE(307)] = { - [sym_pipe_table_cell] = STATE(2896), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2737), - [sym__line_ending] = ACTIONS(2873), - [sym__eof] = ACTIONS(2873), - [sym__pipe_table_line_ending] = ACTIONS(2873), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2741), - [sym__pandoc_line_break] = ACTIONS(2049), + [anon_sym_COLON] = 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_close] = ACTIONS(2335), + [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_line_break] = ACTIONS(2335), + [sym_grid_table] = ACTIONS(2335), }, [STATE(308)] = { - [sym_pipe_table_cell] = STATE(2896), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2737), - [sym__line_ending] = ACTIONS(2739), - [sym__eof] = ACTIONS(2739), - [sym__pipe_table_line_ending] = ACTIONS(2739), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2741), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym__inlines] = STATE(3191), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1488), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(653), + [sym__inline_whitespace] = STATE(653), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2709), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2713), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(309)] = { - [sym_pipe_table_cell] = STATE(2900), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(292), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2875), - [sym__line_ending] = ACTIONS(2873), - [sym__eof] = ACTIONS(2873), - [sym__pipe_table_line_ending] = ACTIONS(2873), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym__inlines] = STATE(3162), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1489), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(638), + [sym__inline_whitespace] = STATE(638), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2715), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2717), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(310)] = { - [anon_sym_COLON] = ACTIONS(2341), + [sym__inlines] = STATE(3307), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1516), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(641), + [sym__inline_whitespace] = STATE(641), [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(2877), - [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), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2719), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2721), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2723), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), [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__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), [sym_inline_note_reference] = ACTIONS(2341), [sym_html_element] = ACTIONS(2341), [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(311)] = { - [anon_sym_COLON] = ACTIONS(2347), - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), + [sym__inlines] = STATE(3310), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1517), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(644), + [sym__inline_whitespace] = STATE(644), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2725), [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(2879), - [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_line_break] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2721), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2727), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(312)] = { - [anon_sym_COLON] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), + [sym__inlines] = STATE(3117), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1194), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(637), + [sym__inline_whitespace] = STATE(637), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2729), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2731), + [anon_sym_DOLLAR] = ACTIONS(2351), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_close] = ACTIONS(2353), - [sym_block_continuation] = ACTIONS(2881), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2733), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(313)] = { - [anon_sym_COLON] = ACTIONS(2359), - [sym_entity_reference] = ACTIONS(2359), - [sym_numeric_character_reference] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_BANG_LBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [sym__inlines] = STATE(3123), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1196), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(646), + [sym__inline_whitespace] = STATE(646), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2735), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2731), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), [anon_sym_PIPE] = ACTIONS(2359), - [sym__whitespace] = ACTIONS(2359), - [sym__line_ending] = ACTIONS(2359), - [sym__soft_line_ending] = ACTIONS(2359), - [sym__block_close] = ACTIONS(2359), - [sym_block_continuation] = ACTIONS(2883), - [sym__block_quote_start] = ACTIONS(2359), - [sym_atx_h1_marker] = ACTIONS(2359), - [sym_atx_h2_marker] = ACTIONS(2359), - [sym_atx_h3_marker] = ACTIONS(2359), - [sym_atx_h4_marker] = ACTIONS(2359), - [sym_atx_h5_marker] = ACTIONS(2359), - [sym_atx_h6_marker] = ACTIONS(2359), - [sym__thematic_break] = ACTIONS(2359), - [sym__list_marker_minus] = ACTIONS(2359), - [sym__list_marker_plus] = ACTIONS(2359), - [sym__list_marker_star] = ACTIONS(2359), - [sym__list_marker_parenthesis] = ACTIONS(2359), - [sym__list_marker_dot] = ACTIONS(2359), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_example] = ACTIONS(2359), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), - [sym__fenced_code_block_start_backtick] = ACTIONS(2359), - [sym_minus_metadata] = ACTIONS(2359), - [sym__pipe_table_start] = ACTIONS(2359), - [sym__fenced_div_start] = ACTIONS(2359), - [sym_ref_id_specifier] = ACTIONS(2359), - [sym__code_span_start] = ACTIONS(2359), - [sym__html_comment] = ACTIONS(2359), - [sym__autolink] = ACTIONS(2359), - [sym__highlight_span_start] = ACTIONS(2359), - [sym__insert_span_start] = ACTIONS(2359), - [sym__delete_span_start] = ACTIONS(2359), - [sym__edit_comment_span_start] = ACTIONS(2359), - [sym__single_quote_span_open] = ACTIONS(2359), - [sym__double_quote_span_open] = ACTIONS(2359), - [sym__shortcode_open_escaped] = ACTIONS(2359), - [sym__shortcode_open] = ACTIONS(2359), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), - [sym__cite_author_in_text] = ACTIONS(2359), - [sym__cite_suppress_author] = ACTIONS(2359), - [sym__strikeout_open] = ACTIONS(2359), - [sym__subscript_open] = ACTIONS(2359), - [sym__superscript_open] = ACTIONS(2359), - [sym__inline_note_start_token] = ACTIONS(2359), - [sym__strong_emphasis_open_star] = ACTIONS(2359), - [sym__strong_emphasis_open_underscore] = ACTIONS(2359), - [sym__emphasis_open_star] = ACTIONS(2359), - [sym__emphasis_open_underscore] = ACTIONS(2359), - [sym_inline_note_reference] = ACTIONS(2359), - [sym_html_element] = ACTIONS(2359), - [sym__pandoc_line_break] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2737), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(314)] = { - [anon_sym_COLON] = ACTIONS(2365), - [sym_entity_reference] = ACTIONS(2365), - [sym_numeric_character_reference] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_BANG_LBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [aux_sym_pandoc_str_token1] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2365), - [sym__whitespace] = ACTIONS(2365), - [sym__line_ending] = ACTIONS(2365), - [sym__soft_line_ending] = ACTIONS(2365), - [sym__block_close] = ACTIONS(2365), - [sym_block_continuation] = ACTIONS(2885), - [sym__block_quote_start] = ACTIONS(2365), - [sym_atx_h1_marker] = ACTIONS(2365), - [sym_atx_h2_marker] = ACTIONS(2365), - [sym_atx_h3_marker] = ACTIONS(2365), - [sym_atx_h4_marker] = ACTIONS(2365), - [sym_atx_h5_marker] = ACTIONS(2365), - [sym_atx_h6_marker] = ACTIONS(2365), - [sym__thematic_break] = ACTIONS(2365), - [sym__list_marker_minus] = ACTIONS(2365), - [sym__list_marker_plus] = ACTIONS(2365), - [sym__list_marker_star] = ACTIONS(2365), - [sym__list_marker_parenthesis] = ACTIONS(2365), - [sym__list_marker_dot] = ACTIONS(2365), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_example] = ACTIONS(2365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), - [sym__fenced_code_block_start_backtick] = ACTIONS(2365), - [sym_minus_metadata] = ACTIONS(2365), - [sym__pipe_table_start] = ACTIONS(2365), - [sym__fenced_div_start] = ACTIONS(2365), - [sym_ref_id_specifier] = ACTIONS(2365), + [sym__inlines] = STATE(3164), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1279), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(624), + [sym__inline_whitespace] = STATE(624), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2739), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2741), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2743), + [sym__soft_line_ending] = ACTIONS(2363), [sym__code_span_start] = ACTIONS(2365), - [sym__html_comment] = ACTIONS(2365), - [sym__autolink] = ACTIONS(2365), - [sym__highlight_span_start] = ACTIONS(2365), - [sym__insert_span_start] = ACTIONS(2365), - [sym__delete_span_start] = ACTIONS(2365), - [sym__edit_comment_span_start] = ACTIONS(2365), - [sym__single_quote_span_open] = ACTIONS(2365), - [sym__double_quote_span_open] = ACTIONS(2365), - [sym__shortcode_open_escaped] = ACTIONS(2365), - [sym__shortcode_open] = ACTIONS(2365), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), - [sym__cite_author_in_text] = ACTIONS(2365), - [sym__cite_suppress_author] = ACTIONS(2365), - [sym__strikeout_open] = ACTIONS(2365), - [sym__subscript_open] = ACTIONS(2365), - [sym__superscript_open] = ACTIONS(2365), - [sym__inline_note_start_token] = ACTIONS(2365), - [sym__strong_emphasis_open_star] = ACTIONS(2365), - [sym__strong_emphasis_open_underscore] = ACTIONS(2365), - [sym__emphasis_open_star] = ACTIONS(2365), - [sym__emphasis_open_underscore] = ACTIONS(2365), - [sym_inline_note_reference] = ACTIONS(2365), - [sym_html_element] = ACTIONS(2365), - [sym__pandoc_line_break] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(315)] = { - [anon_sym_COLON] = ACTIONS(2371), - [sym_entity_reference] = ACTIONS(2371), - [sym_numeric_character_reference] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_BANG_LBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [aux_sym_pandoc_str_token1] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2371), - [sym__whitespace] = ACTIONS(2371), - [sym__line_ending] = ACTIONS(2371), - [sym__soft_line_ending] = ACTIONS(2371), - [sym__block_close] = ACTIONS(2371), - [sym_block_continuation] = ACTIONS(2887), - [sym__block_quote_start] = ACTIONS(2371), - [sym_atx_h1_marker] = ACTIONS(2371), - [sym_atx_h2_marker] = ACTIONS(2371), - [sym_atx_h3_marker] = ACTIONS(2371), - [sym_atx_h4_marker] = ACTIONS(2371), - [sym_atx_h5_marker] = ACTIONS(2371), - [sym_atx_h6_marker] = ACTIONS(2371), - [sym__thematic_break] = ACTIONS(2371), - [sym__list_marker_minus] = ACTIONS(2371), - [sym__list_marker_plus] = ACTIONS(2371), - [sym__list_marker_star] = ACTIONS(2371), - [sym__list_marker_parenthesis] = ACTIONS(2371), - [sym__list_marker_dot] = ACTIONS(2371), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_example] = ACTIONS(2371), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), - [sym__fenced_code_block_start_backtick] = ACTIONS(2371), - [sym_minus_metadata] = ACTIONS(2371), - [sym__pipe_table_start] = ACTIONS(2371), - [sym__fenced_div_start] = ACTIONS(2371), - [sym_ref_id_specifier] = ACTIONS(2371), - [sym__code_span_start] = ACTIONS(2371), - [sym__html_comment] = ACTIONS(2371), - [sym__autolink] = ACTIONS(2371), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2371), + [sym__inlines] = STATE(3165), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1280), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(631), + [sym__inline_whitespace] = STATE(631), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2741), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2747), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), [sym__delete_span_start] = ACTIONS(2371), - [sym__edit_comment_span_start] = ACTIONS(2371), - [sym__single_quote_span_open] = ACTIONS(2371), - [sym__double_quote_span_open] = ACTIONS(2371), - [sym__shortcode_open_escaped] = ACTIONS(2371), - [sym__shortcode_open] = ACTIONS(2371), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), - [sym__cite_author_in_text] = ACTIONS(2371), - [sym__cite_suppress_author] = ACTIONS(2371), - [sym__strikeout_open] = ACTIONS(2371), - [sym__subscript_open] = ACTIONS(2371), - [sym__superscript_open] = ACTIONS(2371), - [sym__inline_note_start_token] = ACTIONS(2371), - [sym__strong_emphasis_open_star] = ACTIONS(2371), - [sym__strong_emphasis_open_underscore] = ACTIONS(2371), - [sym__emphasis_open_star] = ACTIONS(2371), - [sym__emphasis_open_underscore] = ACTIONS(2371), - [sym_inline_note_reference] = ACTIONS(2371), - [sym_html_element] = ACTIONS(2371), - [sym__pandoc_line_break] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(316)] = { - [sym_pipe_table_cell] = STATE(2827), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2737), - [sym__line_ending] = ACTIONS(2889), - [sym__eof] = ACTIONS(2889), - [sym__pipe_table_line_ending] = ACTIONS(2889), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2741), - [sym__pandoc_line_break] = ACTIONS(2049), + [sym__inlines] = STATE(3195), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1307), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(647), + [sym__inline_whitespace] = STATE(647), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2751), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(317)] = { - [anon_sym_COLON] = ACTIONS(2891), - [sym_entity_reference] = ACTIONS(2891), - [sym_numeric_character_reference] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_BANG_LBRACK] = ACTIONS(2891), - [anon_sym_DOLLAR] = ACTIONS(2893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [aux_sym_pandoc_str_token1] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [sym__whitespace] = ACTIONS(2891), - [sym__line_ending] = ACTIONS(2891), - [sym__soft_line_ending] = ACTIONS(2891), - [sym__block_close] = ACTIONS(2891), - [sym__block_quote_start] = ACTIONS(2891), - [sym_atx_h1_marker] = ACTIONS(2891), - [sym_atx_h2_marker] = ACTIONS(2891), - [sym_atx_h3_marker] = ACTIONS(2891), - [sym_atx_h4_marker] = ACTIONS(2891), - [sym_atx_h5_marker] = ACTIONS(2891), - [sym_atx_h6_marker] = ACTIONS(2891), - [sym__thematic_break] = ACTIONS(2891), - [sym__list_marker_minus] = ACTIONS(2891), - [sym__list_marker_plus] = ACTIONS(2891), - [sym__list_marker_star] = ACTIONS(2891), - [sym__list_marker_parenthesis] = ACTIONS(2891), - [sym__list_marker_dot] = ACTIONS(2891), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_example] = ACTIONS(2891), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2891), - [sym__fenced_code_block_start_backtick] = ACTIONS(2891), - [sym_minus_metadata] = ACTIONS(2891), - [sym__pipe_table_start] = ACTIONS(2891), - [sym__fenced_div_start] = ACTIONS(2891), - [sym__fenced_div_end] = ACTIONS(2891), - [sym_ref_id_specifier] = ACTIONS(2891), - [sym__code_span_start] = ACTIONS(2891), - [sym__html_comment] = ACTIONS(2891), - [sym__autolink] = ACTIONS(2891), - [sym__highlight_span_start] = ACTIONS(2891), - [sym__insert_span_start] = ACTIONS(2891), - [sym__delete_span_start] = ACTIONS(2891), - [sym__edit_comment_span_start] = ACTIONS(2891), - [sym__single_quote_span_open] = ACTIONS(2891), - [sym__double_quote_span_open] = ACTIONS(2891), - [sym__shortcode_open_escaped] = ACTIONS(2891), - [sym__shortcode_open] = ACTIONS(2891), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2891), - [sym__cite_author_in_text] = ACTIONS(2891), - [sym__cite_suppress_author] = ACTIONS(2891), - [sym__strikeout_open] = ACTIONS(2891), - [sym__subscript_open] = ACTIONS(2891), - [sym__superscript_open] = ACTIONS(2891), - [sym__inline_note_start_token] = ACTIONS(2891), - [sym__strong_emphasis_open_star] = ACTIONS(2891), - [sym__strong_emphasis_open_underscore] = ACTIONS(2891), - [sym__emphasis_open_star] = ACTIONS(2891), - [sym__emphasis_open_underscore] = ACTIONS(2891), - [sym_inline_note_reference] = ACTIONS(2891), - [sym_html_element] = ACTIONS(2891), - [sym__pandoc_line_break] = ACTIONS(2891), + [sym__inlines] = STATE(3197), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1308), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(648), + [sym__inline_whitespace] = STATE(648), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2755), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2751), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(318)] = { - [anon_sym_COLON] = ACTIONS(2895), - [sym_entity_reference] = ACTIONS(2895), - [sym_numeric_character_reference] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_BANG_LBRACK] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [aux_sym_pandoc_str_token1] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2895), - [sym__whitespace] = ACTIONS(2895), - [sym__line_ending] = ACTIONS(2895), - [sym__soft_line_ending] = ACTIONS(2895), - [sym__block_close] = ACTIONS(2895), - [sym__block_quote_start] = ACTIONS(2895), - [sym_atx_h1_marker] = ACTIONS(2895), - [sym_atx_h2_marker] = ACTIONS(2895), - [sym_atx_h3_marker] = ACTIONS(2895), - [sym_atx_h4_marker] = ACTIONS(2895), - [sym_atx_h5_marker] = ACTIONS(2895), - [sym_atx_h6_marker] = ACTIONS(2895), - [sym__thematic_break] = ACTIONS(2895), - [sym__list_marker_minus] = ACTIONS(2895), - [sym__list_marker_plus] = ACTIONS(2895), - [sym__list_marker_star] = ACTIONS(2895), - [sym__list_marker_parenthesis] = ACTIONS(2895), - [sym__list_marker_dot] = ACTIONS(2895), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_example] = ACTIONS(2895), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2895), - [sym__fenced_code_block_start_backtick] = ACTIONS(2895), - [sym_minus_metadata] = ACTIONS(2895), - [sym__pipe_table_start] = ACTIONS(2895), - [sym__fenced_div_start] = ACTIONS(2895), - [sym__fenced_div_end] = ACTIONS(2895), - [sym_ref_id_specifier] = ACTIONS(2895), - [sym__code_span_start] = ACTIONS(2895), - [sym__html_comment] = ACTIONS(2895), - [sym__autolink] = ACTIONS(2895), - [sym__highlight_span_start] = ACTIONS(2895), - [sym__insert_span_start] = ACTIONS(2895), - [sym__delete_span_start] = ACTIONS(2895), - [sym__edit_comment_span_start] = ACTIONS(2895), - [sym__single_quote_span_open] = ACTIONS(2895), - [sym__double_quote_span_open] = ACTIONS(2895), - [sym__shortcode_open_escaped] = ACTIONS(2895), - [sym__shortcode_open] = ACTIONS(2895), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2895), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2895), - [sym__cite_author_in_text] = ACTIONS(2895), - [sym__cite_suppress_author] = ACTIONS(2895), - [sym__strikeout_open] = ACTIONS(2895), - [sym__subscript_open] = ACTIONS(2895), - [sym__superscript_open] = ACTIONS(2895), - [sym__inline_note_start_token] = ACTIONS(2895), - [sym__strong_emphasis_open_star] = ACTIONS(2895), - [sym__strong_emphasis_open_underscore] = ACTIONS(2895), - [sym__emphasis_open_star] = ACTIONS(2895), - [sym__emphasis_open_underscore] = ACTIONS(2895), - [sym_inline_note_reference] = ACTIONS(2895), - [sym_html_element] = ACTIONS(2895), - [sym__pandoc_line_break] = ACTIONS(2895), + [sym__inlines] = STATE(3231), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1526), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(651), + [sym__inline_whitespace] = STATE(651), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2759), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2763), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(319)] = { - [anon_sym_COLON] = ACTIONS(2257), - [sym_entity_reference] = ACTIONS(2257), - [sym_numeric_character_reference] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_BANG_LBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [aux_sym_pandoc_str_token1] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2257), - [sym__whitespace] = ACTIONS(2257), - [sym__line_ending] = ACTIONS(2257), - [sym__soft_line_ending] = ACTIONS(2257), - [sym__block_close] = ACTIONS(2257), - [sym_block_continuation] = ACTIONS(2899), - [sym__block_quote_start] = ACTIONS(2257), - [sym_atx_h1_marker] = ACTIONS(2257), - [sym_atx_h2_marker] = ACTIONS(2257), - [sym_atx_h3_marker] = ACTIONS(2257), - [sym_atx_h4_marker] = ACTIONS(2257), - [sym_atx_h5_marker] = ACTIONS(2257), - [sym_atx_h6_marker] = ACTIONS(2257), - [sym__thematic_break] = ACTIONS(2257), - [sym__list_marker_minus] = ACTIONS(2257), - [sym__list_marker_plus] = ACTIONS(2257), - [sym__list_marker_star] = ACTIONS(2257), - [sym__list_marker_parenthesis] = ACTIONS(2257), - [sym__list_marker_dot] = ACTIONS(2257), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_example] = ACTIONS(2257), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2257), - [sym__fenced_code_block_start_backtick] = ACTIONS(2257), - [sym_minus_metadata] = ACTIONS(2257), - [sym__pipe_table_start] = ACTIONS(2257), - [sym__fenced_div_start] = ACTIONS(2257), - [sym_ref_id_specifier] = ACTIONS(2257), - [sym__code_span_start] = ACTIONS(2257), - [sym__html_comment] = ACTIONS(2257), - [sym__autolink] = ACTIONS(2257), - [sym__highlight_span_start] = ACTIONS(2257), - [sym__insert_span_start] = ACTIONS(2257), - [sym__delete_span_start] = ACTIONS(2257), - [sym__edit_comment_span_start] = ACTIONS(2257), - [sym__single_quote_span_open] = ACTIONS(2257), - [sym__double_quote_span_open] = ACTIONS(2257), - [sym__shortcode_open_escaped] = ACTIONS(2257), - [sym__shortcode_open] = ACTIONS(2257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2257), - [sym__cite_author_in_text] = ACTIONS(2257), - [sym__cite_suppress_author] = ACTIONS(2257), - [sym__strikeout_open] = ACTIONS(2257), - [sym__subscript_open] = ACTIONS(2257), - [sym__superscript_open] = ACTIONS(2257), - [sym__inline_note_start_token] = ACTIONS(2257), - [sym__strong_emphasis_open_star] = ACTIONS(2257), - [sym__strong_emphasis_open_underscore] = ACTIONS(2257), - [sym__emphasis_open_star] = ACTIONS(2257), - [sym__emphasis_open_underscore] = ACTIONS(2257), - [sym_inline_note_reference] = ACTIONS(2257), - [sym_html_element] = ACTIONS(2257), - [sym__pandoc_line_break] = ACTIONS(2257), + [sym__inlines] = STATE(3232), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1334), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(652), + [sym__inline_whitespace] = STATE(652), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2767), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(320)] = { - [anon_sym_COLON] = ACTIONS(2293), - [sym_entity_reference] = ACTIONS(2293), - [sym_numeric_character_reference] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [aux_sym_pandoc_str_token1] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2293), - [sym__whitespace] = ACTIONS(2293), - [sym__line_ending] = ACTIONS(2293), - [sym__soft_line_ending] = ACTIONS(2293), - [sym__block_close] = ACTIONS(2293), - [sym__block_quote_start] = ACTIONS(2293), - [sym_atx_h1_marker] = ACTIONS(2293), - [sym_atx_h2_marker] = ACTIONS(2293), - [sym_atx_h3_marker] = ACTIONS(2293), - [sym_atx_h4_marker] = ACTIONS(2293), - [sym_atx_h5_marker] = ACTIONS(2293), - [sym_atx_h6_marker] = ACTIONS(2293), - [sym__thematic_break] = ACTIONS(2293), - [sym__list_marker_minus] = ACTIONS(2293), - [sym__list_marker_plus] = ACTIONS(2293), - [sym__list_marker_star] = ACTIONS(2293), - [sym__list_marker_parenthesis] = ACTIONS(2293), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2293), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2293), - [sym__fenced_code_block_start_backtick] = ACTIONS(2293), - [sym_minus_metadata] = ACTIONS(2293), - [sym__pipe_table_start] = ACTIONS(2293), - [sym__fenced_div_start] = ACTIONS(2293), - [sym__fenced_div_end] = ACTIONS(2293), - [sym_ref_id_specifier] = ACTIONS(2293), - [sym__code_span_start] = ACTIONS(2293), - [sym__html_comment] = ACTIONS(2293), - [sym__autolink] = ACTIONS(2293), - [sym__highlight_span_start] = ACTIONS(2293), - [sym__insert_span_start] = ACTIONS(2293), - [sym__delete_span_start] = ACTIONS(2293), - [sym__edit_comment_span_start] = ACTIONS(2293), - [sym__single_quote_span_open] = ACTIONS(2293), - [sym__double_quote_span_open] = ACTIONS(2293), - [sym__shortcode_open_escaped] = ACTIONS(2293), - [sym__shortcode_open] = ACTIONS(2293), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2293), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2293), - [sym__cite_author_in_text] = ACTIONS(2293), - [sym__cite_suppress_author] = ACTIONS(2293), - [sym__strikeout_open] = ACTIONS(2293), - [sym__subscript_open] = ACTIONS(2293), - [sym__superscript_open] = ACTIONS(2293), - [sym__inline_note_start_token] = ACTIONS(2293), - [sym__strong_emphasis_open_star] = ACTIONS(2293), - [sym__strong_emphasis_open_underscore] = ACTIONS(2293), - [sym__emphasis_open_star] = ACTIONS(2293), - [sym__emphasis_open_underscore] = ACTIONS(2293), - [sym_inline_note_reference] = ACTIONS(2293), - [sym_html_element] = ACTIONS(2293), - [sym__pandoc_line_break] = ACTIONS(2293), + [sym__inlines] = STATE(3257), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1375), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(615), + [sym__inline_whitespace] = STATE(615), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2771), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(321)] = { - [anon_sym_COLON] = ACTIONS(2901), - [sym_entity_reference] = ACTIONS(2901), - [sym_numeric_character_reference] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [aux_sym_pandoc_str_token1] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2901), - [sym__whitespace] = ACTIONS(2901), - [sym__line_ending] = ACTIONS(2901), - [sym__soft_line_ending] = ACTIONS(2901), - [sym__block_close] = ACTIONS(2901), - [sym__block_quote_start] = ACTIONS(2901), - [sym_atx_h1_marker] = ACTIONS(2901), - [sym_atx_h2_marker] = ACTIONS(2901), - [sym_atx_h3_marker] = ACTIONS(2901), - [sym_atx_h4_marker] = ACTIONS(2901), - [sym_atx_h5_marker] = ACTIONS(2901), - [sym_atx_h6_marker] = ACTIONS(2901), - [sym__thematic_break] = ACTIONS(2901), - [sym__list_marker_minus] = ACTIONS(2901), - [sym__list_marker_plus] = ACTIONS(2901), - [sym__list_marker_star] = ACTIONS(2901), - [sym__list_marker_parenthesis] = ACTIONS(2901), - [sym__list_marker_dot] = ACTIONS(2901), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_example] = ACTIONS(2901), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2901), - [sym__fenced_code_block_start_backtick] = ACTIONS(2901), - [sym_minus_metadata] = ACTIONS(2901), - [sym__pipe_table_start] = ACTIONS(2901), - [sym__fenced_div_start] = ACTIONS(2901), - [sym__fenced_div_end] = ACTIONS(2901), - [sym_ref_id_specifier] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(2901), - [sym__html_comment] = ACTIONS(2901), - [sym__autolink] = ACTIONS(2901), - [sym__highlight_span_start] = ACTIONS(2901), - [sym__insert_span_start] = ACTIONS(2901), - [sym__delete_span_start] = ACTIONS(2901), - [sym__edit_comment_span_start] = ACTIONS(2901), - [sym__single_quote_span_open] = ACTIONS(2901), - [sym__double_quote_span_open] = ACTIONS(2901), - [sym__shortcode_open_escaped] = ACTIONS(2901), - [sym__shortcode_open] = ACTIONS(2901), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2901), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2901), - [sym__cite_author_in_text] = ACTIONS(2901), - [sym__cite_suppress_author] = ACTIONS(2901), - [sym__strikeout_open] = ACTIONS(2901), - [sym__subscript_open] = ACTIONS(2901), - [sym__superscript_open] = ACTIONS(2901), - [sym__inline_note_start_token] = ACTIONS(2901), - [sym__strong_emphasis_open_star] = ACTIONS(2901), - [sym__strong_emphasis_open_underscore] = ACTIONS(2901), - [sym__emphasis_open_star] = ACTIONS(2901), - [sym__emphasis_open_underscore] = ACTIONS(2901), - [sym_inline_note_reference] = ACTIONS(2901), - [sym_html_element] = ACTIONS(2901), - [sym__pandoc_line_break] = ACTIONS(2901), + [sym__inlines] = STATE(3259), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1376), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(616), + [sym__inline_whitespace] = STATE(616), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2775), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2771), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2777), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, [STATE(322)] = { - [anon_sym_COLON] = ACTIONS(2905), - [sym_entity_reference] = ACTIONS(2905), - [sym_numeric_character_reference] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_BANG_LBRACK] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2907), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2905), - [aux_sym_pandoc_str_token1] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [sym__whitespace] = ACTIONS(2905), - [sym__line_ending] = ACTIONS(2905), - [sym__soft_line_ending] = ACTIONS(2905), - [sym__block_close] = ACTIONS(2905), - [sym__block_quote_start] = ACTIONS(2905), - [sym_atx_h1_marker] = ACTIONS(2905), - [sym_atx_h2_marker] = ACTIONS(2905), - [sym_atx_h3_marker] = ACTIONS(2905), - [sym_atx_h4_marker] = ACTIONS(2905), - [sym_atx_h5_marker] = ACTIONS(2905), - [sym_atx_h6_marker] = ACTIONS(2905), - [sym__thematic_break] = ACTIONS(2905), - [sym__list_marker_minus] = ACTIONS(2905), - [sym__list_marker_plus] = ACTIONS(2905), - [sym__list_marker_star] = ACTIONS(2905), - [sym__list_marker_parenthesis] = ACTIONS(2905), - [sym__list_marker_dot] = ACTIONS(2905), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_example] = ACTIONS(2905), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2905), - [sym__fenced_code_block_start_backtick] = ACTIONS(2905), - [sym_minus_metadata] = ACTIONS(2905), - [sym__pipe_table_start] = ACTIONS(2905), - [sym__fenced_div_start] = ACTIONS(2905), - [sym__fenced_div_end] = ACTIONS(2905), - [sym_ref_id_specifier] = ACTIONS(2905), - [sym__code_span_start] = ACTIONS(2905), - [sym__html_comment] = ACTIONS(2905), - [sym__autolink] = ACTIONS(2905), - [sym__highlight_span_start] = ACTIONS(2905), - [sym__insert_span_start] = ACTIONS(2905), - [sym__delete_span_start] = ACTIONS(2905), - [sym__edit_comment_span_start] = ACTIONS(2905), - [sym__single_quote_span_open] = ACTIONS(2905), - [sym__double_quote_span_open] = ACTIONS(2905), - [sym__shortcode_open_escaped] = ACTIONS(2905), - [sym__shortcode_open] = ACTIONS(2905), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2905), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2905), - [sym__cite_author_in_text] = ACTIONS(2905), - [sym__cite_suppress_author] = ACTIONS(2905), - [sym__strikeout_open] = ACTIONS(2905), - [sym__subscript_open] = ACTIONS(2905), - [sym__superscript_open] = ACTIONS(2905), - [sym__inline_note_start_token] = ACTIONS(2905), - [sym__strong_emphasis_open_star] = ACTIONS(2905), - [sym__strong_emphasis_open_underscore] = ACTIONS(2905), - [sym__emphasis_open_star] = ACTIONS(2905), - [sym__emphasis_open_underscore] = ACTIONS(2905), - [sym_inline_note_reference] = ACTIONS(2905), - [sym_html_element] = ACTIONS(2905), - [sym__pandoc_line_break] = ACTIONS(2905), - }, - [STATE(323)] = { - [anon_sym_COLON] = ACTIONS(2909), - [sym_entity_reference] = ACTIONS(2909), - [sym_numeric_character_reference] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_BANG_LBRACK] = ACTIONS(2909), - [anon_sym_DOLLAR] = ACTIONS(2911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [aux_sym_pandoc_str_token1] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [sym__whitespace] = ACTIONS(2909), - [sym__line_ending] = ACTIONS(2909), - [sym__soft_line_ending] = ACTIONS(2909), - [sym__block_close] = ACTIONS(2909), - [sym__block_quote_start] = ACTIONS(2909), - [sym_atx_h1_marker] = ACTIONS(2909), - [sym_atx_h2_marker] = ACTIONS(2909), - [sym_atx_h3_marker] = ACTIONS(2909), - [sym_atx_h4_marker] = ACTIONS(2909), - [sym_atx_h5_marker] = ACTIONS(2909), - [sym_atx_h6_marker] = ACTIONS(2909), - [sym__thematic_break] = ACTIONS(2909), - [sym__list_marker_minus] = ACTIONS(2909), - [sym__list_marker_plus] = ACTIONS(2909), - [sym__list_marker_star] = ACTIONS(2909), - [sym__list_marker_parenthesis] = ACTIONS(2909), - [sym__list_marker_dot] = ACTIONS(2909), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_example] = ACTIONS(2909), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2909), - [sym__fenced_code_block_start_backtick] = ACTIONS(2909), - [sym_minus_metadata] = ACTIONS(2909), - [sym__pipe_table_start] = ACTIONS(2909), - [sym__fenced_div_start] = ACTIONS(2909), - [sym__fenced_div_end] = ACTIONS(2909), - [sym_ref_id_specifier] = ACTIONS(2909), - [sym__code_span_start] = ACTIONS(2909), - [sym__html_comment] = ACTIONS(2909), - [sym__autolink] = ACTIONS(2909), - [sym__highlight_span_start] = ACTIONS(2909), - [sym__insert_span_start] = ACTIONS(2909), - [sym__delete_span_start] = ACTIONS(2909), - [sym__edit_comment_span_start] = ACTIONS(2909), - [sym__single_quote_span_open] = ACTIONS(2909), - [sym__double_quote_span_open] = ACTIONS(2909), - [sym__shortcode_open_escaped] = ACTIONS(2909), - [sym__shortcode_open] = ACTIONS(2909), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2909), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2909), - [sym__cite_author_in_text] = ACTIONS(2909), - [sym__cite_suppress_author] = ACTIONS(2909), - [sym__strikeout_open] = ACTIONS(2909), - [sym__subscript_open] = ACTIONS(2909), - [sym__superscript_open] = ACTIONS(2909), - [sym__inline_note_start_token] = ACTIONS(2909), - [sym__strong_emphasis_open_star] = ACTIONS(2909), - [sym__strong_emphasis_open_underscore] = ACTIONS(2909), - [sym__emphasis_open_star] = ACTIONS(2909), - [sym__emphasis_open_underscore] = ACTIONS(2909), - [sym_inline_note_reference] = ACTIONS(2909), - [sym_html_element] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2909), - }, - [STATE(324)] = { - [anon_sym_COLON] = ACTIONS(2913), - [sym_entity_reference] = ACTIONS(2913), - [sym_numeric_character_reference] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_BANG_LBRACK] = ACTIONS(2913), - [anon_sym_DOLLAR] = ACTIONS(2915), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [aux_sym_pandoc_str_token1] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [sym__whitespace] = ACTIONS(2913), - [sym__line_ending] = ACTIONS(2913), - [sym__soft_line_ending] = ACTIONS(2913), - [sym__block_close] = ACTIONS(2913), - [sym__block_quote_start] = ACTIONS(2913), - [sym_atx_h1_marker] = ACTIONS(2913), - [sym_atx_h2_marker] = ACTIONS(2913), - [sym_atx_h3_marker] = ACTIONS(2913), - [sym_atx_h4_marker] = ACTIONS(2913), - [sym_atx_h5_marker] = ACTIONS(2913), - [sym_atx_h6_marker] = ACTIONS(2913), - [sym__thematic_break] = ACTIONS(2913), - [sym__list_marker_minus] = ACTIONS(2913), - [sym__list_marker_plus] = ACTIONS(2913), - [sym__list_marker_star] = ACTIONS(2913), - [sym__list_marker_parenthesis] = ACTIONS(2913), - [sym__list_marker_dot] = ACTIONS(2913), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_example] = ACTIONS(2913), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2913), - [sym__fenced_code_block_start_backtick] = ACTIONS(2913), - [sym_minus_metadata] = ACTIONS(2913), - [sym__pipe_table_start] = ACTIONS(2913), - [sym__fenced_div_start] = ACTIONS(2913), - [sym__fenced_div_end] = ACTIONS(2913), - [sym_ref_id_specifier] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(2913), - [sym__html_comment] = ACTIONS(2913), - [sym__autolink] = ACTIONS(2913), - [sym__highlight_span_start] = ACTIONS(2913), - [sym__insert_span_start] = ACTIONS(2913), - [sym__delete_span_start] = ACTIONS(2913), - [sym__edit_comment_span_start] = ACTIONS(2913), - [sym__single_quote_span_open] = ACTIONS(2913), - [sym__double_quote_span_open] = ACTIONS(2913), - [sym__shortcode_open_escaped] = ACTIONS(2913), - [sym__shortcode_open] = ACTIONS(2913), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2913), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2913), - [sym__cite_author_in_text] = ACTIONS(2913), - [sym__cite_suppress_author] = ACTIONS(2913), - [sym__strikeout_open] = ACTIONS(2913), - [sym__subscript_open] = ACTIONS(2913), - [sym__superscript_open] = ACTIONS(2913), - [sym__inline_note_start_token] = ACTIONS(2913), - [sym__strong_emphasis_open_star] = ACTIONS(2913), - [sym__strong_emphasis_open_underscore] = ACTIONS(2913), - [sym__emphasis_open_star] = ACTIONS(2913), - [sym__emphasis_open_underscore] = ACTIONS(2913), - [sym_inline_note_reference] = ACTIONS(2913), - [sym_html_element] = ACTIONS(2913), - [sym__pandoc_line_break] = ACTIONS(2913), - }, - [STATE(325)] = { - [anon_sym_COLON] = ACTIONS(2917), - [sym_entity_reference] = ACTIONS(2917), - [sym_numeric_character_reference] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_BANG_LBRACK] = ACTIONS(2917), - [anon_sym_DOLLAR] = ACTIONS(2919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [aux_sym_pandoc_str_token1] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2917), - [sym__whitespace] = ACTIONS(2917), - [sym__line_ending] = ACTIONS(2917), - [sym__soft_line_ending] = ACTIONS(2917), - [sym__block_close] = ACTIONS(2917), - [sym__block_quote_start] = ACTIONS(2917), - [sym_atx_h1_marker] = ACTIONS(2917), - [sym_atx_h2_marker] = ACTIONS(2917), - [sym_atx_h3_marker] = ACTIONS(2917), - [sym_atx_h4_marker] = ACTIONS(2917), - [sym_atx_h5_marker] = ACTIONS(2917), - [sym_atx_h6_marker] = ACTIONS(2917), - [sym__thematic_break] = ACTIONS(2917), - [sym__list_marker_minus] = ACTIONS(2917), - [sym__list_marker_plus] = ACTIONS(2917), - [sym__list_marker_star] = ACTIONS(2917), - [sym__list_marker_parenthesis] = ACTIONS(2917), - [sym__list_marker_dot] = ACTIONS(2917), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_example] = ACTIONS(2917), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2917), - [sym__fenced_code_block_start_backtick] = ACTIONS(2917), - [sym_minus_metadata] = ACTIONS(2917), - [sym__pipe_table_start] = ACTIONS(2917), - [sym__fenced_div_start] = ACTIONS(2917), - [sym__fenced_div_end] = ACTIONS(2917), - [sym_ref_id_specifier] = ACTIONS(2917), - [sym__code_span_start] = ACTIONS(2917), - [sym__html_comment] = ACTIONS(2917), - [sym__autolink] = ACTIONS(2917), - [sym__highlight_span_start] = ACTIONS(2917), - [sym__insert_span_start] = ACTIONS(2917), - [sym__delete_span_start] = ACTIONS(2917), - [sym__edit_comment_span_start] = ACTIONS(2917), - [sym__single_quote_span_open] = ACTIONS(2917), - [sym__double_quote_span_open] = ACTIONS(2917), - [sym__shortcode_open_escaped] = ACTIONS(2917), - [sym__shortcode_open] = ACTIONS(2917), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2917), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2917), - [sym__cite_author_in_text] = ACTIONS(2917), - [sym__cite_suppress_author] = ACTIONS(2917), - [sym__strikeout_open] = ACTIONS(2917), - [sym__subscript_open] = ACTIONS(2917), - [sym__superscript_open] = ACTIONS(2917), - [sym__inline_note_start_token] = ACTIONS(2917), - [sym__strong_emphasis_open_star] = ACTIONS(2917), - [sym__strong_emphasis_open_underscore] = ACTIONS(2917), - [sym__emphasis_open_star] = ACTIONS(2917), - [sym__emphasis_open_underscore] = ACTIONS(2917), - [sym_inline_note_reference] = ACTIONS(2917), - [sym_html_element] = ACTIONS(2917), - [sym__pandoc_line_break] = ACTIONS(2917), - }, - [STATE(326)] = { - [anon_sym_COLON] = ACTIONS(2921), - [sym_entity_reference] = ACTIONS(2921), - [sym_numeric_character_reference] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_BANG_LBRACK] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [aux_sym_pandoc_str_token1] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2921), - [sym__whitespace] = ACTIONS(2921), - [sym__line_ending] = ACTIONS(2921), - [sym__soft_line_ending] = ACTIONS(2921), - [sym__block_close] = ACTIONS(2921), - [sym__block_quote_start] = ACTIONS(2921), - [sym_atx_h1_marker] = ACTIONS(2921), - [sym_atx_h2_marker] = ACTIONS(2921), - [sym_atx_h3_marker] = ACTIONS(2921), - [sym_atx_h4_marker] = ACTIONS(2921), - [sym_atx_h5_marker] = ACTIONS(2921), - [sym_atx_h6_marker] = ACTIONS(2921), - [sym__thematic_break] = ACTIONS(2921), - [sym__list_marker_minus] = ACTIONS(2921), - [sym__list_marker_plus] = ACTIONS(2921), - [sym__list_marker_star] = ACTIONS(2921), - [sym__list_marker_parenthesis] = ACTIONS(2921), - [sym__list_marker_dot] = ACTIONS(2921), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_example] = ACTIONS(2921), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2921), - [sym__fenced_code_block_start_backtick] = ACTIONS(2921), - [sym_minus_metadata] = ACTIONS(2921), - [sym__pipe_table_start] = ACTIONS(2921), - [sym__fenced_div_start] = ACTIONS(2921), - [sym__fenced_div_end] = ACTIONS(2921), - [sym_ref_id_specifier] = ACTIONS(2921), - [sym__code_span_start] = ACTIONS(2921), - [sym__html_comment] = ACTIONS(2921), - [sym__autolink] = ACTIONS(2921), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2921), - [sym__delete_span_start] = ACTIONS(2921), - [sym__edit_comment_span_start] = ACTIONS(2921), - [sym__single_quote_span_open] = ACTIONS(2921), - [sym__double_quote_span_open] = ACTIONS(2921), - [sym__shortcode_open_escaped] = ACTIONS(2921), - [sym__shortcode_open] = ACTIONS(2921), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2921), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2921), - [sym__cite_author_in_text] = ACTIONS(2921), - [sym__cite_suppress_author] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(2921), - [sym__subscript_open] = ACTIONS(2921), - [sym__superscript_open] = ACTIONS(2921), - [sym__inline_note_start_token] = ACTIONS(2921), - [sym__strong_emphasis_open_star] = ACTIONS(2921), - [sym__strong_emphasis_open_underscore] = ACTIONS(2921), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym_inline_note_reference] = ACTIONS(2921), - [sym_html_element] = ACTIONS(2921), - [sym__pandoc_line_break] = ACTIONS(2921), - }, - [STATE(327)] = { - [anon_sym_COLON] = ACTIONS(2925), - [sym_entity_reference] = ACTIONS(2925), - [sym_numeric_character_reference] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_BANG_LBRACK] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [aux_sym_pandoc_str_token1] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2925), - [sym__whitespace] = ACTIONS(2925), - [sym__line_ending] = ACTIONS(2925), - [sym__soft_line_ending] = ACTIONS(2925), - [sym__block_close] = ACTIONS(2925), - [sym__block_quote_start] = ACTIONS(2925), - [sym_atx_h1_marker] = ACTIONS(2925), - [sym_atx_h2_marker] = ACTIONS(2925), - [sym_atx_h3_marker] = ACTIONS(2925), - [sym_atx_h4_marker] = ACTIONS(2925), - [sym_atx_h5_marker] = ACTIONS(2925), - [sym_atx_h6_marker] = ACTIONS(2925), - [sym__thematic_break] = ACTIONS(2925), - [sym__list_marker_minus] = ACTIONS(2925), - [sym__list_marker_plus] = ACTIONS(2925), - [sym__list_marker_star] = ACTIONS(2925), - [sym__list_marker_parenthesis] = ACTIONS(2925), - [sym__list_marker_dot] = ACTIONS(2925), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_example] = ACTIONS(2925), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2925), - [sym__fenced_code_block_start_backtick] = ACTIONS(2925), - [sym_minus_metadata] = ACTIONS(2925), - [sym__pipe_table_start] = ACTIONS(2925), - [sym__fenced_div_start] = ACTIONS(2925), - [sym__fenced_div_end] = ACTIONS(2925), - [sym_ref_id_specifier] = ACTIONS(2925), - [sym__code_span_start] = ACTIONS(2925), - [sym__html_comment] = ACTIONS(2925), - [sym__autolink] = ACTIONS(2925), - [sym__highlight_span_start] = ACTIONS(2925), - [sym__insert_span_start] = ACTIONS(2925), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2925), - [sym__single_quote_span_open] = ACTIONS(2925), - [sym__double_quote_span_open] = ACTIONS(2925), - [sym__shortcode_open_escaped] = ACTIONS(2925), - [sym__shortcode_open] = ACTIONS(2925), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2925), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2925), - [sym__cite_author_in_text] = ACTIONS(2925), - [sym__cite_suppress_author] = ACTIONS(2925), - [sym__strikeout_open] = ACTIONS(2925), - [sym__subscript_open] = ACTIONS(2925), - [sym__superscript_open] = ACTIONS(2925), - [sym__inline_note_start_token] = ACTIONS(2925), - [sym__strong_emphasis_open_star] = ACTIONS(2925), - [sym__strong_emphasis_open_underscore] = ACTIONS(2925), - [sym__emphasis_open_star] = ACTIONS(2925), - [sym__emphasis_open_underscore] = ACTIONS(2925), - [sym_inline_note_reference] = ACTIONS(2925), - [sym_html_element] = ACTIONS(2925), - [sym__pandoc_line_break] = ACTIONS(2925), - }, - [STATE(328)] = { - [anon_sym_COLON] = ACTIONS(2929), - [sym_entity_reference] = ACTIONS(2929), - [sym_numeric_character_reference] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_BANG_LBRACK] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2931), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2929), - [aux_sym_pandoc_str_token1] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2929), - [sym__whitespace] = ACTIONS(2929), - [sym__line_ending] = ACTIONS(2929), - [sym__soft_line_ending] = ACTIONS(2929), - [sym__block_close] = ACTIONS(2929), - [sym__block_quote_start] = ACTIONS(2929), - [sym_atx_h1_marker] = ACTIONS(2929), - [sym_atx_h2_marker] = ACTIONS(2929), - [sym_atx_h3_marker] = ACTIONS(2929), - [sym_atx_h4_marker] = ACTIONS(2929), - [sym_atx_h5_marker] = ACTIONS(2929), - [sym_atx_h6_marker] = ACTIONS(2929), - [sym__thematic_break] = ACTIONS(2929), - [sym__list_marker_minus] = ACTIONS(2929), - [sym__list_marker_plus] = ACTIONS(2929), - [sym__list_marker_star] = ACTIONS(2929), - [sym__list_marker_parenthesis] = ACTIONS(2929), - [sym__list_marker_dot] = ACTIONS(2929), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_example] = ACTIONS(2929), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2929), - [sym__fenced_code_block_start_backtick] = ACTIONS(2929), - [sym_minus_metadata] = ACTIONS(2929), - [sym__pipe_table_start] = ACTIONS(2929), - [sym__fenced_div_start] = ACTIONS(2929), - [sym__fenced_div_end] = ACTIONS(2929), - [sym_ref_id_specifier] = ACTIONS(2929), - [sym__code_span_start] = ACTIONS(2929), - [sym__html_comment] = ACTIONS(2929), - [sym__autolink] = ACTIONS(2929), - [sym__highlight_span_start] = ACTIONS(2929), - [sym__insert_span_start] = ACTIONS(2929), - [sym__delete_span_start] = ACTIONS(2929), - [sym__edit_comment_span_start] = ACTIONS(2929), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2929), - [sym__shortcode_open_escaped] = ACTIONS(2929), - [sym__shortcode_open] = ACTIONS(2929), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2929), - [sym__cite_author_in_text] = ACTIONS(2929), - [sym__cite_suppress_author] = ACTIONS(2929), - [sym__strikeout_open] = ACTIONS(2929), - [sym__subscript_open] = ACTIONS(2929), - [sym__superscript_open] = ACTIONS(2929), - [sym__inline_note_start_token] = ACTIONS(2929), - [sym__strong_emphasis_open_star] = ACTIONS(2929), - [sym__strong_emphasis_open_underscore] = ACTIONS(2929), - [sym__emphasis_open_star] = ACTIONS(2929), - [sym__emphasis_open_underscore] = ACTIONS(2929), - [sym_inline_note_reference] = ACTIONS(2929), - [sym_html_element] = ACTIONS(2929), - [sym__pandoc_line_break] = ACTIONS(2929), - }, - [STATE(329)] = { - [anon_sym_COLON] = ACTIONS(2933), - [sym_entity_reference] = ACTIONS(2933), - [sym_numeric_character_reference] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_BANG_LBRACK] = ACTIONS(2933), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2933), - [aux_sym_pandoc_str_token1] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2933), - [sym__whitespace] = ACTIONS(2933), - [sym__line_ending] = ACTIONS(2933), - [sym__soft_line_ending] = ACTIONS(2933), - [sym__block_close] = ACTIONS(2933), - [sym__block_quote_start] = ACTIONS(2933), - [sym_atx_h1_marker] = ACTIONS(2933), - [sym_atx_h2_marker] = ACTIONS(2933), - [sym_atx_h3_marker] = ACTIONS(2933), - [sym_atx_h4_marker] = ACTIONS(2933), - [sym_atx_h5_marker] = ACTIONS(2933), - [sym_atx_h6_marker] = ACTIONS(2933), - [sym__thematic_break] = ACTIONS(2933), - [sym__list_marker_minus] = ACTIONS(2933), - [sym__list_marker_plus] = ACTIONS(2933), - [sym__list_marker_star] = ACTIONS(2933), - [sym__list_marker_parenthesis] = ACTIONS(2933), - [sym__list_marker_dot] = ACTIONS(2933), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_example] = ACTIONS(2933), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2933), - [sym__fenced_code_block_start_backtick] = ACTIONS(2933), - [sym_minus_metadata] = ACTIONS(2933), - [sym__pipe_table_start] = ACTIONS(2933), - [sym__fenced_div_start] = ACTIONS(2933), - [sym__fenced_div_end] = ACTIONS(2933), - [sym_ref_id_specifier] = ACTIONS(2933), - [sym__code_span_start] = ACTIONS(2933), - [sym__html_comment] = ACTIONS(2933), - [sym__autolink] = ACTIONS(2933), - [sym__highlight_span_start] = ACTIONS(2933), - [sym__insert_span_start] = ACTIONS(2933), - [sym__delete_span_start] = ACTIONS(2933), - [sym__edit_comment_span_start] = ACTIONS(2933), - [sym__single_quote_span_open] = ACTIONS(2933), - [sym__double_quote_span_open] = ACTIONS(2933), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2933), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2933), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2933), - [sym__cite_author_in_text] = ACTIONS(2933), - [sym__cite_suppress_author] = ACTIONS(2933), - [sym__strikeout_open] = ACTIONS(2933), - [sym__subscript_open] = ACTIONS(2933), - [sym__superscript_open] = ACTIONS(2933), - [sym__inline_note_start_token] = ACTIONS(2933), - [sym__strong_emphasis_open_star] = ACTIONS(2933), - [sym__strong_emphasis_open_underscore] = ACTIONS(2933), - [sym__emphasis_open_star] = ACTIONS(2933), - [sym__emphasis_open_underscore] = ACTIONS(2933), - [sym_inline_note_reference] = ACTIONS(2933), - [sym_html_element] = ACTIONS(2933), - [sym__pandoc_line_break] = ACTIONS(2933), - }, - [STATE(330)] = { - [anon_sym_COLON] = ACTIONS(2263), - [sym_entity_reference] = ACTIONS(2263), - [sym_numeric_character_reference] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_BANG_LBRACK] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [aux_sym_pandoc_str_token1] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2263), - [sym__whitespace] = ACTIONS(2263), - [sym__line_ending] = ACTIONS(2263), - [sym__soft_line_ending] = ACTIONS(2263), - [sym__block_close] = ACTIONS(2263), - [sym_block_continuation] = ACTIONS(2937), - [sym__block_quote_start] = ACTIONS(2263), - [sym_atx_h1_marker] = ACTIONS(2263), - [sym_atx_h2_marker] = ACTIONS(2263), - [sym_atx_h3_marker] = ACTIONS(2263), - [sym_atx_h4_marker] = ACTIONS(2263), - [sym_atx_h5_marker] = ACTIONS(2263), - [sym_atx_h6_marker] = ACTIONS(2263), - [sym__thematic_break] = ACTIONS(2263), - [sym__list_marker_minus] = ACTIONS(2263), - [sym__list_marker_plus] = ACTIONS(2263), - [sym__list_marker_star] = ACTIONS(2263), - [sym__list_marker_parenthesis] = ACTIONS(2263), - [sym__list_marker_dot] = ACTIONS(2263), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_example] = ACTIONS(2263), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2263), - [sym__fenced_code_block_start_backtick] = ACTIONS(2263), - [sym_minus_metadata] = ACTIONS(2263), - [sym__pipe_table_start] = ACTIONS(2263), - [sym__fenced_div_start] = ACTIONS(2263), - [sym_ref_id_specifier] = ACTIONS(2263), - [sym__code_span_start] = ACTIONS(2263), - [sym__html_comment] = ACTIONS(2263), - [sym__autolink] = ACTIONS(2263), - [sym__highlight_span_start] = ACTIONS(2263), - [sym__insert_span_start] = ACTIONS(2263), - [sym__delete_span_start] = ACTIONS(2263), - [sym__edit_comment_span_start] = ACTIONS(2263), - [sym__single_quote_span_open] = ACTIONS(2263), - [sym__double_quote_span_open] = ACTIONS(2263), - [sym__shortcode_open_escaped] = ACTIONS(2263), - [sym__shortcode_open] = ACTIONS(2263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2263), - [sym__cite_author_in_text] = ACTIONS(2263), - [sym__cite_suppress_author] = ACTIONS(2263), - [sym__strikeout_open] = ACTIONS(2263), - [sym__subscript_open] = ACTIONS(2263), - [sym__superscript_open] = ACTIONS(2263), - [sym__inline_note_start_token] = ACTIONS(2263), - [sym__strong_emphasis_open_star] = ACTIONS(2263), - [sym__strong_emphasis_open_underscore] = ACTIONS(2263), - [sym__emphasis_open_star] = ACTIONS(2263), - [sym__emphasis_open_underscore] = ACTIONS(2263), - [sym_inline_note_reference] = ACTIONS(2263), - [sym_html_element] = ACTIONS(2263), - [sym__pandoc_line_break] = ACTIONS(2263), - }, - [STATE(331)] = { - [anon_sym_COLON] = ACTIONS(2269), - [sym_entity_reference] = ACTIONS(2269), - [sym_numeric_character_reference] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_BANG_LBRACK] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [aux_sym_pandoc_str_token1] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2269), - [sym__whitespace] = ACTIONS(2269), - [sym__line_ending] = ACTIONS(2269), - [sym__soft_line_ending] = ACTIONS(2269), - [sym__block_close] = ACTIONS(2269), - [sym_block_continuation] = ACTIONS(2939), - [sym__block_quote_start] = ACTIONS(2269), - [sym_atx_h1_marker] = ACTIONS(2269), - [sym_atx_h2_marker] = ACTIONS(2269), - [sym_atx_h3_marker] = ACTIONS(2269), - [sym_atx_h4_marker] = ACTIONS(2269), - [sym_atx_h5_marker] = ACTIONS(2269), - [sym_atx_h6_marker] = ACTIONS(2269), - [sym__thematic_break] = ACTIONS(2269), - [sym__list_marker_minus] = ACTIONS(2269), - [sym__list_marker_plus] = ACTIONS(2269), - [sym__list_marker_star] = ACTIONS(2269), - [sym__list_marker_parenthesis] = ACTIONS(2269), - [sym__list_marker_dot] = ACTIONS(2269), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_example] = ACTIONS(2269), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2269), - [sym__fenced_code_block_start_backtick] = ACTIONS(2269), - [sym_minus_metadata] = ACTIONS(2269), - [sym__pipe_table_start] = ACTIONS(2269), - [sym__fenced_div_start] = ACTIONS(2269), - [sym_ref_id_specifier] = ACTIONS(2269), - [sym__code_span_start] = ACTIONS(2269), - [sym__html_comment] = ACTIONS(2269), - [sym__autolink] = ACTIONS(2269), - [sym__highlight_span_start] = ACTIONS(2269), - [sym__insert_span_start] = ACTIONS(2269), - [sym__delete_span_start] = ACTIONS(2269), - [sym__edit_comment_span_start] = ACTIONS(2269), - [sym__single_quote_span_open] = ACTIONS(2269), - [sym__double_quote_span_open] = ACTIONS(2269), - [sym__shortcode_open_escaped] = ACTIONS(2269), - [sym__shortcode_open] = ACTIONS(2269), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2269), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2269), - [sym__cite_author_in_text] = ACTIONS(2269), - [sym__cite_suppress_author] = ACTIONS(2269), - [sym__strikeout_open] = ACTIONS(2269), - [sym__subscript_open] = ACTIONS(2269), - [sym__superscript_open] = ACTIONS(2269), - [sym__inline_note_start_token] = ACTIONS(2269), - [sym__strong_emphasis_open_star] = ACTIONS(2269), - [sym__strong_emphasis_open_underscore] = ACTIONS(2269), - [sym__emphasis_open_star] = ACTIONS(2269), - [sym__emphasis_open_underscore] = ACTIONS(2269), - [sym_inline_note_reference] = ACTIONS(2269), - [sym_html_element] = ACTIONS(2269), - [sym__pandoc_line_break] = ACTIONS(2269), - }, - [STATE(332)] = { - [anon_sym_COLON] = ACTIONS(2275), - [sym_entity_reference] = ACTIONS(2275), - [sym_numeric_character_reference] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [aux_sym_pandoc_str_token1] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2275), - [sym__whitespace] = ACTIONS(2275), - [sym__line_ending] = ACTIONS(2275), - [sym__soft_line_ending] = ACTIONS(2275), - [sym__block_close] = ACTIONS(2275), - [sym_block_continuation] = ACTIONS(2941), - [sym__block_quote_start] = ACTIONS(2275), - [sym_atx_h1_marker] = ACTIONS(2275), - [sym_atx_h2_marker] = ACTIONS(2275), - [sym_atx_h3_marker] = ACTIONS(2275), - [sym_atx_h4_marker] = ACTIONS(2275), - [sym_atx_h5_marker] = ACTIONS(2275), - [sym_atx_h6_marker] = ACTIONS(2275), - [sym__thematic_break] = ACTIONS(2275), - [sym__list_marker_minus] = ACTIONS(2275), - [sym__list_marker_plus] = ACTIONS(2275), - [sym__list_marker_star] = ACTIONS(2275), - [sym__list_marker_parenthesis] = ACTIONS(2275), - [sym__list_marker_dot] = ACTIONS(2275), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_example] = ACTIONS(2275), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2275), - [sym__fenced_code_block_start_backtick] = ACTIONS(2275), - [sym_minus_metadata] = ACTIONS(2275), - [sym__pipe_table_start] = ACTIONS(2275), - [sym__fenced_div_start] = ACTIONS(2275), - [sym_ref_id_specifier] = ACTIONS(2275), - [sym__code_span_start] = ACTIONS(2275), - [sym__html_comment] = ACTIONS(2275), - [sym__autolink] = ACTIONS(2275), - [sym__highlight_span_start] = ACTIONS(2275), - [sym__insert_span_start] = ACTIONS(2275), - [sym__delete_span_start] = ACTIONS(2275), - [sym__edit_comment_span_start] = ACTIONS(2275), - [sym__single_quote_span_open] = ACTIONS(2275), - [sym__double_quote_span_open] = ACTIONS(2275), - [sym__shortcode_open_escaped] = ACTIONS(2275), - [sym__shortcode_open] = ACTIONS(2275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2275), - [sym__cite_author_in_text] = ACTIONS(2275), - [sym__cite_suppress_author] = ACTIONS(2275), - [sym__strikeout_open] = ACTIONS(2275), - [sym__subscript_open] = ACTIONS(2275), - [sym__superscript_open] = ACTIONS(2275), - [sym__inline_note_start_token] = ACTIONS(2275), - [sym__strong_emphasis_open_star] = ACTIONS(2275), - [sym__strong_emphasis_open_underscore] = ACTIONS(2275), - [sym__emphasis_open_star] = ACTIONS(2275), - [sym__emphasis_open_underscore] = ACTIONS(2275), - [sym_inline_note_reference] = ACTIONS(2275), - [sym_html_element] = ACTIONS(2275), - [sym__pandoc_line_break] = ACTIONS(2275), - }, - [STATE(333)] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2347), - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), + [sym__inlines] = STATE(3311), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1102), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(620), + [sym__inline_whitespace] = STATE(620), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2779), [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(2943), - [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_line_break] = ACTIONS(2347), - }, - [STATE(334)] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), + [aux_sym_target_token1] = ACTIONS(2781), + [anon_sym_DOLLAR] = ACTIONS(2351), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym_block_continuation] = ACTIONS(2945), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), - }, - [STATE(335)] = { - [anon_sym_COLON] = ACTIONS(2299), - [sym_entity_reference] = ACTIONS(2299), - [sym_numeric_character_reference] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_BANG_LBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [aux_sym_pandoc_str_token1] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2299), - [sym__whitespace] = ACTIONS(2299), - [sym__line_ending] = ACTIONS(2299), - [sym__soft_line_ending] = ACTIONS(2299), - [sym__block_close] = ACTIONS(2299), - [sym__block_quote_start] = ACTIONS(2299), - [sym_atx_h1_marker] = ACTIONS(2299), - [sym_atx_h2_marker] = ACTIONS(2299), - [sym_atx_h3_marker] = ACTIONS(2299), - [sym_atx_h4_marker] = ACTIONS(2299), - [sym_atx_h5_marker] = ACTIONS(2299), - [sym_atx_h6_marker] = ACTIONS(2299), - [sym__thematic_break] = ACTIONS(2299), - [sym__list_marker_minus] = ACTIONS(2299), - [sym__list_marker_plus] = ACTIONS(2299), - [sym__list_marker_star] = ACTIONS(2299), - [sym__list_marker_parenthesis] = ACTIONS(2299), - [sym__list_marker_dot] = ACTIONS(2299), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_example] = ACTIONS(2299), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), - [sym__fenced_code_block_start_backtick] = ACTIONS(2299), - [sym_minus_metadata] = ACTIONS(2299), - [sym__pipe_table_start] = ACTIONS(2299), - [sym__fenced_div_start] = ACTIONS(2299), - [sym__fenced_div_end] = ACTIONS(2299), - [sym_ref_id_specifier] = ACTIONS(2299), - [sym__code_span_start] = ACTIONS(2299), - [sym__html_comment] = ACTIONS(2299), - [sym__autolink] = ACTIONS(2299), - [sym__highlight_span_start] = ACTIONS(2299), - [sym__insert_span_start] = ACTIONS(2299), - [sym__delete_span_start] = ACTIONS(2299), - [sym__edit_comment_span_start] = ACTIONS(2299), - [sym__single_quote_span_open] = ACTIONS(2299), - [sym__double_quote_span_open] = ACTIONS(2299), - [sym__shortcode_open_escaped] = ACTIONS(2299), - [sym__shortcode_open] = ACTIONS(2299), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), - [sym__cite_author_in_text] = ACTIONS(2299), - [sym__cite_suppress_author] = ACTIONS(2299), - [sym__strikeout_open] = ACTIONS(2299), - [sym__subscript_open] = ACTIONS(2299), - [sym__superscript_open] = ACTIONS(2299), - [sym__inline_note_start_token] = ACTIONS(2299), - [sym__strong_emphasis_open_star] = ACTIONS(2299), - [sym__strong_emphasis_open_underscore] = ACTIONS(2299), - [sym__emphasis_open_star] = ACTIONS(2299), - [sym__emphasis_open_underscore] = ACTIONS(2299), - [sym_inline_note_reference] = ACTIONS(2299), - [sym_html_element] = ACTIONS(2299), - [sym__pandoc_line_break] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(336)] = { - [anon_sym_COLON] = 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_close] = ACTIONS(2399), - [sym_block_continuation] = ACTIONS(2947), - [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), + [STATE(323)] = { + [sym__inlines] = STATE(3073), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1103), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(621), + [sym__inline_whitespace] = STATE(621), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2785), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2781), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2787), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), [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_line_break] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(337)] = { - [anon_sym_COLON] = ACTIONS(2305), - [sym_entity_reference] = ACTIONS(2305), - [sym_numeric_character_reference] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_BANG_LBRACK] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [aux_sym_pandoc_str_token1] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2305), - [sym__whitespace] = ACTIONS(2305), - [sym__line_ending] = ACTIONS(2305), - [sym__soft_line_ending] = ACTIONS(2305), - [sym__block_close] = ACTIONS(2305), - [sym__block_quote_start] = ACTIONS(2305), - [sym_atx_h1_marker] = ACTIONS(2305), - [sym_atx_h2_marker] = ACTIONS(2305), - [sym_atx_h3_marker] = ACTIONS(2305), - [sym_atx_h4_marker] = ACTIONS(2305), - [sym_atx_h5_marker] = ACTIONS(2305), - [sym_atx_h6_marker] = ACTIONS(2305), - [sym__thematic_break] = ACTIONS(2305), - [sym__list_marker_minus] = ACTIONS(2305), - [sym__list_marker_plus] = ACTIONS(2305), - [sym__list_marker_star] = ACTIONS(2305), - [sym__list_marker_parenthesis] = ACTIONS(2305), - [sym__list_marker_dot] = ACTIONS(2305), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_example] = ACTIONS(2305), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), - [sym__fenced_code_block_start_backtick] = ACTIONS(2305), - [sym_minus_metadata] = ACTIONS(2305), - [sym__pipe_table_start] = ACTIONS(2305), - [sym__fenced_div_start] = ACTIONS(2305), - [sym__fenced_div_end] = ACTIONS(2305), - [sym_ref_id_specifier] = ACTIONS(2305), - [sym__code_span_start] = ACTIONS(2305), - [sym__html_comment] = ACTIONS(2305), - [sym__autolink] = ACTIONS(2305), - [sym__highlight_span_start] = ACTIONS(2305), - [sym__insert_span_start] = ACTIONS(2305), - [sym__delete_span_start] = ACTIONS(2305), - [sym__edit_comment_span_start] = ACTIONS(2305), - [sym__single_quote_span_open] = ACTIONS(2305), - [sym__double_quote_span_open] = ACTIONS(2305), - [sym__shortcode_open_escaped] = ACTIONS(2305), - [sym__shortcode_open] = ACTIONS(2305), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), - [sym__cite_author_in_text] = ACTIONS(2305), - [sym__cite_suppress_author] = ACTIONS(2305), - [sym__strikeout_open] = ACTIONS(2305), - [sym__subscript_open] = ACTIONS(2305), - [sym__superscript_open] = ACTIONS(2305), - [sym__inline_note_start_token] = ACTIONS(2305), - [sym__strong_emphasis_open_star] = ACTIONS(2305), - [sym__strong_emphasis_open_underscore] = ACTIONS(2305), - [sym__emphasis_open_star] = ACTIONS(2305), - [sym__emphasis_open_underscore] = ACTIONS(2305), - [sym_inline_note_reference] = ACTIONS(2305), - [sym_html_element] = ACTIONS(2305), - [sym__pandoc_line_break] = ACTIONS(2305), + [STATE(324)] = { + [anon_sym_COLON] = ACTIONS(2789), + [sym_entity_reference] = ACTIONS(2789), + [sym_numeric_character_reference] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_BANG_LBRACK] = ACTIONS(2789), + [anon_sym_DOLLAR] = ACTIONS(2791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [aux_sym_pandoc_str_token1] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2789), + [sym__whitespace] = ACTIONS(2789), + [sym__line_ending] = ACTIONS(2789), + [sym__soft_line_ending] = ACTIONS(2789), + [sym__block_close] = ACTIONS(2789), + [sym__block_quote_start] = ACTIONS(2789), + [sym_atx_h1_marker] = ACTIONS(2789), + [sym_atx_h2_marker] = ACTIONS(2789), + [sym_atx_h3_marker] = ACTIONS(2789), + [sym_atx_h4_marker] = ACTIONS(2789), + [sym_atx_h5_marker] = ACTIONS(2789), + [sym_atx_h6_marker] = ACTIONS(2789), + [sym__thematic_break] = ACTIONS(2789), + [sym__list_marker_minus] = ACTIONS(2789), + [sym__list_marker_plus] = ACTIONS(2789), + [sym__list_marker_star] = ACTIONS(2789), + [sym__list_marker_parenthesis] = ACTIONS(2789), + [sym__list_marker_dot] = ACTIONS(2789), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_example] = ACTIONS(2789), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2789), + [sym__fenced_code_block_start_backtick] = ACTIONS(2789), + [sym_minus_metadata] = ACTIONS(2789), + [sym__pipe_table_start] = ACTIONS(2789), + [sym__fenced_div_start] = ACTIONS(2789), + [sym__fenced_div_end] = ACTIONS(2789), + [sym_ref_id_specifier] = ACTIONS(2789), + [sym__code_span_start] = ACTIONS(2789), + [sym__html_comment] = ACTIONS(2789), + [sym__autolink] = ACTIONS(2789), + [sym__highlight_span_start] = ACTIONS(2789), + [sym__insert_span_start] = ACTIONS(2789), + [sym__delete_span_start] = ACTIONS(2789), + [sym__edit_comment_span_start] = ACTIONS(2789), + [sym__single_quote_span_open] = ACTIONS(2789), + [sym__double_quote_span_open] = ACTIONS(2789), + [sym__shortcode_open_escaped] = ACTIONS(2789), + [sym__shortcode_open] = ACTIONS(2789), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2789), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2789), + [sym__cite_author_in_text] = ACTIONS(2789), + [sym__cite_suppress_author] = ACTIONS(2789), + [sym__strikeout_open] = ACTIONS(2789), + [sym__subscript_open] = ACTIONS(2789), + [sym__superscript_open] = ACTIONS(2789), + [sym__inline_note_start_token] = ACTIONS(2789), + [sym__strong_emphasis_open_star] = ACTIONS(2789), + [sym__strong_emphasis_open_underscore] = ACTIONS(2789), + [sym__emphasis_open_star] = ACTIONS(2789), + [sym__emphasis_open_underscore] = ACTIONS(2789), + [sym_inline_note_reference] = ACTIONS(2789), + [sym_html_element] = ACTIONS(2789), + [sym__pandoc_line_break] = ACTIONS(2789), + [sym_grid_table] = ACTIONS(2789), }, - [STATE(338)] = { - [anon_sym_COLON] = ACTIONS(2949), - [sym_entity_reference] = ACTIONS(2949), - [sym_numeric_character_reference] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_BANG_LBRACK] = ACTIONS(2949), - [anon_sym_DOLLAR] = ACTIONS(2951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [aux_sym_pandoc_str_token1] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2949), - [sym__whitespace] = ACTIONS(2949), - [sym__line_ending] = ACTIONS(2949), - [sym__soft_line_ending] = ACTIONS(2949), - [sym__block_close] = ACTIONS(2949), - [sym__block_quote_start] = ACTIONS(2949), - [sym_atx_h1_marker] = ACTIONS(2949), - [sym_atx_h2_marker] = ACTIONS(2949), - [sym_atx_h3_marker] = ACTIONS(2949), - [sym_atx_h4_marker] = ACTIONS(2949), - [sym_atx_h5_marker] = ACTIONS(2949), - [sym_atx_h6_marker] = ACTIONS(2949), - [sym__thematic_break] = ACTIONS(2949), - [sym__list_marker_minus] = ACTIONS(2949), - [sym__list_marker_plus] = ACTIONS(2949), - [sym__list_marker_star] = ACTIONS(2949), - [sym__list_marker_parenthesis] = ACTIONS(2949), - [sym__list_marker_dot] = ACTIONS(2949), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_example] = ACTIONS(2949), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2949), - [sym__fenced_code_block_start_backtick] = ACTIONS(2949), - [sym_minus_metadata] = ACTIONS(2949), - [sym__pipe_table_start] = ACTIONS(2949), - [sym__fenced_div_start] = ACTIONS(2949), - [sym__fenced_div_end] = ACTIONS(2949), - [sym_ref_id_specifier] = ACTIONS(2949), - [sym__code_span_start] = ACTIONS(2949), - [sym__html_comment] = ACTIONS(2949), - [sym__autolink] = ACTIONS(2949), - [sym__highlight_span_start] = ACTIONS(2949), - [sym__insert_span_start] = ACTIONS(2949), - [sym__delete_span_start] = ACTIONS(2949), - [sym__edit_comment_span_start] = ACTIONS(2949), - [sym__single_quote_span_open] = ACTIONS(2949), - [sym__double_quote_span_open] = ACTIONS(2949), - [sym__shortcode_open_escaped] = ACTIONS(2949), - [sym__shortcode_open] = ACTIONS(2949), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2949), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2949), - [sym__cite_author_in_text] = ACTIONS(2949), - [sym__cite_suppress_author] = ACTIONS(2949), - [sym__strikeout_open] = ACTIONS(2949), - [sym__subscript_open] = ACTIONS(2949), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2949), - [sym__strong_emphasis_open_star] = ACTIONS(2949), - [sym__strong_emphasis_open_underscore] = ACTIONS(2949), - [sym__emphasis_open_star] = ACTIONS(2949), - [sym__emphasis_open_underscore] = ACTIONS(2949), - [sym_inline_note_reference] = ACTIONS(2949), - [sym_html_element] = ACTIONS(2949), - [sym__pandoc_line_break] = ACTIONS(2949), + [STATE(325)] = { + [sym__inlines] = STATE(3078), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1129), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(626), + [sym__inline_whitespace] = STATE(626), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2793), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2795), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(339)] = { - [anon_sym_COLON] = ACTIONS(2311), - [sym_entity_reference] = ACTIONS(2311), - [sym_numeric_character_reference] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_BANG_LBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [aux_sym_pandoc_str_token1] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2311), - [sym__whitespace] = ACTIONS(2311), - [sym__line_ending] = ACTIONS(2311), - [sym__soft_line_ending] = ACTIONS(2311), - [sym__block_close] = ACTIONS(2311), - [sym__block_quote_start] = ACTIONS(2311), - [sym_atx_h1_marker] = ACTIONS(2311), - [sym_atx_h2_marker] = ACTIONS(2311), - [sym_atx_h3_marker] = ACTIONS(2311), - [sym_atx_h4_marker] = ACTIONS(2311), - [sym_atx_h5_marker] = ACTIONS(2311), - [sym_atx_h6_marker] = ACTIONS(2311), - [sym__thematic_break] = ACTIONS(2311), - [sym__list_marker_minus] = ACTIONS(2311), - [sym__list_marker_plus] = ACTIONS(2311), - [sym__list_marker_star] = ACTIONS(2311), - [sym__list_marker_parenthesis] = ACTIONS(2311), - [sym__list_marker_dot] = ACTIONS(2311), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2311), - [sym_minus_metadata] = ACTIONS(2311), - [sym__pipe_table_start] = ACTIONS(2311), - [sym__fenced_div_start] = ACTIONS(2311), - [sym__fenced_div_end] = ACTIONS(2311), - [sym_ref_id_specifier] = ACTIONS(2311), - [sym__code_span_start] = ACTIONS(2311), - [sym__html_comment] = ACTIONS(2311), - [sym__autolink] = ACTIONS(2311), - [sym__highlight_span_start] = ACTIONS(2311), - [sym__insert_span_start] = ACTIONS(2311), - [sym__delete_span_start] = ACTIONS(2311), - [sym__edit_comment_span_start] = ACTIONS(2311), - [sym__single_quote_span_open] = ACTIONS(2311), - [sym__double_quote_span_open] = ACTIONS(2311), - [sym__shortcode_open_escaped] = ACTIONS(2311), - [sym__shortcode_open] = ACTIONS(2311), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), - [sym__cite_author_in_text] = ACTIONS(2311), - [sym__cite_suppress_author] = ACTIONS(2311), - [sym__strikeout_open] = ACTIONS(2311), - [sym__subscript_open] = ACTIONS(2311), - [sym__superscript_open] = ACTIONS(2311), - [sym__inline_note_start_token] = ACTIONS(2311), - [sym__strong_emphasis_open_star] = ACTIONS(2311), - [sym__strong_emphasis_open_underscore] = ACTIONS(2311), - [sym__emphasis_open_star] = ACTIONS(2311), - [sym__emphasis_open_underscore] = ACTIONS(2311), - [sym_inline_note_reference] = ACTIONS(2311), - [sym_html_element] = ACTIONS(2311), - [sym__pandoc_line_break] = ACTIONS(2311), + [STATE(326)] = { + [sym__inlines] = STATE(3214), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1154), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(632), + [sym__inline_whitespace] = STATE(632), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2797), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2799), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2801), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(340)] = { - [sym_pipe_table_cell] = STATE(2777), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2737), - [sym__line_ending] = ACTIONS(2739), - [sym__eof] = ACTIONS(2739), - [sym__pipe_table_line_ending] = ACTIONS(2739), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pipe_table_delimiter] = ACTIONS(2953), - [sym__pandoc_line_break] = ACTIONS(2049), + [STATE(327)] = { + [sym__inlines] = STATE(3219), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1155), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(633), + [sym__inline_whitespace] = STATE(633), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2803), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2799), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2805), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), }, - [STATE(341)] = { + [STATE(328)] = { + [sym__inlines] = STATE(3284), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(993), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(635), + [sym__inline_whitespace] = STATE(635), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2807), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2811), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(329)] = { + [sym__inlines] = STATE(3285), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(994), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(636), + [sym__inline_whitespace] = STATE(636), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2813), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2815), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(330)] = { + [sym__inlines] = STATE(3308), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1854), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(639), + [sym__inline_whitespace] = STATE(639), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2817), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2821), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(331)] = { + [sym__inlines] = STATE(3309), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1855), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(640), + [sym__inline_whitespace] = STATE(640), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2823), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2825), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(332)] = { + [sym__inlines] = STATE(3064), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(956), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(642), + [sym__inline_whitespace] = STATE(642), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2827), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2829), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2831), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(333)] = { + [sym__inlines] = STATE(3066), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(957), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(643), + [sym__inline_whitespace] = STATE(643), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2833), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2829), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2835), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(334)] = { + [anon_sym_COLON] = ACTIONS(2837), + [sym_entity_reference] = ACTIONS(2837), + [sym_numeric_character_reference] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_BANG_LBRACK] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [aux_sym_pandoc_str_token1] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2837), + [sym__whitespace] = ACTIONS(2837), + [sym__line_ending] = ACTIONS(2837), + [sym__soft_line_ending] = ACTIONS(2837), + [sym__block_close] = ACTIONS(2837), + [sym__block_quote_start] = ACTIONS(2837), + [sym_atx_h1_marker] = ACTIONS(2837), + [sym_atx_h2_marker] = ACTIONS(2837), + [sym_atx_h3_marker] = ACTIONS(2837), + [sym_atx_h4_marker] = ACTIONS(2837), + [sym_atx_h5_marker] = ACTIONS(2837), + [sym_atx_h6_marker] = ACTIONS(2837), + [sym__thematic_break] = ACTIONS(2837), + [sym__list_marker_minus] = ACTIONS(2837), + [sym__list_marker_plus] = ACTIONS(2837), + [sym__list_marker_star] = ACTIONS(2837), + [sym__list_marker_parenthesis] = ACTIONS(2837), + [sym__list_marker_dot] = ACTIONS(2837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_example] = ACTIONS(2837), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2837), + [sym__fenced_code_block_start_backtick] = ACTIONS(2837), + [sym_minus_metadata] = ACTIONS(2837), + [sym__pipe_table_start] = ACTIONS(2837), + [sym__fenced_div_start] = ACTIONS(2837), + [sym__fenced_div_end] = ACTIONS(2837), + [sym_ref_id_specifier] = ACTIONS(2837), + [sym__code_span_start] = ACTIONS(2837), + [sym__html_comment] = ACTIONS(2837), + [sym__autolink] = ACTIONS(2837), + [sym__highlight_span_start] = ACTIONS(2837), + [sym__insert_span_start] = ACTIONS(2837), + [sym__delete_span_start] = ACTIONS(2837), + [sym__edit_comment_span_start] = ACTIONS(2837), + [sym__single_quote_span_open] = ACTIONS(2837), + [sym__double_quote_span_open] = ACTIONS(2837), + [sym__shortcode_open_escaped] = ACTIONS(2837), + [sym__shortcode_open] = ACTIONS(2837), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2837), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2837), + [sym__cite_author_in_text] = ACTIONS(2837), + [sym__cite_suppress_author] = ACTIONS(2837), + [sym__strikeout_open] = ACTIONS(2837), + [sym__subscript_open] = ACTIONS(2837), + [sym__superscript_open] = ACTIONS(2837), + [sym__inline_note_start_token] = ACTIONS(2837), + [sym__strong_emphasis_open_star] = ACTIONS(2837), + [sym__strong_emphasis_open_underscore] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2837), + [sym__emphasis_open_underscore] = ACTIONS(2837), + [sym_inline_note_reference] = ACTIONS(2837), + [sym_html_element] = ACTIONS(2837), + [sym__pandoc_line_break] = ACTIONS(2837), + [sym_grid_table] = ACTIONS(2837), + }, + [STATE(335)] = { + [anon_sym_COLON] = ACTIONS(2841), + [sym_entity_reference] = ACTIONS(2841), + [sym_numeric_character_reference] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [aux_sym_pandoc_str_token1] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2841), + [sym__whitespace] = ACTIONS(2841), + [sym__line_ending] = ACTIONS(2841), + [sym__soft_line_ending] = ACTIONS(2841), + [sym__block_close] = ACTIONS(2841), + [sym__block_quote_start] = ACTIONS(2841), + [sym_atx_h1_marker] = ACTIONS(2841), + [sym_atx_h2_marker] = ACTIONS(2841), + [sym_atx_h3_marker] = ACTIONS(2841), + [sym_atx_h4_marker] = ACTIONS(2841), + [sym_atx_h5_marker] = ACTIONS(2841), + [sym_atx_h6_marker] = ACTIONS(2841), + [sym__thematic_break] = ACTIONS(2841), + [sym__list_marker_minus] = ACTIONS(2841), + [sym__list_marker_plus] = ACTIONS(2841), + [sym__list_marker_star] = ACTIONS(2841), + [sym__list_marker_parenthesis] = ACTIONS(2841), + [sym__list_marker_dot] = ACTIONS(2841), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_example] = ACTIONS(2841), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2841), + [sym__fenced_code_block_start_backtick] = ACTIONS(2841), + [sym_minus_metadata] = ACTIONS(2841), + [sym__pipe_table_start] = ACTIONS(2841), + [sym__fenced_div_start] = ACTIONS(2841), + [sym__fenced_div_end] = ACTIONS(2841), + [sym_ref_id_specifier] = ACTIONS(2841), + [sym__code_span_start] = ACTIONS(2841), + [sym__html_comment] = ACTIONS(2841), + [sym__autolink] = ACTIONS(2841), + [sym__highlight_span_start] = ACTIONS(2841), + [sym__insert_span_start] = ACTIONS(2841), + [sym__delete_span_start] = ACTIONS(2841), + [sym__edit_comment_span_start] = ACTIONS(2841), + [sym__single_quote_span_open] = ACTIONS(2841), + [sym__double_quote_span_open] = ACTIONS(2841), + [sym__shortcode_open_escaped] = ACTIONS(2841), + [sym__shortcode_open] = ACTIONS(2841), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2841), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2841), + [sym__cite_author_in_text] = ACTIONS(2841), + [sym__cite_suppress_author] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(2841), + [sym__subscript_open] = ACTIONS(2841), + [sym__superscript_open] = ACTIONS(2841), + [sym__inline_note_start_token] = ACTIONS(2841), + [sym__strong_emphasis_open_star] = ACTIONS(2841), + [sym__strong_emphasis_open_underscore] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2841), + [sym__emphasis_open_underscore] = ACTIONS(2841), + [sym_inline_note_reference] = ACTIONS(2841), + [sym_html_element] = ACTIONS(2841), + [sym__pandoc_line_break] = ACTIONS(2841), + [sym_grid_table] = ACTIONS(2841), + }, + [STATE(336)] = { + [anon_sym_COLON] = ACTIONS(2845), + [sym_entity_reference] = ACTIONS(2845), + [sym_numeric_character_reference] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2845), + [anon_sym_DOLLAR] = ACTIONS(2847), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_pandoc_str_token1] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(2845), + [sym__line_ending] = ACTIONS(2845), + [sym__soft_line_ending] = ACTIONS(2845), + [sym__block_close] = ACTIONS(2845), + [sym__block_quote_start] = ACTIONS(2845), + [sym_atx_h1_marker] = ACTIONS(2845), + [sym_atx_h2_marker] = ACTIONS(2845), + [sym_atx_h3_marker] = ACTIONS(2845), + [sym_atx_h4_marker] = ACTIONS(2845), + [sym_atx_h5_marker] = ACTIONS(2845), + [sym_atx_h6_marker] = ACTIONS(2845), + [sym__thematic_break] = ACTIONS(2845), + [sym__list_marker_minus] = ACTIONS(2845), + [sym__list_marker_plus] = ACTIONS(2845), + [sym__list_marker_star] = ACTIONS(2845), + [sym__list_marker_parenthesis] = ACTIONS(2845), + [sym__list_marker_dot] = ACTIONS(2845), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_example] = ACTIONS(2845), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2845), + [sym__fenced_code_block_start_backtick] = ACTIONS(2845), + [sym_minus_metadata] = ACTIONS(2845), + [sym__pipe_table_start] = ACTIONS(2845), + [sym__fenced_div_start] = ACTIONS(2845), + [sym__fenced_div_end] = ACTIONS(2845), + [sym_ref_id_specifier] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2845), + [sym__html_comment] = ACTIONS(2845), + [sym__autolink] = ACTIONS(2845), + [sym__highlight_span_start] = ACTIONS(2845), + [sym__insert_span_start] = ACTIONS(2845), + [sym__delete_span_start] = ACTIONS(2845), + [sym__edit_comment_span_start] = ACTIONS(2845), + [sym__single_quote_span_open] = ACTIONS(2845), + [sym__double_quote_span_open] = ACTIONS(2845), + [sym__shortcode_open_escaped] = ACTIONS(2845), + [sym__shortcode_open] = ACTIONS(2845), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2845), + [sym__cite_author_in_text] = ACTIONS(2845), + [sym__cite_suppress_author] = ACTIONS(2845), + [sym__strikeout_open] = ACTIONS(2845), + [sym__subscript_open] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(2845), + [sym__inline_note_start_token] = ACTIONS(2845), + [sym__strong_emphasis_open_star] = ACTIONS(2845), + [sym__strong_emphasis_open_underscore] = ACTIONS(2845), + [sym__emphasis_open_star] = ACTIONS(2845), + [sym__emphasis_open_underscore] = ACTIONS(2845), + [sym_inline_note_reference] = ACTIONS(2845), + [sym_html_element] = ACTIONS(2845), + [sym__pandoc_line_break] = ACTIONS(2845), + [sym_grid_table] = ACTIONS(2845), + }, + [STATE(337)] = { + [anon_sym_COLON] = ACTIONS(2849), + [sym_entity_reference] = ACTIONS(2849), + [sym_numeric_character_reference] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_BANG_LBRACK] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2851), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_pandoc_str_token1] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2849), + [sym__whitespace] = ACTIONS(2849), + [sym__line_ending] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2849), + [sym__block_close] = ACTIONS(2849), + [sym__block_quote_start] = ACTIONS(2849), + [sym_atx_h1_marker] = ACTIONS(2849), + [sym_atx_h2_marker] = ACTIONS(2849), + [sym_atx_h3_marker] = ACTIONS(2849), + [sym_atx_h4_marker] = ACTIONS(2849), + [sym_atx_h5_marker] = ACTIONS(2849), + [sym_atx_h6_marker] = ACTIONS(2849), + [sym__thematic_break] = ACTIONS(2849), + [sym__list_marker_minus] = ACTIONS(2849), + [sym__list_marker_plus] = ACTIONS(2849), + [sym__list_marker_star] = ACTIONS(2849), + [sym__list_marker_parenthesis] = ACTIONS(2849), + [sym__list_marker_dot] = ACTIONS(2849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_example] = ACTIONS(2849), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), + [sym__fenced_code_block_start_backtick] = ACTIONS(2849), + [sym_minus_metadata] = ACTIONS(2849), + [sym__pipe_table_start] = ACTIONS(2849), + [sym__fenced_div_start] = ACTIONS(2849), + [sym__fenced_div_end] = ACTIONS(2849), + [sym_ref_id_specifier] = ACTIONS(2849), + [sym__code_span_start] = ACTIONS(2849), + [sym__html_comment] = ACTIONS(2849), + [sym__autolink] = ACTIONS(2849), + [sym__highlight_span_start] = ACTIONS(2849), + [sym__insert_span_start] = ACTIONS(2849), + [sym__delete_span_start] = ACTIONS(2849), + [sym__edit_comment_span_start] = ACTIONS(2849), + [sym__single_quote_span_open] = ACTIONS(2849), + [sym__double_quote_span_open] = ACTIONS(2849), + [sym__shortcode_open_escaped] = ACTIONS(2849), + [sym__shortcode_open] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), + [sym__cite_author_in_text] = ACTIONS(2849), + [sym__cite_suppress_author] = ACTIONS(2849), + [sym__strikeout_open] = ACTIONS(2849), + [sym__subscript_open] = ACTIONS(2849), + [sym__superscript_open] = ACTIONS(2849), + [sym__inline_note_start_token] = ACTIONS(2849), + [sym__strong_emphasis_open_star] = ACTIONS(2849), + [sym__strong_emphasis_open_underscore] = ACTIONS(2849), + [sym__emphasis_open_star] = ACTIONS(2849), + [sym__emphasis_open_underscore] = ACTIONS(2849), + [sym_inline_note_reference] = ACTIONS(2849), + [sym_html_element] = ACTIONS(2849), + [sym__pandoc_line_break] = ACTIONS(2849), + [sym_grid_table] = ACTIONS(2849), + }, + [STATE(338)] = { + [ts_builtin_sym_end] = ACTIONS(2317), [anon_sym_COLON] = ACTIONS(2317), [sym_entity_reference] = ACTIONS(2317), [sym_numeric_character_reference] = ACTIONS(2317), @@ -54147,7 +54250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2317), [sym__line_ending] = ACTIONS(2317), [sym__soft_line_ending] = ACTIONS(2317), - [sym__block_close] = ACTIONS(2317), + [sym_block_continuation] = ACTIONS(2853), [sym__block_quote_start] = ACTIONS(2317), [sym_atx_h1_marker] = ACTIONS(2317), [sym_atx_h2_marker] = ACTIONS(2317), @@ -54172,7 +54275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minus_metadata] = ACTIONS(2317), [sym__pipe_table_start] = ACTIONS(2317), [sym__fenced_div_start] = ACTIONS(2317), - [sym__fenced_div_end] = ACTIONS(2317), [sym_ref_id_specifier] = ACTIONS(2317), [sym__code_span_start] = ACTIONS(2317), [sym__html_comment] = ACTIONS(2317), @@ -54200,144 +54302,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2317), [sym_html_element] = ACTIONS(2317), [sym__pandoc_line_break] = ACTIONS(2317), + [sym_grid_table] = ACTIONS(2317), }, - [STATE(342)] = { - [ts_builtin_sym_end] = ACTIONS(2383), - [anon_sym_COLON] = ACTIONS(2383), - [sym_entity_reference] = ACTIONS(2383), - [sym_numeric_character_reference] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_BANG_LBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [aux_sym_pandoc_str_token1] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2383), - [sym__whitespace] = ACTIONS(2383), - [sym__line_ending] = ACTIONS(2383), - [sym__soft_line_ending] = ACTIONS(2383), - [sym_block_continuation] = ACTIONS(2955), - [sym__block_quote_start] = ACTIONS(2383), - [sym_atx_h1_marker] = ACTIONS(2383), - [sym_atx_h2_marker] = ACTIONS(2383), - [sym_atx_h3_marker] = ACTIONS(2383), - [sym_atx_h4_marker] = ACTIONS(2383), - [sym_atx_h5_marker] = ACTIONS(2383), - [sym_atx_h6_marker] = ACTIONS(2383), - [sym__thematic_break] = ACTIONS(2383), - [sym__list_marker_minus] = ACTIONS(2383), - [sym__list_marker_plus] = ACTIONS(2383), - [sym__list_marker_star] = ACTIONS(2383), - [sym__list_marker_parenthesis] = ACTIONS(2383), - [sym__list_marker_dot] = ACTIONS(2383), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_example] = ACTIONS(2383), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), - [sym__fenced_code_block_start_backtick] = ACTIONS(2383), - [sym_minus_metadata] = ACTIONS(2383), - [sym__pipe_table_start] = ACTIONS(2383), - [sym__fenced_div_start] = ACTIONS(2383), - [sym_ref_id_specifier] = ACTIONS(2383), - [sym__code_span_start] = ACTIONS(2383), - [sym__html_comment] = ACTIONS(2383), - [sym__autolink] = ACTIONS(2383), - [sym__highlight_span_start] = ACTIONS(2383), - [sym__insert_span_start] = ACTIONS(2383), - [sym__delete_span_start] = ACTIONS(2383), - [sym__edit_comment_span_start] = ACTIONS(2383), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2383), - [sym__shortcode_open_escaped] = ACTIONS(2383), - [sym__shortcode_open] = ACTIONS(2383), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), - [sym__cite_author_in_text] = ACTIONS(2383), - [sym__cite_suppress_author] = ACTIONS(2383), - [sym__strikeout_open] = ACTIONS(2383), - [sym__subscript_open] = ACTIONS(2383), - [sym__superscript_open] = ACTIONS(2383), - [sym__inline_note_start_token] = ACTIONS(2383), - [sym__strong_emphasis_open_star] = ACTIONS(2383), - [sym__strong_emphasis_open_underscore] = ACTIONS(2383), - [sym__emphasis_open_star] = ACTIONS(2383), - [sym__emphasis_open_underscore] = ACTIONS(2383), - [sym_inline_note_reference] = ACTIONS(2383), - [sym_html_element] = ACTIONS(2383), - [sym__pandoc_line_break] = ACTIONS(2383), - }, - [STATE(343)] = { - [anon_sym_COLON] = ACTIONS(2957), - [sym_entity_reference] = ACTIONS(2957), - [sym_numeric_character_reference] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_BANG_LBRACK] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [aux_sym_pandoc_str_token1] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2957), - [sym__whitespace] = ACTIONS(2957), - [sym__line_ending] = ACTIONS(2957), - [sym__soft_line_ending] = ACTIONS(2957), - [sym__block_close] = ACTIONS(2957), - [sym__block_quote_start] = ACTIONS(2957), - [sym_atx_h1_marker] = ACTIONS(2957), - [sym_atx_h2_marker] = ACTIONS(2957), - [sym_atx_h3_marker] = ACTIONS(2957), - [sym_atx_h4_marker] = ACTIONS(2957), - [sym_atx_h5_marker] = ACTIONS(2957), - [sym_atx_h6_marker] = ACTIONS(2957), - [sym__thematic_break] = ACTIONS(2957), - [sym__list_marker_minus] = ACTIONS(2957), - [sym__list_marker_plus] = ACTIONS(2957), - [sym__list_marker_star] = ACTIONS(2957), - [sym__list_marker_parenthesis] = ACTIONS(2957), - [sym__list_marker_dot] = ACTIONS(2957), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_example] = ACTIONS(2957), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2957), - [sym__fenced_code_block_start_backtick] = ACTIONS(2957), - [sym_minus_metadata] = ACTIONS(2957), - [sym__pipe_table_start] = ACTIONS(2957), - [sym__fenced_div_start] = ACTIONS(2957), - [sym__fenced_div_end] = ACTIONS(2957), - [sym_ref_id_specifier] = ACTIONS(2957), - [sym__code_span_start] = ACTIONS(2957), - [sym__html_comment] = ACTIONS(2957), - [sym__autolink] = ACTIONS(2957), - [sym__highlight_span_start] = ACTIONS(2957), - [sym__insert_span_start] = ACTIONS(2957), - [sym__delete_span_start] = ACTIONS(2957), - [sym__edit_comment_span_start] = ACTIONS(2957), - [sym__single_quote_span_open] = ACTIONS(2957), - [sym__double_quote_span_open] = ACTIONS(2957), - [sym__shortcode_open_escaped] = ACTIONS(2957), - [sym__shortcode_open] = ACTIONS(2957), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2957), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2957), - [sym__cite_author_in_text] = ACTIONS(2957), - [sym__cite_suppress_author] = ACTIONS(2957), - [sym__strikeout_open] = ACTIONS(2957), - [sym__subscript_open] = ACTIONS(2957), - [sym__superscript_open] = ACTIONS(2957), - [sym__inline_note_start_token] = ACTIONS(2957), - [sym__strong_emphasis_open_star] = ACTIONS(2957), - [sym__strong_emphasis_open_underscore] = ACTIONS(2957), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2957), - [sym_inline_note_reference] = ACTIONS(2957), - [sym_html_element] = ACTIONS(2957), - [sym__pandoc_line_break] = ACTIONS(2957), - }, - [STATE(344)] = { + [STATE(339)] = { + [ts_builtin_sym_end] = ACTIONS(2323), [anon_sym_COLON] = ACTIONS(2323), [sym_entity_reference] = ACTIONS(2323), [sym_numeric_character_reference] = ACTIONS(2323), @@ -54351,7 +54319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2323), [sym__line_ending] = ACTIONS(2323), [sym__soft_line_ending] = ACTIONS(2323), - [sym__block_close] = ACTIONS(2323), + [sym_block_continuation] = ACTIONS(2855), [sym__block_quote_start] = ACTIONS(2323), [sym_atx_h1_marker] = ACTIONS(2323), [sym_atx_h2_marker] = ACTIONS(2323), @@ -54376,7 +54344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minus_metadata] = ACTIONS(2323), [sym__pipe_table_start] = ACTIONS(2323), [sym__fenced_div_start] = ACTIONS(2323), - [sym__fenced_div_end] = ACTIONS(2323), [sym_ref_id_specifier] = ACTIONS(2323), [sym__code_span_start] = ACTIONS(2323), [sym__html_comment] = ACTIONS(2323), @@ -54404,280 +54371,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2323), [sym_html_element] = ACTIONS(2323), [sym__pandoc_line_break] = ACTIONS(2323), + [sym_grid_table] = ACTIONS(2323), }, - [STATE(345)] = { - [anon_sym_COLON] = ACTIONS(2383), - [sym_entity_reference] = ACTIONS(2383), - [sym_numeric_character_reference] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_BANG_LBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [aux_sym_pandoc_str_token1] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2383), - [sym__whitespace] = ACTIONS(2383), - [sym__line_ending] = ACTIONS(2383), - [sym__soft_line_ending] = ACTIONS(2383), - [sym__block_close] = ACTIONS(2383), - [sym_block_continuation] = ACTIONS(2961), - [sym__block_quote_start] = ACTIONS(2383), - [sym_atx_h1_marker] = ACTIONS(2383), - [sym_atx_h2_marker] = ACTIONS(2383), - [sym_atx_h3_marker] = ACTIONS(2383), - [sym_atx_h4_marker] = ACTIONS(2383), - [sym_atx_h5_marker] = ACTIONS(2383), - [sym_atx_h6_marker] = ACTIONS(2383), - [sym__thematic_break] = ACTIONS(2383), - [sym__list_marker_minus] = ACTIONS(2383), - [sym__list_marker_plus] = ACTIONS(2383), - [sym__list_marker_star] = ACTIONS(2383), - [sym__list_marker_parenthesis] = ACTIONS(2383), - [sym__list_marker_dot] = ACTIONS(2383), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_example] = ACTIONS(2383), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), - [sym__fenced_code_block_start_backtick] = ACTIONS(2383), - [sym_minus_metadata] = ACTIONS(2383), - [sym__pipe_table_start] = ACTIONS(2383), - [sym__fenced_div_start] = ACTIONS(2383), - [sym_ref_id_specifier] = ACTIONS(2383), - [sym__code_span_start] = ACTIONS(2383), - [sym__html_comment] = ACTIONS(2383), - [sym__autolink] = ACTIONS(2383), - [sym__highlight_span_start] = ACTIONS(2383), - [sym__insert_span_start] = ACTIONS(2383), - [sym__delete_span_start] = ACTIONS(2383), - [sym__edit_comment_span_start] = ACTIONS(2383), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2383), - [sym__shortcode_open_escaped] = ACTIONS(2383), - [sym__shortcode_open] = ACTIONS(2383), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), - [sym__cite_author_in_text] = ACTIONS(2383), - [sym__cite_suppress_author] = ACTIONS(2383), - [sym__strikeout_open] = ACTIONS(2383), - [sym__subscript_open] = ACTIONS(2383), - [sym__superscript_open] = ACTIONS(2383), - [sym__inline_note_start_token] = ACTIONS(2383), - [sym__strong_emphasis_open_star] = ACTIONS(2383), - [sym__strong_emphasis_open_underscore] = ACTIONS(2383), - [sym__emphasis_open_star] = ACTIONS(2383), - [sym__emphasis_open_underscore] = ACTIONS(2383), - [sym_inline_note_reference] = ACTIONS(2383), - [sym_html_element] = ACTIONS(2383), - [sym__pandoc_line_break] = ACTIONS(2383), - }, - [STATE(346)] = { - [ts_builtin_sym_end] = ACTIONS(2257), - [anon_sym_COLON] = ACTIONS(2257), - [sym_entity_reference] = ACTIONS(2257), - [sym_numeric_character_reference] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_BANG_LBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [aux_sym_pandoc_str_token1] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2257), - [sym__whitespace] = ACTIONS(2257), - [sym__line_ending] = ACTIONS(2257), - [sym__soft_line_ending] = ACTIONS(2257), - [sym_block_continuation] = ACTIONS(2963), - [sym__block_quote_start] = ACTIONS(2257), - [sym_atx_h1_marker] = ACTIONS(2257), - [sym_atx_h2_marker] = ACTIONS(2257), - [sym_atx_h3_marker] = ACTIONS(2257), - [sym_atx_h4_marker] = ACTIONS(2257), - [sym_atx_h5_marker] = ACTIONS(2257), - [sym_atx_h6_marker] = ACTIONS(2257), - [sym__thematic_break] = ACTIONS(2257), - [sym__list_marker_minus] = ACTIONS(2257), - [sym__list_marker_plus] = ACTIONS(2257), - [sym__list_marker_star] = ACTIONS(2257), - [sym__list_marker_parenthesis] = ACTIONS(2257), - [sym__list_marker_dot] = ACTIONS(2257), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2257), - [sym__list_marker_example] = ACTIONS(2257), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2257), - [sym__fenced_code_block_start_backtick] = ACTIONS(2257), - [sym_minus_metadata] = ACTIONS(2257), - [sym__pipe_table_start] = ACTIONS(2257), - [sym__fenced_div_start] = ACTIONS(2257), - [sym_ref_id_specifier] = ACTIONS(2257), - [sym__code_span_start] = ACTIONS(2257), - [sym__html_comment] = ACTIONS(2257), - [sym__autolink] = ACTIONS(2257), - [sym__highlight_span_start] = ACTIONS(2257), - [sym__insert_span_start] = ACTIONS(2257), - [sym__delete_span_start] = ACTIONS(2257), - [sym__edit_comment_span_start] = ACTIONS(2257), - [sym__single_quote_span_open] = ACTIONS(2257), - [sym__double_quote_span_open] = ACTIONS(2257), - [sym__shortcode_open_escaped] = ACTIONS(2257), - [sym__shortcode_open] = ACTIONS(2257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2257), - [sym__cite_author_in_text] = ACTIONS(2257), - [sym__cite_suppress_author] = ACTIONS(2257), - [sym__strikeout_open] = ACTIONS(2257), - [sym__subscript_open] = ACTIONS(2257), - [sym__superscript_open] = ACTIONS(2257), - [sym__inline_note_start_token] = ACTIONS(2257), - [sym__strong_emphasis_open_star] = ACTIONS(2257), - [sym__strong_emphasis_open_underscore] = ACTIONS(2257), - [sym__emphasis_open_star] = ACTIONS(2257), - [sym__emphasis_open_underscore] = ACTIONS(2257), - [sym_inline_note_reference] = ACTIONS(2257), - [sym_html_element] = ACTIONS(2257), - [sym__pandoc_line_break] = ACTIONS(2257), - }, - [STATE(347)] = { - [sym_pipe_table_cell] = STATE(2775), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line_with_maybe_spaces] = STATE(2766), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [aux_sym_pipe_table_row_repeat1] = STATE(292), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(2049), - [sym_numeric_character_reference] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_BANG_LBRACK] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2059), - [aux_sym_pandoc_str_token1] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2063), - [sym__whitespace] = ACTIONS(2965), - [sym__line_ending] = ACTIONS(2967), - [sym__eof] = ACTIONS(2967), - [sym__pipe_table_line_ending] = ACTIONS(2967), - [sym__code_span_start] = ACTIONS(2069), - [sym__html_comment] = ACTIONS(2049), - [sym__autolink] = ACTIONS(2049), - [sym__highlight_span_start] = ACTIONS(2071), - [sym__insert_span_start] = ACTIONS(2073), - [sym__delete_span_start] = ACTIONS(2075), - [sym__edit_comment_span_start] = ACTIONS(2077), - [sym__single_quote_span_open] = ACTIONS(2079), - [sym__double_quote_span_open] = ACTIONS(2081), - [sym__shortcode_open_escaped] = ACTIONS(2083), - [sym__shortcode_open] = ACTIONS(2085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2089), - [sym__cite_author_in_text] = ACTIONS(2091), - [sym__cite_suppress_author] = ACTIONS(2093), - [sym__strikeout_open] = ACTIONS(2095), - [sym__subscript_open] = ACTIONS(2097), - [sym__superscript_open] = ACTIONS(2099), - [sym__inline_note_start_token] = ACTIONS(2101), - [sym__strong_emphasis_open_star] = ACTIONS(2103), - [sym__strong_emphasis_open_underscore] = ACTIONS(2105), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2109), - [sym_inline_note_reference] = ACTIONS(2049), - [sym_html_element] = ACTIONS(2049), - [sym__pandoc_line_break] = ACTIONS(2049), - }, - [STATE(348)] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [anon_sym_COLON] = ACTIONS(2263), - [sym_entity_reference] = ACTIONS(2263), - [sym_numeric_character_reference] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_BANG_LBRACK] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [aux_sym_pandoc_str_token1] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2263), - [sym__whitespace] = ACTIONS(2263), - [sym__line_ending] = ACTIONS(2263), - [sym__soft_line_ending] = ACTIONS(2263), - [sym_block_continuation] = ACTIONS(2969), - [sym__block_quote_start] = ACTIONS(2263), - [sym_atx_h1_marker] = ACTIONS(2263), - [sym_atx_h2_marker] = ACTIONS(2263), - [sym_atx_h3_marker] = ACTIONS(2263), - [sym_atx_h4_marker] = ACTIONS(2263), - [sym_atx_h5_marker] = ACTIONS(2263), - [sym_atx_h6_marker] = ACTIONS(2263), - [sym__thematic_break] = ACTIONS(2263), - [sym__list_marker_minus] = ACTIONS(2263), - [sym__list_marker_plus] = ACTIONS(2263), - [sym__list_marker_star] = ACTIONS(2263), - [sym__list_marker_parenthesis] = ACTIONS(2263), - [sym__list_marker_dot] = ACTIONS(2263), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2263), - [sym__list_marker_example] = ACTIONS(2263), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2263), - [sym__fenced_code_block_start_backtick] = ACTIONS(2263), - [sym_minus_metadata] = ACTIONS(2263), - [sym__pipe_table_start] = ACTIONS(2263), - [sym__fenced_div_start] = ACTIONS(2263), - [sym_ref_id_specifier] = ACTIONS(2263), - [sym__code_span_start] = ACTIONS(2263), - [sym__html_comment] = ACTIONS(2263), - [sym__autolink] = ACTIONS(2263), - [sym__highlight_span_start] = ACTIONS(2263), - [sym__insert_span_start] = ACTIONS(2263), - [sym__delete_span_start] = ACTIONS(2263), - [sym__edit_comment_span_start] = ACTIONS(2263), - [sym__single_quote_span_open] = ACTIONS(2263), - [sym__double_quote_span_open] = ACTIONS(2263), - [sym__shortcode_open_escaped] = ACTIONS(2263), - [sym__shortcode_open] = ACTIONS(2263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2263), - [sym__cite_author_in_text] = ACTIONS(2263), - [sym__cite_suppress_author] = ACTIONS(2263), - [sym__strikeout_open] = ACTIONS(2263), - [sym__subscript_open] = ACTIONS(2263), - [sym__superscript_open] = ACTIONS(2263), - [sym__inline_note_start_token] = ACTIONS(2263), - [sym__strong_emphasis_open_star] = ACTIONS(2263), - [sym__strong_emphasis_open_underscore] = ACTIONS(2263), - [sym__emphasis_open_star] = ACTIONS(2263), - [sym__emphasis_open_underscore] = ACTIONS(2263), - [sym_inline_note_reference] = ACTIONS(2263), - [sym_html_element] = ACTIONS(2263), - [sym__pandoc_line_break] = ACTIONS(2263), - }, - [STATE(349)] = { + [STATE(340)] = { + [ts_builtin_sym_end] = ACTIONS(2329), [anon_sym_COLON] = ACTIONS(2329), [sym_entity_reference] = ACTIONS(2329), [sym_numeric_character_reference] = ACTIONS(2329), @@ -54691,7 +54388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2329), [sym__line_ending] = ACTIONS(2329), [sym__soft_line_ending] = ACTIONS(2329), - [sym__block_close] = ACTIONS(2329), + [sym_block_continuation] = ACTIONS(2857), [sym__block_quote_start] = ACTIONS(2329), [sym_atx_h1_marker] = ACTIONS(2329), [sym_atx_h2_marker] = ACTIONS(2329), @@ -54716,7 +54413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -54744,1088 +54440,4095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2329), [sym_html_element] = ACTIONS(2329), [sym__pandoc_line_break] = ACTIONS(2329), + [sym_grid_table] = ACTIONS(2329), + }, + [STATE(341)] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [anon_sym_COLON] = ACTIONS(2183), + [sym_entity_reference] = ACTIONS(2183), + [sym_numeric_character_reference] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_BANG_LBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [aux_sym_pandoc_str_token1] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2183), + [sym__whitespace] = ACTIONS(2183), + [sym__line_ending] = ACTIONS(2183), + [sym__soft_line_ending] = ACTIONS(2183), + [sym_block_continuation] = ACTIONS(2859), + [sym__block_quote_start] = ACTIONS(2183), + [sym_atx_h1_marker] = ACTIONS(2183), + [sym_atx_h2_marker] = ACTIONS(2183), + [sym_atx_h3_marker] = ACTIONS(2183), + [sym_atx_h4_marker] = ACTIONS(2183), + [sym_atx_h5_marker] = ACTIONS(2183), + [sym_atx_h6_marker] = ACTIONS(2183), + [sym__thematic_break] = ACTIONS(2183), + [sym__list_marker_minus] = ACTIONS(2183), + [sym__list_marker_plus] = ACTIONS(2183), + [sym__list_marker_star] = ACTIONS(2183), + [sym__list_marker_parenthesis] = ACTIONS(2183), + [sym__list_marker_dot] = ACTIONS(2183), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_example] = ACTIONS(2183), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2183), + [sym__fenced_code_block_start_backtick] = ACTIONS(2183), + [sym_minus_metadata] = ACTIONS(2183), + [sym__pipe_table_start] = ACTIONS(2183), + [sym__fenced_div_start] = ACTIONS(2183), + [sym_ref_id_specifier] = ACTIONS(2183), + [sym__code_span_start] = ACTIONS(2183), + [sym__html_comment] = ACTIONS(2183), + [sym__autolink] = ACTIONS(2183), + [sym__highlight_span_start] = ACTIONS(2183), + [sym__insert_span_start] = ACTIONS(2183), + [sym__delete_span_start] = ACTIONS(2183), + [sym__edit_comment_span_start] = ACTIONS(2183), + [sym__single_quote_span_open] = ACTIONS(2183), + [sym__double_quote_span_open] = ACTIONS(2183), + [sym__shortcode_open_escaped] = ACTIONS(2183), + [sym__shortcode_open] = ACTIONS(2183), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2183), + [sym__cite_author_in_text] = ACTIONS(2183), + [sym__cite_suppress_author] = ACTIONS(2183), + [sym__strikeout_open] = ACTIONS(2183), + [sym__subscript_open] = ACTIONS(2183), + [sym__superscript_open] = ACTIONS(2183), + [sym__inline_note_start_token] = ACTIONS(2183), + [sym__strong_emphasis_open_star] = ACTIONS(2183), + [sym__strong_emphasis_open_underscore] = ACTIONS(2183), + [sym__emphasis_open_star] = ACTIONS(2183), + [sym__emphasis_open_underscore] = ACTIONS(2183), + [sym_inline_note_reference] = ACTIONS(2183), + [sym_html_element] = ACTIONS(2183), + [sym__pandoc_line_break] = ACTIONS(2183), + [sym_grid_table] = ACTIONS(2183), + }, + [STATE(342)] = { + [ts_builtin_sym_end] = ACTIONS(2237), + [anon_sym_COLON] = 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_continuation] = ACTIONS(2861), + [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_line_break] = ACTIONS(2237), + [sym_grid_table] = ACTIONS(2237), + }, + [STATE(343)] = { + [ts_builtin_sym_end] = ACTIONS(2243), + [anon_sym_COLON] = 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(2863), + [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_line_break] = ACTIONS(2243), + [sym_grid_table] = ACTIONS(2243), + }, + [STATE(344)] = { + [ts_builtin_sym_end] = ACTIONS(2249), + [anon_sym_COLON] = 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(2865), + [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_line_break] = ACTIONS(2249), + [sym_grid_table] = ACTIONS(2249), + }, + [STATE(345)] = { + [sym__inlines] = STATE(3055), + [sym_pandoc_span] = STATE(617), + [sym_pandoc_image] = STATE(617), + [sym_target] = STATE(1069), + [sym_pandoc_math] = STATE(617), + [sym_pandoc_display_math] = STATE(617), + [sym_pandoc_code_span] = STATE(617), + [sym_pandoc_single_quote] = STATE(617), + [sym_pandoc_double_quote] = STATE(617), + [sym_insert] = STATE(617), + [sym_delete] = STATE(617), + [sym_edit_comment] = STATE(617), + [sym_highlight] = STATE(617), + [sym__pandoc_attr_specifier] = STATE(617), + [sym__line] = STATE(2865), + [sym__inline_element] = STATE(617), + [sym_shortcode_escaped] = STATE(617), + [sym_shortcode] = STATE(617), + [sym_citation] = STATE(617), + [sym_inline_note] = STATE(617), + [sym_pandoc_superscript] = STATE(617), + [sym_pandoc_subscript] = STATE(617), + [sym_pandoc_strikeout] = STATE(617), + [sym_pandoc_emph] = STATE(617), + [sym_pandoc_strong] = STATE(617), + [sym_pandoc_str] = STATE(617), + [sym__soft_line_break] = STATE(622), + [sym__inline_whitespace] = STATE(622), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [aux_sym_pandoc_span_token1] = ACTIONS(2867), + [anon_sym_BANG_LBRACK] = ACTIONS(2347), + [aux_sym_target_token1] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2869), + [sym__soft_line_ending] = ACTIONS(2363), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2341), + [sym__autolink] = ACTIONS(2341), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2369), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2375), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2381), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), + [sym__cite_author_in_text] = ACTIONS(2387), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2393), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2399), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2405), + [sym_inline_note_reference] = ACTIONS(2341), + [sym_html_element] = ACTIONS(2341), + [sym__pandoc_line_break] = ACTIONS(2341), + }, + [STATE(346)] = { + [ts_builtin_sym_end] = ACTIONS(2195), + [anon_sym_COLON] = ACTIONS(2195), + [sym_entity_reference] = ACTIONS(2195), + [sym_numeric_character_reference] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_BANG_LBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [aux_sym_pandoc_str_token1] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2195), + [sym__whitespace] = ACTIONS(2195), + [sym__line_ending] = ACTIONS(2195), + [sym__soft_line_ending] = ACTIONS(2195), + [sym_block_continuation] = ACTIONS(2871), + [sym__block_quote_start] = ACTIONS(2195), + [sym_atx_h1_marker] = ACTIONS(2195), + [sym_atx_h2_marker] = ACTIONS(2195), + [sym_atx_h3_marker] = ACTIONS(2195), + [sym_atx_h4_marker] = ACTIONS(2195), + [sym_atx_h5_marker] = ACTIONS(2195), + [sym_atx_h6_marker] = ACTIONS(2195), + [sym__thematic_break] = ACTIONS(2195), + [sym__list_marker_minus] = ACTIONS(2195), + [sym__list_marker_plus] = ACTIONS(2195), + [sym__list_marker_star] = ACTIONS(2195), + [sym__list_marker_parenthesis] = ACTIONS(2195), + [sym__list_marker_dot] = ACTIONS(2195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2195), + [sym__list_marker_example] = ACTIONS(2195), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2195), + [sym__fenced_code_block_start_backtick] = ACTIONS(2195), + [sym_minus_metadata] = ACTIONS(2195), + [sym__pipe_table_start] = ACTIONS(2195), + [sym__fenced_div_start] = ACTIONS(2195), + [sym_ref_id_specifier] = ACTIONS(2195), + [sym__code_span_start] = ACTIONS(2195), + [sym__html_comment] = ACTIONS(2195), + [sym__autolink] = ACTIONS(2195), + [sym__highlight_span_start] = ACTIONS(2195), + [sym__insert_span_start] = ACTIONS(2195), + [sym__delete_span_start] = ACTIONS(2195), + [sym__edit_comment_span_start] = ACTIONS(2195), + [sym__single_quote_span_open] = ACTIONS(2195), + [sym__double_quote_span_open] = ACTIONS(2195), + [sym__shortcode_open_escaped] = ACTIONS(2195), + [sym__shortcode_open] = ACTIONS(2195), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2195), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2195), + [sym__cite_author_in_text] = ACTIONS(2195), + [sym__cite_suppress_author] = ACTIONS(2195), + [sym__strikeout_open] = ACTIONS(2195), + [sym__subscript_open] = ACTIONS(2195), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2195), + [sym__strong_emphasis_open_star] = ACTIONS(2195), + [sym__strong_emphasis_open_underscore] = ACTIONS(2195), + [sym__emphasis_open_star] = ACTIONS(2195), + [sym__emphasis_open_underscore] = ACTIONS(2195), + [sym_inline_note_reference] = ACTIONS(2195), + [sym_html_element] = ACTIONS(2195), + [sym__pandoc_line_break] = ACTIONS(2195), + [sym_grid_table] = ACTIONS(2195), + }, + [STATE(347)] = { + [ts_builtin_sym_end] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2475), + [sym_entity_reference] = ACTIONS(2475), + [sym_numeric_character_reference] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_BANG_LBRACK] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [aux_sym_pandoc_str_token1] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2475), + [sym__whitespace] = ACTIONS(2475), + [sym__line_ending] = ACTIONS(2475), + [sym__soft_line_ending] = ACTIONS(2475), + [sym__block_quote_start] = ACTIONS(2475), + [sym_atx_h1_marker] = ACTIONS(2475), + [sym_atx_h2_marker] = ACTIONS(2475), + [sym_atx_h3_marker] = ACTIONS(2475), + [sym_atx_h4_marker] = ACTIONS(2475), + [sym_atx_h5_marker] = ACTIONS(2475), + [sym_atx_h6_marker] = ACTIONS(2475), + [sym__thematic_break] = ACTIONS(2475), + [sym__list_marker_minus] = ACTIONS(2475), + [sym__list_marker_plus] = ACTIONS(2475), + [sym__list_marker_star] = ACTIONS(2475), + [sym__list_marker_parenthesis] = ACTIONS(2475), + [sym__list_marker_dot] = ACTIONS(2475), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_example] = ACTIONS(2475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2475), + [sym__fenced_code_block_start_backtick] = ACTIONS(2475), + [sym_minus_metadata] = ACTIONS(2475), + [sym__pipe_table_start] = ACTIONS(2475), + [sym__fenced_div_start] = ACTIONS(2475), + [sym_ref_id_specifier] = ACTIONS(2475), + [sym__code_span_start] = ACTIONS(2475), + [sym__html_comment] = ACTIONS(2475), + [sym__autolink] = ACTIONS(2475), + [sym__highlight_span_start] = ACTIONS(2475), + [sym__insert_span_start] = ACTIONS(2475), + [sym__delete_span_start] = ACTIONS(2475), + [sym__edit_comment_span_start] = ACTIONS(2475), + [sym__single_quote_span_open] = ACTIONS(2475), + [sym__double_quote_span_open] = ACTIONS(2475), + [sym__shortcode_open_escaped] = ACTIONS(2475), + [sym__shortcode_open] = ACTIONS(2475), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2475), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2475), + [sym__cite_author_in_text] = ACTIONS(2475), + [sym__cite_suppress_author] = ACTIONS(2475), + [sym__strikeout_open] = ACTIONS(2475), + [sym__subscript_open] = ACTIONS(2475), + [sym__superscript_open] = ACTIONS(2475), + [sym__inline_note_start_token] = ACTIONS(2475), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2475), + [sym__emphasis_open_star] = ACTIONS(2475), + [sym__emphasis_open_underscore] = ACTIONS(2475), + [sym_inline_note_reference] = ACTIONS(2475), + [sym_html_element] = ACTIONS(2475), + [sym__pandoc_line_break] = ACTIONS(2475), + [sym_grid_table] = ACTIONS(2475), + }, + [STATE(348)] = { + [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2539), + [sym_grid_table] = ACTIONS(2539), + }, + [STATE(349)] = { + [anon_sym_COLON] = ACTIONS(2543), + [sym_entity_reference] = ACTIONS(2543), + [sym_numeric_character_reference] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2543), + [anon_sym_BANG_LBRACK] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [aux_sym_pandoc_str_token1] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2543), + [sym__whitespace] = ACTIONS(2543), + [sym__line_ending] = ACTIONS(2543), + [sym__soft_line_ending] = ACTIONS(2543), + [sym__block_close] = ACTIONS(2543), + [sym__block_quote_start] = ACTIONS(2543), + [sym_atx_h1_marker] = ACTIONS(2543), + [sym_atx_h2_marker] = ACTIONS(2543), + [sym_atx_h3_marker] = ACTIONS(2543), + [sym_atx_h4_marker] = ACTIONS(2543), + [sym_atx_h5_marker] = ACTIONS(2543), + [sym_atx_h6_marker] = ACTIONS(2543), + [sym__thematic_break] = ACTIONS(2543), + [sym__list_marker_minus] = ACTIONS(2543), + [sym__list_marker_plus] = ACTIONS(2543), + [sym__list_marker_star] = ACTIONS(2543), + [sym__list_marker_parenthesis] = ACTIONS(2543), + [sym__list_marker_dot] = ACTIONS(2543), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_example] = ACTIONS(2543), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2543), + [sym__fenced_code_block_start_backtick] = ACTIONS(2543), + [sym_minus_metadata] = ACTIONS(2543), + [sym__pipe_table_start] = ACTIONS(2543), + [sym__fenced_div_start] = ACTIONS(2543), + [sym_ref_id_specifier] = ACTIONS(2543), + [sym__code_span_start] = ACTIONS(2543), + [sym__html_comment] = ACTIONS(2543), + [sym__autolink] = ACTIONS(2543), + [sym__highlight_span_start] = ACTIONS(2543), + [sym__insert_span_start] = ACTIONS(2543), + [sym__delete_span_start] = ACTIONS(2543), + [sym__edit_comment_span_start] = ACTIONS(2543), + [sym__single_quote_span_open] = ACTIONS(2543), + [sym__double_quote_span_open] = ACTIONS(2543), + [sym__shortcode_open_escaped] = ACTIONS(2543), + [sym__shortcode_open] = ACTIONS(2543), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2543), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2543), + [sym__cite_author_in_text] = ACTIONS(2543), + [sym__cite_suppress_author] = ACTIONS(2543), + [sym__strikeout_open] = ACTIONS(2543), + [sym__subscript_open] = ACTIONS(2543), + [sym__superscript_open] = ACTIONS(2543), + [sym__inline_note_start_token] = ACTIONS(2543), + [sym__strong_emphasis_open_star] = ACTIONS(2543), + [sym__strong_emphasis_open_underscore] = ACTIONS(2543), + [sym__emphasis_open_star] = ACTIONS(2543), + [sym__emphasis_open_underscore] = ACTIONS(2543), + [sym_inline_note_reference] = ACTIONS(2543), + [sym_html_element] = ACTIONS(2543), + [sym__pandoc_line_break] = ACTIONS(2543), + [sym_grid_table] = ACTIONS(2543), }, [STATE(350)] = { - [ts_builtin_sym_end] = ACTIONS(2269), - [anon_sym_COLON] = ACTIONS(2269), - [sym_entity_reference] = ACTIONS(2269), - [sym_numeric_character_reference] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_BANG_LBRACK] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [aux_sym_pandoc_str_token1] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2269), - [sym__whitespace] = ACTIONS(2269), - [sym__line_ending] = ACTIONS(2269), - [sym__soft_line_ending] = ACTIONS(2269), - [sym_block_continuation] = ACTIONS(2971), - [sym__block_quote_start] = ACTIONS(2269), - [sym_atx_h1_marker] = ACTIONS(2269), - [sym_atx_h2_marker] = ACTIONS(2269), - [sym_atx_h3_marker] = ACTIONS(2269), - [sym_atx_h4_marker] = ACTIONS(2269), - [sym_atx_h5_marker] = ACTIONS(2269), - [sym_atx_h6_marker] = ACTIONS(2269), - [sym__thematic_break] = ACTIONS(2269), - [sym__list_marker_minus] = ACTIONS(2269), - [sym__list_marker_plus] = ACTIONS(2269), - [sym__list_marker_star] = ACTIONS(2269), - [sym__list_marker_parenthesis] = ACTIONS(2269), - [sym__list_marker_dot] = ACTIONS(2269), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2269), - [sym__list_marker_example] = ACTIONS(2269), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2269), - [sym__fenced_code_block_start_backtick] = ACTIONS(2269), - [sym_minus_metadata] = ACTIONS(2269), - [sym__pipe_table_start] = ACTIONS(2269), - [sym__fenced_div_start] = ACTIONS(2269), - [sym_ref_id_specifier] = ACTIONS(2269), - [sym__code_span_start] = ACTIONS(2269), - [sym__html_comment] = ACTIONS(2269), - [sym__autolink] = ACTIONS(2269), - [sym__highlight_span_start] = ACTIONS(2269), - [sym__insert_span_start] = ACTIONS(2269), - [sym__delete_span_start] = ACTIONS(2269), - [sym__edit_comment_span_start] = ACTIONS(2269), - [sym__single_quote_span_open] = ACTIONS(2269), - [sym__double_quote_span_open] = ACTIONS(2269), - [sym__shortcode_open_escaped] = ACTIONS(2269), - [sym__shortcode_open] = ACTIONS(2269), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2269), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2269), - [sym__cite_author_in_text] = ACTIONS(2269), - [sym__cite_suppress_author] = ACTIONS(2269), - [sym__strikeout_open] = ACTIONS(2269), - [sym__subscript_open] = ACTIONS(2269), - [sym__superscript_open] = ACTIONS(2269), - [sym__inline_note_start_token] = ACTIONS(2269), - [sym__strong_emphasis_open_star] = ACTIONS(2269), - [sym__strong_emphasis_open_underscore] = ACTIONS(2269), - [sym__emphasis_open_star] = ACTIONS(2269), - [sym__emphasis_open_underscore] = ACTIONS(2269), - [sym_inline_note_reference] = ACTIONS(2269), - [sym_html_element] = ACTIONS(2269), - [sym__pandoc_line_break] = ACTIONS(2269), + [anon_sym_COLON] = ACTIONS(2547), + [sym_entity_reference] = ACTIONS(2547), + [sym_numeric_character_reference] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_BANG_LBRACK] = ACTIONS(2547), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [aux_sym_pandoc_str_token1] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2547), + [sym__whitespace] = ACTIONS(2547), + [sym__line_ending] = ACTIONS(2547), + [sym__soft_line_ending] = ACTIONS(2547), + [sym__block_close] = ACTIONS(2547), + [sym__block_quote_start] = ACTIONS(2547), + [sym_atx_h1_marker] = ACTIONS(2547), + [sym_atx_h2_marker] = ACTIONS(2547), + [sym_atx_h3_marker] = ACTIONS(2547), + [sym_atx_h4_marker] = ACTIONS(2547), + [sym_atx_h5_marker] = ACTIONS(2547), + [sym_atx_h6_marker] = ACTIONS(2547), + [sym__thematic_break] = ACTIONS(2547), + [sym__list_marker_minus] = ACTIONS(2547), + [sym__list_marker_plus] = ACTIONS(2547), + [sym__list_marker_star] = ACTIONS(2547), + [sym__list_marker_parenthesis] = ACTIONS(2547), + [sym__list_marker_dot] = ACTIONS(2547), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_example] = ACTIONS(2547), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2547), + [sym__fenced_code_block_start_backtick] = ACTIONS(2547), + [sym_minus_metadata] = ACTIONS(2547), + [sym__pipe_table_start] = ACTIONS(2547), + [sym__fenced_div_start] = ACTIONS(2547), + [sym_ref_id_specifier] = ACTIONS(2547), + [sym__code_span_start] = ACTIONS(2547), + [sym__html_comment] = ACTIONS(2547), + [sym__autolink] = ACTIONS(2547), + [sym__highlight_span_start] = ACTIONS(2547), + [sym__insert_span_start] = ACTIONS(2547), + [sym__delete_span_start] = ACTIONS(2547), + [sym__edit_comment_span_start] = ACTIONS(2547), + [sym__single_quote_span_open] = ACTIONS(2547), + [sym__double_quote_span_open] = ACTIONS(2547), + [sym__shortcode_open_escaped] = ACTIONS(2547), + [sym__shortcode_open] = ACTIONS(2547), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2547), + [sym__cite_author_in_text] = ACTIONS(2547), + [sym__cite_suppress_author] = ACTIONS(2547), + [sym__strikeout_open] = ACTIONS(2547), + [sym__subscript_open] = ACTIONS(2547), + [sym__superscript_open] = ACTIONS(2547), + [sym__inline_note_start_token] = ACTIONS(2547), + [sym__strong_emphasis_open_star] = ACTIONS(2547), + [sym__strong_emphasis_open_underscore] = ACTIONS(2547), + [sym__emphasis_open_star] = ACTIONS(2547), + [sym__emphasis_open_underscore] = ACTIONS(2547), + [sym_inline_note_reference] = ACTIONS(2547), + [sym_html_element] = ACTIONS(2547), + [sym__pandoc_line_break] = ACTIONS(2547), + [sym_grid_table] = ACTIONS(2547), }, [STATE(351)] = { - [anon_sym_COLON] = ACTIONS(2973), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_BANG_LBRACK] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [aux_sym_pandoc_str_token1] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2973), - [sym__whitespace] = ACTIONS(2973), - [sym__line_ending] = ACTIONS(2973), - [sym__soft_line_ending] = ACTIONS(2973), - [sym__block_close] = ACTIONS(2973), - [sym__block_quote_start] = ACTIONS(2973), - [sym_atx_h1_marker] = ACTIONS(2973), - [sym_atx_h2_marker] = ACTIONS(2973), - [sym_atx_h3_marker] = ACTIONS(2973), - [sym_atx_h4_marker] = ACTIONS(2973), - [sym_atx_h5_marker] = ACTIONS(2973), - [sym_atx_h6_marker] = ACTIONS(2973), - [sym__thematic_break] = ACTIONS(2973), - [sym__list_marker_minus] = ACTIONS(2973), - [sym__list_marker_plus] = ACTIONS(2973), - [sym__list_marker_star] = ACTIONS(2973), - [sym__list_marker_parenthesis] = ACTIONS(2973), - [sym__list_marker_dot] = ACTIONS(2973), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_example] = ACTIONS(2973), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2973), - [sym__fenced_code_block_start_backtick] = ACTIONS(2973), - [sym_minus_metadata] = ACTIONS(2973), - [sym__pipe_table_start] = ACTIONS(2973), - [sym__fenced_div_start] = ACTIONS(2973), - [sym__fenced_div_end] = ACTIONS(2973), - [sym_ref_id_specifier] = ACTIONS(2973), - [sym__code_span_start] = ACTIONS(2973), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2973), - [sym__insert_span_start] = ACTIONS(2973), - [sym__delete_span_start] = ACTIONS(2973), - [sym__edit_comment_span_start] = ACTIONS(2973), - [sym__single_quote_span_open] = ACTIONS(2973), - [sym__double_quote_span_open] = ACTIONS(2973), - [sym__shortcode_open_escaped] = ACTIONS(2973), - [sym__shortcode_open] = ACTIONS(2973), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2973), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2973), - [sym__cite_author_in_text] = ACTIONS(2973), - [sym__cite_suppress_author] = ACTIONS(2973), - [sym__strikeout_open] = ACTIONS(2973), - [sym__subscript_open] = ACTIONS(2973), - [sym__superscript_open] = ACTIONS(2973), - [sym__inline_note_start_token] = ACTIONS(2973), - [sym__strong_emphasis_open_star] = ACTIONS(2973), - [sym__strong_emphasis_open_underscore] = ACTIONS(2973), - [sym__emphasis_open_star] = ACTIONS(2973), - [sym__emphasis_open_underscore] = ACTIONS(2973), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pandoc_line_break] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2551), + [sym_entity_reference] = ACTIONS(2551), + [sym_numeric_character_reference] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_BANG_LBRACK] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [aux_sym_pandoc_str_token1] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2551), + [sym__whitespace] = ACTIONS(2551), + [sym__line_ending] = ACTIONS(2551), + [sym__soft_line_ending] = ACTIONS(2551), + [sym__block_close] = ACTIONS(2551), + [sym__block_quote_start] = ACTIONS(2551), + [sym_atx_h1_marker] = ACTIONS(2551), + [sym_atx_h2_marker] = ACTIONS(2551), + [sym_atx_h3_marker] = ACTIONS(2551), + [sym_atx_h4_marker] = ACTIONS(2551), + [sym_atx_h5_marker] = ACTIONS(2551), + [sym_atx_h6_marker] = ACTIONS(2551), + [sym__thematic_break] = ACTIONS(2551), + [sym__list_marker_minus] = ACTIONS(2551), + [sym__list_marker_plus] = ACTIONS(2551), + [sym__list_marker_star] = ACTIONS(2551), + [sym__list_marker_parenthesis] = ACTIONS(2551), + [sym__list_marker_dot] = ACTIONS(2551), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_example] = ACTIONS(2551), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2551), + [sym__fenced_code_block_start_backtick] = ACTIONS(2551), + [sym_minus_metadata] = ACTIONS(2551), + [sym__pipe_table_start] = ACTIONS(2551), + [sym__fenced_div_start] = ACTIONS(2551), + [sym_ref_id_specifier] = ACTIONS(2551), + [sym__code_span_start] = ACTIONS(2551), + [sym__html_comment] = ACTIONS(2551), + [sym__autolink] = ACTIONS(2551), + [sym__highlight_span_start] = ACTIONS(2551), + [sym__insert_span_start] = ACTIONS(2551), + [sym__delete_span_start] = ACTIONS(2551), + [sym__edit_comment_span_start] = ACTIONS(2551), + [sym__single_quote_span_open] = ACTIONS(2551), + [sym__double_quote_span_open] = ACTIONS(2551), + [sym__shortcode_open_escaped] = ACTIONS(2551), + [sym__shortcode_open] = ACTIONS(2551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2551), + [sym__cite_author_in_text] = ACTIONS(2551), + [sym__cite_suppress_author] = ACTIONS(2551), + [sym__strikeout_open] = ACTIONS(2551), + [sym__subscript_open] = ACTIONS(2551), + [sym__superscript_open] = ACTIONS(2551), + [sym__inline_note_start_token] = ACTIONS(2551), + [sym__strong_emphasis_open_star] = ACTIONS(2551), + [sym__strong_emphasis_open_underscore] = ACTIONS(2551), + [sym__emphasis_open_star] = ACTIONS(2551), + [sym__emphasis_open_underscore] = ACTIONS(2551), + [sym_inline_note_reference] = ACTIONS(2551), + [sym_html_element] = ACTIONS(2551), + [sym__pandoc_line_break] = ACTIONS(2551), + [sym_grid_table] = ACTIONS(2551), }, [STATE(352)] = { - [anon_sym_COLON] = ACTIONS(2977), - [sym_entity_reference] = ACTIONS(2977), - [sym_numeric_character_reference] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_BANG_LBRACK] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [aux_sym_pandoc_str_token1] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2977), - [sym__whitespace] = ACTIONS(2977), - [sym__line_ending] = ACTIONS(2977), - [sym__soft_line_ending] = ACTIONS(2977), - [sym__block_close] = ACTIONS(2977), - [sym__block_quote_start] = ACTIONS(2977), - [sym_atx_h1_marker] = ACTIONS(2977), - [sym_atx_h2_marker] = ACTIONS(2977), - [sym_atx_h3_marker] = ACTIONS(2977), - [sym_atx_h4_marker] = ACTIONS(2977), - [sym_atx_h5_marker] = ACTIONS(2977), - [sym_atx_h6_marker] = ACTIONS(2977), - [sym__thematic_break] = ACTIONS(2977), - [sym__list_marker_minus] = ACTIONS(2977), - [sym__list_marker_plus] = ACTIONS(2977), - [sym__list_marker_star] = ACTIONS(2977), - [sym__list_marker_parenthesis] = ACTIONS(2977), - [sym__list_marker_dot] = ACTIONS(2977), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_example] = ACTIONS(2977), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2977), - [sym__fenced_code_block_start_backtick] = ACTIONS(2977), - [sym_minus_metadata] = ACTIONS(2977), - [sym__pipe_table_start] = ACTIONS(2977), - [sym__fenced_div_start] = ACTIONS(2977), - [sym__fenced_div_end] = ACTIONS(2977), - [sym_ref_id_specifier] = ACTIONS(2977), - [sym__code_span_start] = ACTIONS(2977), - [sym__html_comment] = ACTIONS(2977), - [sym__autolink] = ACTIONS(2977), - [sym__highlight_span_start] = ACTIONS(2977), - [sym__insert_span_start] = ACTIONS(2977), - [sym__delete_span_start] = ACTIONS(2977), - [sym__edit_comment_span_start] = ACTIONS(2977), - [sym__single_quote_span_open] = ACTIONS(2977), - [sym__double_quote_span_open] = ACTIONS(2977), - [sym__shortcode_open_escaped] = ACTIONS(2977), - [sym__shortcode_open] = ACTIONS(2977), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2977), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2977), - [sym__cite_author_in_text] = ACTIONS(2977), - [sym__cite_suppress_author] = ACTIONS(2977), - [sym__strikeout_open] = ACTIONS(2977), - [sym__subscript_open] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(2977), - [sym__inline_note_start_token] = ACTIONS(2977), - [sym__strong_emphasis_open_star] = ACTIONS(2977), - [sym__strong_emphasis_open_underscore] = ACTIONS(2977), - [sym__emphasis_open_star] = ACTIONS(2977), - [sym__emphasis_open_underscore] = ACTIONS(2977), - [sym_inline_note_reference] = ACTIONS(2977), - [sym_html_element] = ACTIONS(2977), - [sym__pandoc_line_break] = ACTIONS(2977), + [anon_sym_COLON] = ACTIONS(2555), + [sym_entity_reference] = ACTIONS(2555), + [sym_numeric_character_reference] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_BANG_LBRACK] = ACTIONS(2555), + [anon_sym_DOLLAR] = ACTIONS(2557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [aux_sym_pandoc_str_token1] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2555), + [sym__whitespace] = ACTIONS(2555), + [sym__line_ending] = ACTIONS(2555), + [sym__soft_line_ending] = ACTIONS(2555), + [sym__block_close] = ACTIONS(2555), + [sym__block_quote_start] = ACTIONS(2555), + [sym_atx_h1_marker] = ACTIONS(2555), + [sym_atx_h2_marker] = ACTIONS(2555), + [sym_atx_h3_marker] = ACTIONS(2555), + [sym_atx_h4_marker] = ACTIONS(2555), + [sym_atx_h5_marker] = ACTIONS(2555), + [sym_atx_h6_marker] = ACTIONS(2555), + [sym__thematic_break] = ACTIONS(2555), + [sym__list_marker_minus] = ACTIONS(2555), + [sym__list_marker_plus] = ACTIONS(2555), + [sym__list_marker_star] = ACTIONS(2555), + [sym__list_marker_parenthesis] = ACTIONS(2555), + [sym__list_marker_dot] = ACTIONS(2555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_example] = ACTIONS(2555), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2555), + [sym__fenced_code_block_start_backtick] = ACTIONS(2555), + [sym_minus_metadata] = ACTIONS(2555), + [sym__pipe_table_start] = ACTIONS(2555), + [sym__fenced_div_start] = ACTIONS(2555), + [sym_ref_id_specifier] = ACTIONS(2555), + [sym__code_span_start] = ACTIONS(2555), + [sym__html_comment] = ACTIONS(2555), + [sym__autolink] = ACTIONS(2555), + [sym__highlight_span_start] = ACTIONS(2555), + [sym__insert_span_start] = ACTIONS(2555), + [sym__delete_span_start] = ACTIONS(2555), + [sym__edit_comment_span_start] = ACTIONS(2555), + [sym__single_quote_span_open] = ACTIONS(2555), + [sym__double_quote_span_open] = ACTIONS(2555), + [sym__shortcode_open_escaped] = ACTIONS(2555), + [sym__shortcode_open] = ACTIONS(2555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2555), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2555), + [sym__cite_author_in_text] = ACTIONS(2555), + [sym__cite_suppress_author] = ACTIONS(2555), + [sym__strikeout_open] = ACTIONS(2555), + [sym__subscript_open] = ACTIONS(2555), + [sym__superscript_open] = ACTIONS(2555), + [sym__inline_note_start_token] = ACTIONS(2555), + [sym__strong_emphasis_open_star] = ACTIONS(2555), + [sym__strong_emphasis_open_underscore] = ACTIONS(2555), + [sym__emphasis_open_star] = ACTIONS(2555), + [sym__emphasis_open_underscore] = ACTIONS(2555), + [sym_inline_note_reference] = ACTIONS(2555), + [sym_html_element] = ACTIONS(2555), + [sym__pandoc_line_break] = ACTIONS(2555), + [sym_grid_table] = ACTIONS(2555), }, [STATE(353)] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [anon_sym_COLON] = ACTIONS(2275), - [sym_entity_reference] = ACTIONS(2275), - [sym_numeric_character_reference] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [aux_sym_pandoc_str_token1] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2275), - [sym__whitespace] = ACTIONS(2275), - [sym__line_ending] = ACTIONS(2275), - [sym__soft_line_ending] = ACTIONS(2275), - [sym_block_continuation] = ACTIONS(2981), - [sym__block_quote_start] = ACTIONS(2275), - [sym_atx_h1_marker] = ACTIONS(2275), - [sym_atx_h2_marker] = ACTIONS(2275), - [sym_atx_h3_marker] = ACTIONS(2275), - [sym_atx_h4_marker] = ACTIONS(2275), - [sym_atx_h5_marker] = ACTIONS(2275), - [sym_atx_h6_marker] = ACTIONS(2275), - [sym__thematic_break] = ACTIONS(2275), - [sym__list_marker_minus] = ACTIONS(2275), - [sym__list_marker_plus] = ACTIONS(2275), - [sym__list_marker_star] = ACTIONS(2275), - [sym__list_marker_parenthesis] = ACTIONS(2275), - [sym__list_marker_dot] = ACTIONS(2275), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_example] = ACTIONS(2275), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2275), - [sym__fenced_code_block_start_backtick] = ACTIONS(2275), - [sym_minus_metadata] = ACTIONS(2275), - [sym__pipe_table_start] = ACTIONS(2275), - [sym__fenced_div_start] = ACTIONS(2275), - [sym_ref_id_specifier] = ACTIONS(2275), - [sym__code_span_start] = ACTIONS(2275), - [sym__html_comment] = ACTIONS(2275), - [sym__autolink] = ACTIONS(2275), - [sym__highlight_span_start] = ACTIONS(2275), - [sym__insert_span_start] = ACTIONS(2275), - [sym__delete_span_start] = ACTIONS(2275), - [sym__edit_comment_span_start] = ACTIONS(2275), - [sym__single_quote_span_open] = ACTIONS(2275), - [sym__double_quote_span_open] = ACTIONS(2275), - [sym__shortcode_open_escaped] = ACTIONS(2275), - [sym__shortcode_open] = ACTIONS(2275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2275), - [sym__cite_author_in_text] = ACTIONS(2275), - [sym__cite_suppress_author] = ACTIONS(2275), - [sym__strikeout_open] = ACTIONS(2275), - [sym__subscript_open] = ACTIONS(2275), - [sym__superscript_open] = ACTIONS(2275), - [sym__inline_note_start_token] = ACTIONS(2275), - [sym__strong_emphasis_open_star] = ACTIONS(2275), - [sym__strong_emphasis_open_underscore] = ACTIONS(2275), - [sym__emphasis_open_star] = ACTIONS(2275), - [sym__emphasis_open_underscore] = ACTIONS(2275), - [sym_inline_note_reference] = ACTIONS(2275), - [sym_html_element] = ACTIONS(2275), - [sym__pandoc_line_break] = ACTIONS(2275), + [anon_sym_COLON] = ACTIONS(2559), + [sym_entity_reference] = ACTIONS(2559), + [sym_numeric_character_reference] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_BANG_LBRACK] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2561), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [aux_sym_pandoc_str_token1] = ACTIONS(2561), + [anon_sym_PIPE] = ACTIONS(2559), + [sym__whitespace] = ACTIONS(2559), + [sym__line_ending] = ACTIONS(2559), + [sym__soft_line_ending] = ACTIONS(2559), + [sym__block_close] = ACTIONS(2559), + [sym__block_quote_start] = ACTIONS(2559), + [sym_atx_h1_marker] = ACTIONS(2559), + [sym_atx_h2_marker] = ACTIONS(2559), + [sym_atx_h3_marker] = ACTIONS(2559), + [sym_atx_h4_marker] = ACTIONS(2559), + [sym_atx_h5_marker] = ACTIONS(2559), + [sym_atx_h6_marker] = ACTIONS(2559), + [sym__thematic_break] = ACTIONS(2559), + [sym__list_marker_minus] = ACTIONS(2559), + [sym__list_marker_plus] = ACTIONS(2559), + [sym__list_marker_star] = ACTIONS(2559), + [sym__list_marker_parenthesis] = ACTIONS(2559), + [sym__list_marker_dot] = ACTIONS(2559), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_example] = ACTIONS(2559), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2559), + [sym__fenced_code_block_start_backtick] = ACTIONS(2559), + [sym_minus_metadata] = ACTIONS(2559), + [sym__pipe_table_start] = ACTIONS(2559), + [sym__fenced_div_start] = ACTIONS(2559), + [sym_ref_id_specifier] = ACTIONS(2559), + [sym__code_span_start] = ACTIONS(2559), + [sym__html_comment] = ACTIONS(2559), + [sym__autolink] = ACTIONS(2559), + [sym__highlight_span_start] = ACTIONS(2559), + [sym__insert_span_start] = ACTIONS(2559), + [sym__delete_span_start] = ACTIONS(2559), + [sym__edit_comment_span_start] = ACTIONS(2559), + [sym__single_quote_span_open] = ACTIONS(2559), + [sym__double_quote_span_open] = ACTIONS(2559), + [sym__shortcode_open_escaped] = ACTIONS(2559), + [sym__shortcode_open] = ACTIONS(2559), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2559), + [sym__cite_author_in_text] = ACTIONS(2559), + [sym__cite_suppress_author] = ACTIONS(2559), + [sym__strikeout_open] = ACTIONS(2559), + [sym__subscript_open] = ACTIONS(2559), + [sym__superscript_open] = ACTIONS(2559), + [sym__inline_note_start_token] = ACTIONS(2559), + [sym__strong_emphasis_open_star] = ACTIONS(2559), + [sym__strong_emphasis_open_underscore] = ACTIONS(2559), + [sym__emphasis_open_star] = ACTIONS(2559), + [sym__emphasis_open_underscore] = ACTIONS(2559), + [sym_inline_note_reference] = ACTIONS(2559), + [sym_html_element] = ACTIONS(2559), + [sym__pandoc_line_break] = ACTIONS(2559), + [sym_grid_table] = ACTIONS(2559), }, [STATE(354)] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [anon_sym_COLON] = ACTIONS(2299), - [sym_entity_reference] = ACTIONS(2299), - [sym_numeric_character_reference] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_BANG_LBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [aux_sym_pandoc_str_token1] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2299), - [sym__whitespace] = ACTIONS(2299), - [sym__line_ending] = ACTIONS(2299), - [sym__soft_line_ending] = ACTIONS(2299), - [sym_block_continuation] = ACTIONS(2983), - [sym__block_quote_start] = ACTIONS(2299), - [sym_atx_h1_marker] = ACTIONS(2299), - [sym_atx_h2_marker] = ACTIONS(2299), - [sym_atx_h3_marker] = ACTIONS(2299), - [sym_atx_h4_marker] = ACTIONS(2299), - [sym_atx_h5_marker] = ACTIONS(2299), - [sym_atx_h6_marker] = ACTIONS(2299), - [sym__thematic_break] = ACTIONS(2299), - [sym__list_marker_minus] = ACTIONS(2299), - [sym__list_marker_plus] = ACTIONS(2299), - [sym__list_marker_star] = ACTIONS(2299), - [sym__list_marker_parenthesis] = ACTIONS(2299), - [sym__list_marker_dot] = ACTIONS(2299), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_example] = ACTIONS(2299), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), - [sym__fenced_code_block_start_backtick] = ACTIONS(2299), - [sym_minus_metadata] = ACTIONS(2299), - [sym__pipe_table_start] = ACTIONS(2299), - [sym__fenced_div_start] = ACTIONS(2299), - [sym_ref_id_specifier] = ACTIONS(2299), - [sym__code_span_start] = ACTIONS(2299), - [sym__html_comment] = ACTIONS(2299), - [sym__autolink] = ACTIONS(2299), - [sym__highlight_span_start] = ACTIONS(2299), - [sym__insert_span_start] = ACTIONS(2299), - [sym__delete_span_start] = ACTIONS(2299), - [sym__edit_comment_span_start] = ACTIONS(2299), - [sym__single_quote_span_open] = ACTIONS(2299), - [sym__double_quote_span_open] = ACTIONS(2299), - [sym__shortcode_open_escaped] = ACTIONS(2299), - [sym__shortcode_open] = ACTIONS(2299), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), - [sym__cite_author_in_text] = ACTIONS(2299), - [sym__cite_suppress_author] = ACTIONS(2299), - [sym__strikeout_open] = ACTIONS(2299), - [sym__subscript_open] = ACTIONS(2299), - [sym__superscript_open] = ACTIONS(2299), - [sym__inline_note_start_token] = ACTIONS(2299), - [sym__strong_emphasis_open_star] = ACTIONS(2299), - [sym__strong_emphasis_open_underscore] = ACTIONS(2299), - [sym__emphasis_open_star] = ACTIONS(2299), - [sym__emphasis_open_underscore] = ACTIONS(2299), - [sym_inline_note_reference] = ACTIONS(2299), - [sym_html_element] = ACTIONS(2299), - [sym__pandoc_line_break] = ACTIONS(2299), + [anon_sym_COLON] = ACTIONS(2563), + [sym_entity_reference] = ACTIONS(2563), + [sym_numeric_character_reference] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_BANG_LBRACK] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [aux_sym_pandoc_str_token1] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2563), + [sym__whitespace] = ACTIONS(2563), + [sym__line_ending] = ACTIONS(2563), + [sym__soft_line_ending] = ACTIONS(2563), + [sym__block_close] = ACTIONS(2563), + [sym__block_quote_start] = ACTIONS(2563), + [sym_atx_h1_marker] = ACTIONS(2563), + [sym_atx_h2_marker] = ACTIONS(2563), + [sym_atx_h3_marker] = ACTIONS(2563), + [sym_atx_h4_marker] = ACTIONS(2563), + [sym_atx_h5_marker] = ACTIONS(2563), + [sym_atx_h6_marker] = ACTIONS(2563), + [sym__thematic_break] = ACTIONS(2563), + [sym__list_marker_minus] = ACTIONS(2563), + [sym__list_marker_plus] = ACTIONS(2563), + [sym__list_marker_star] = ACTIONS(2563), + [sym__list_marker_parenthesis] = ACTIONS(2563), + [sym__list_marker_dot] = ACTIONS(2563), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_example] = ACTIONS(2563), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2563), + [sym__fenced_code_block_start_backtick] = ACTIONS(2563), + [sym_minus_metadata] = ACTIONS(2563), + [sym__pipe_table_start] = ACTIONS(2563), + [sym__fenced_div_start] = ACTIONS(2563), + [sym_ref_id_specifier] = ACTIONS(2563), + [sym__code_span_start] = ACTIONS(2563), + [sym__html_comment] = ACTIONS(2563), + [sym__autolink] = ACTIONS(2563), + [sym__highlight_span_start] = ACTIONS(2563), + [sym__insert_span_start] = ACTIONS(2563), + [sym__delete_span_start] = ACTIONS(2563), + [sym__edit_comment_span_start] = ACTIONS(2563), + [sym__single_quote_span_open] = ACTIONS(2563), + [sym__double_quote_span_open] = ACTIONS(2563), + [sym__shortcode_open_escaped] = ACTIONS(2563), + [sym__shortcode_open] = ACTIONS(2563), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2563), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2563), + [sym__cite_author_in_text] = ACTIONS(2563), + [sym__cite_suppress_author] = ACTIONS(2563), + [sym__strikeout_open] = ACTIONS(2563), + [sym__subscript_open] = ACTIONS(2563), + [sym__superscript_open] = ACTIONS(2563), + [sym__inline_note_start_token] = ACTIONS(2563), + [sym__strong_emphasis_open_star] = ACTIONS(2563), + [sym__strong_emphasis_open_underscore] = ACTIONS(2563), + [sym__emphasis_open_star] = ACTIONS(2563), + [sym__emphasis_open_underscore] = ACTIONS(2563), + [sym_inline_note_reference] = ACTIONS(2563), + [sym_html_element] = ACTIONS(2563), + [sym__pandoc_line_break] = ACTIONS(2563), + [sym_grid_table] = ACTIONS(2563), }, [STATE(355)] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2305), - [sym_entity_reference] = ACTIONS(2305), - [sym_numeric_character_reference] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_BANG_LBRACK] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [aux_sym_pandoc_str_token1] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2305), - [sym__whitespace] = ACTIONS(2305), - [sym__line_ending] = ACTIONS(2305), - [sym__soft_line_ending] = ACTIONS(2305), - [sym_block_continuation] = ACTIONS(2985), - [sym__block_quote_start] = ACTIONS(2305), - [sym_atx_h1_marker] = ACTIONS(2305), - [sym_atx_h2_marker] = ACTIONS(2305), - [sym_atx_h3_marker] = ACTIONS(2305), - [sym_atx_h4_marker] = ACTIONS(2305), - [sym_atx_h5_marker] = ACTIONS(2305), - [sym_atx_h6_marker] = ACTIONS(2305), - [sym__thematic_break] = ACTIONS(2305), - [sym__list_marker_minus] = ACTIONS(2305), - [sym__list_marker_plus] = ACTIONS(2305), - [sym__list_marker_star] = ACTIONS(2305), - [sym__list_marker_parenthesis] = ACTIONS(2305), - [sym__list_marker_dot] = ACTIONS(2305), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_example] = ACTIONS(2305), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), - [sym__fenced_code_block_start_backtick] = ACTIONS(2305), - [sym_minus_metadata] = ACTIONS(2305), - [sym__pipe_table_start] = ACTIONS(2305), - [sym__fenced_div_start] = ACTIONS(2305), - [sym_ref_id_specifier] = ACTIONS(2305), - [sym__code_span_start] = ACTIONS(2305), - [sym__html_comment] = ACTIONS(2305), - [sym__autolink] = ACTIONS(2305), - [sym__highlight_span_start] = ACTIONS(2305), - [sym__insert_span_start] = ACTIONS(2305), - [sym__delete_span_start] = ACTIONS(2305), - [sym__edit_comment_span_start] = ACTIONS(2305), - [sym__single_quote_span_open] = ACTIONS(2305), - [sym__double_quote_span_open] = ACTIONS(2305), - [sym__shortcode_open_escaped] = ACTIONS(2305), - [sym__shortcode_open] = ACTIONS(2305), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), - [sym__cite_author_in_text] = ACTIONS(2305), - [sym__cite_suppress_author] = ACTIONS(2305), - [sym__strikeout_open] = ACTIONS(2305), - [sym__subscript_open] = ACTIONS(2305), - [sym__superscript_open] = ACTIONS(2305), - [sym__inline_note_start_token] = ACTIONS(2305), - [sym__strong_emphasis_open_star] = ACTIONS(2305), - [sym__strong_emphasis_open_underscore] = ACTIONS(2305), - [sym__emphasis_open_star] = ACTIONS(2305), - [sym__emphasis_open_underscore] = ACTIONS(2305), - [sym_inline_note_reference] = ACTIONS(2305), - [sym_html_element] = ACTIONS(2305), - [sym__pandoc_line_break] = ACTIONS(2305), + [anon_sym_COLON] = ACTIONS(2567), + [sym_entity_reference] = ACTIONS(2567), + [sym_numeric_character_reference] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_BANG_LBRACK] = ACTIONS(2567), + [anon_sym_DOLLAR] = ACTIONS(2569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [aux_sym_pandoc_str_token1] = ACTIONS(2569), + [anon_sym_PIPE] = ACTIONS(2567), + [sym__whitespace] = ACTIONS(2567), + [sym__line_ending] = ACTIONS(2567), + [sym__soft_line_ending] = ACTIONS(2567), + [sym__block_close] = ACTIONS(2567), + [sym__block_quote_start] = ACTIONS(2567), + [sym_atx_h1_marker] = ACTIONS(2567), + [sym_atx_h2_marker] = ACTIONS(2567), + [sym_atx_h3_marker] = ACTIONS(2567), + [sym_atx_h4_marker] = ACTIONS(2567), + [sym_atx_h5_marker] = ACTIONS(2567), + [sym_atx_h6_marker] = ACTIONS(2567), + [sym__thematic_break] = ACTIONS(2567), + [sym__list_marker_minus] = ACTIONS(2567), + [sym__list_marker_plus] = ACTIONS(2567), + [sym__list_marker_star] = ACTIONS(2567), + [sym__list_marker_parenthesis] = ACTIONS(2567), + [sym__list_marker_dot] = ACTIONS(2567), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_example] = ACTIONS(2567), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2567), + [sym__fenced_code_block_start_backtick] = ACTIONS(2567), + [sym_minus_metadata] = ACTIONS(2567), + [sym__pipe_table_start] = ACTIONS(2567), + [sym__fenced_div_start] = ACTIONS(2567), + [sym_ref_id_specifier] = ACTIONS(2567), + [sym__code_span_start] = ACTIONS(2567), + [sym__html_comment] = ACTIONS(2567), + [sym__autolink] = ACTIONS(2567), + [sym__highlight_span_start] = ACTIONS(2567), + [sym__insert_span_start] = ACTIONS(2567), + [sym__delete_span_start] = ACTIONS(2567), + [sym__edit_comment_span_start] = ACTIONS(2567), + [sym__single_quote_span_open] = ACTIONS(2567), + [sym__double_quote_span_open] = ACTIONS(2567), + [sym__shortcode_open_escaped] = ACTIONS(2567), + [sym__shortcode_open] = ACTIONS(2567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2567), + [sym__cite_author_in_text] = ACTIONS(2567), + [sym__cite_suppress_author] = ACTIONS(2567), + [sym__strikeout_open] = ACTIONS(2567), + [sym__subscript_open] = ACTIONS(2567), + [sym__superscript_open] = ACTIONS(2567), + [sym__inline_note_start_token] = ACTIONS(2567), + [sym__strong_emphasis_open_star] = ACTIONS(2567), + [sym__strong_emphasis_open_underscore] = ACTIONS(2567), + [sym__emphasis_open_star] = ACTIONS(2567), + [sym__emphasis_open_underscore] = ACTIONS(2567), + [sym_inline_note_reference] = ACTIONS(2567), + [sym_html_element] = ACTIONS(2567), + [sym__pandoc_line_break] = ACTIONS(2567), + [sym_grid_table] = ACTIONS(2567), }, [STATE(356)] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [anon_sym_COLON] = ACTIONS(2311), - [sym_entity_reference] = ACTIONS(2311), - [sym_numeric_character_reference] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_BANG_LBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [aux_sym_pandoc_str_token1] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2311), - [sym__whitespace] = ACTIONS(2311), - [sym__line_ending] = ACTIONS(2311), - [sym__soft_line_ending] = ACTIONS(2311), - [sym_block_continuation] = ACTIONS(2987), - [sym__block_quote_start] = ACTIONS(2311), - [sym_atx_h1_marker] = ACTIONS(2311), - [sym_atx_h2_marker] = ACTIONS(2311), - [sym_atx_h3_marker] = ACTIONS(2311), - [sym_atx_h4_marker] = ACTIONS(2311), - [sym_atx_h5_marker] = ACTIONS(2311), - [sym_atx_h6_marker] = ACTIONS(2311), - [sym__thematic_break] = ACTIONS(2311), - [sym__list_marker_minus] = ACTIONS(2311), - [sym__list_marker_plus] = ACTIONS(2311), - [sym__list_marker_star] = ACTIONS(2311), - [sym__list_marker_parenthesis] = ACTIONS(2311), - [sym__list_marker_dot] = ACTIONS(2311), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2311), - [sym_minus_metadata] = ACTIONS(2311), - [sym__pipe_table_start] = ACTIONS(2311), - [sym__fenced_div_start] = ACTIONS(2311), - [sym_ref_id_specifier] = ACTIONS(2311), - [sym__code_span_start] = ACTIONS(2311), - [sym__html_comment] = ACTIONS(2311), - [sym__autolink] = ACTIONS(2311), - [sym__highlight_span_start] = ACTIONS(2311), - [sym__insert_span_start] = ACTIONS(2311), - [sym__delete_span_start] = ACTIONS(2311), - [sym__edit_comment_span_start] = ACTIONS(2311), - [sym__single_quote_span_open] = ACTIONS(2311), - [sym__double_quote_span_open] = ACTIONS(2311), - [sym__shortcode_open_escaped] = ACTIONS(2311), - [sym__shortcode_open] = ACTIONS(2311), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), - [sym__cite_author_in_text] = ACTIONS(2311), - [sym__cite_suppress_author] = ACTIONS(2311), - [sym__strikeout_open] = ACTIONS(2311), - [sym__subscript_open] = ACTIONS(2311), - [sym__superscript_open] = ACTIONS(2311), - [sym__inline_note_start_token] = ACTIONS(2311), - [sym__strong_emphasis_open_star] = ACTIONS(2311), - [sym__strong_emphasis_open_underscore] = ACTIONS(2311), - [sym__emphasis_open_star] = ACTIONS(2311), - [sym__emphasis_open_underscore] = ACTIONS(2311), - [sym_inline_note_reference] = ACTIONS(2311), - [sym_html_element] = ACTIONS(2311), - [sym__pandoc_line_break] = ACTIONS(2311), + [anon_sym_COLON] = ACTIONS(2571), + [sym_entity_reference] = ACTIONS(2571), + [sym_numeric_character_reference] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_BANG_LBRACK] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(2573), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [aux_sym_pandoc_str_token1] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2571), + [sym__whitespace] = ACTIONS(2571), + [sym__line_ending] = ACTIONS(2571), + [sym__soft_line_ending] = ACTIONS(2571), + [sym__block_close] = ACTIONS(2571), + [sym__block_quote_start] = ACTIONS(2571), + [sym_atx_h1_marker] = ACTIONS(2571), + [sym_atx_h2_marker] = ACTIONS(2571), + [sym_atx_h3_marker] = ACTIONS(2571), + [sym_atx_h4_marker] = ACTIONS(2571), + [sym_atx_h5_marker] = ACTIONS(2571), + [sym_atx_h6_marker] = ACTIONS(2571), + [sym__thematic_break] = ACTIONS(2571), + [sym__list_marker_minus] = ACTIONS(2571), + [sym__list_marker_plus] = ACTIONS(2571), + [sym__list_marker_star] = ACTIONS(2571), + [sym__list_marker_parenthesis] = ACTIONS(2571), + [sym__list_marker_dot] = ACTIONS(2571), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2571), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2571), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2571), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2571), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2571), + [sym__list_marker_example] = ACTIONS(2571), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2571), + [sym__fenced_code_block_start_backtick] = ACTIONS(2571), + [sym_minus_metadata] = ACTIONS(2571), + [sym__pipe_table_start] = ACTIONS(2571), + [sym__fenced_div_start] = ACTIONS(2571), + [sym_ref_id_specifier] = ACTIONS(2571), + [sym__code_span_start] = ACTIONS(2571), + [sym__html_comment] = ACTIONS(2571), + [sym__autolink] = ACTIONS(2571), + [sym__highlight_span_start] = ACTIONS(2571), + [sym__insert_span_start] = ACTIONS(2571), + [sym__delete_span_start] = ACTIONS(2571), + [sym__edit_comment_span_start] = ACTIONS(2571), + [sym__single_quote_span_open] = ACTIONS(2571), + [sym__double_quote_span_open] = ACTIONS(2571), + [sym__shortcode_open_escaped] = ACTIONS(2571), + [sym__shortcode_open] = ACTIONS(2571), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2571), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2571), + [sym__cite_author_in_text] = ACTIONS(2571), + [sym__cite_suppress_author] = ACTIONS(2571), + [sym__strikeout_open] = ACTIONS(2571), + [sym__subscript_open] = ACTIONS(2571), + [sym__superscript_open] = ACTIONS(2571), + [sym__inline_note_start_token] = ACTIONS(2571), + [sym__strong_emphasis_open_star] = ACTIONS(2571), + [sym__strong_emphasis_open_underscore] = ACTIONS(2571), + [sym__emphasis_open_star] = ACTIONS(2571), + [sym__emphasis_open_underscore] = ACTIONS(2571), + [sym_inline_note_reference] = ACTIONS(2571), + [sym_html_element] = ACTIONS(2571), + [sym__pandoc_line_break] = ACTIONS(2571), + [sym_grid_table] = ACTIONS(2571), }, [STATE(357)] = { - [ts_builtin_sym_end] = ACTIONS(2377), - [anon_sym_COLON] = ACTIONS(2377), - [sym_entity_reference] = ACTIONS(2377), - [sym_numeric_character_reference] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_BANG_LBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [aux_sym_pandoc_str_token1] = ACTIONS(2379), - [anon_sym_PIPE] = ACTIONS(2377), - [sym__whitespace] = ACTIONS(2377), - [sym__line_ending] = ACTIONS(2377), - [sym__soft_line_ending] = ACTIONS(2377), - [sym_block_continuation] = ACTIONS(2989), - [sym__block_quote_start] = ACTIONS(2377), - [sym_atx_h1_marker] = ACTIONS(2377), - [sym_atx_h2_marker] = ACTIONS(2377), - [sym_atx_h3_marker] = ACTIONS(2377), - [sym_atx_h4_marker] = ACTIONS(2377), - [sym_atx_h5_marker] = ACTIONS(2377), - [sym_atx_h6_marker] = ACTIONS(2377), - [sym__thematic_break] = ACTIONS(2377), - [sym__list_marker_minus] = ACTIONS(2377), - [sym__list_marker_plus] = ACTIONS(2377), - [sym__list_marker_star] = ACTIONS(2377), - [sym__list_marker_parenthesis] = ACTIONS(2377), - [sym__list_marker_dot] = ACTIONS(2377), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), - [sym__list_marker_example] = ACTIONS(2377), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), - [sym__fenced_code_block_start_backtick] = ACTIONS(2377), - [sym_minus_metadata] = ACTIONS(2377), - [sym__pipe_table_start] = ACTIONS(2377), - [sym__fenced_div_start] = ACTIONS(2377), - [sym_ref_id_specifier] = ACTIONS(2377), - [sym__code_span_start] = ACTIONS(2377), - [sym__html_comment] = ACTIONS(2377), - [sym__autolink] = ACTIONS(2377), - [sym__highlight_span_start] = ACTIONS(2377), - [sym__insert_span_start] = ACTIONS(2377), - [sym__delete_span_start] = ACTIONS(2377), - [sym__edit_comment_span_start] = ACTIONS(2377), - [sym__single_quote_span_open] = ACTIONS(2377), - [sym__double_quote_span_open] = ACTIONS(2377), - [sym__shortcode_open_escaped] = ACTIONS(2377), - [sym__shortcode_open] = ACTIONS(2377), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), - [sym__cite_author_in_text] = ACTIONS(2377), - [sym__cite_suppress_author] = ACTIONS(2377), - [sym__strikeout_open] = ACTIONS(2377), - [sym__subscript_open] = ACTIONS(2377), - [sym__superscript_open] = ACTIONS(2377), - [sym__inline_note_start_token] = ACTIONS(2377), - [sym__strong_emphasis_open_star] = ACTIONS(2377), - [sym__strong_emphasis_open_underscore] = ACTIONS(2377), - [sym__emphasis_open_star] = ACTIONS(2377), - [sym__emphasis_open_underscore] = ACTIONS(2377), - [sym_inline_note_reference] = ACTIONS(2377), - [sym_html_element] = ACTIONS(2377), - [sym__pandoc_line_break] = ACTIONS(2377), - }, - [STATE(358)] = { - [ts_builtin_sym_end] = ACTIONS(2589), - [anon_sym_COLON] = ACTIONS(2589), - [sym_entity_reference] = ACTIONS(2589), - [sym_numeric_character_reference] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_BANG_LBRACK] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [aux_sym_pandoc_str_token1] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2589), - [sym__whitespace] = ACTIONS(2589), - [sym__line_ending] = ACTIONS(2589), - [sym__soft_line_ending] = ACTIONS(2589), - [sym__block_quote_start] = ACTIONS(2589), - [sym_atx_h1_marker] = ACTIONS(2589), - [sym_atx_h2_marker] = ACTIONS(2589), - [sym_atx_h3_marker] = ACTIONS(2589), - [sym_atx_h4_marker] = ACTIONS(2589), - [sym_atx_h5_marker] = ACTIONS(2589), - [sym_atx_h6_marker] = ACTIONS(2589), - [sym__thematic_break] = ACTIONS(2589), - [sym__list_marker_minus] = ACTIONS(2589), - [sym__list_marker_plus] = ACTIONS(2589), - [sym__list_marker_star] = ACTIONS(2589), - [sym__list_marker_parenthesis] = ACTIONS(2589), - [sym__list_marker_dot] = ACTIONS(2589), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_example] = ACTIONS(2589), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2589), - [sym__fenced_code_block_start_backtick] = ACTIONS(2589), - [sym_minus_metadata] = ACTIONS(2589), - [sym__pipe_table_start] = ACTIONS(2589), - [sym__fenced_div_start] = ACTIONS(2589), - [sym_ref_id_specifier] = ACTIONS(2589), - [sym__code_span_start] = ACTIONS(2589), - [sym__html_comment] = ACTIONS(2589), - [sym__autolink] = ACTIONS(2589), - [sym__highlight_span_start] = ACTIONS(2589), - [sym__insert_span_start] = ACTIONS(2589), - [sym__delete_span_start] = ACTIONS(2589), - [sym__edit_comment_span_start] = ACTIONS(2589), - [sym__single_quote_span_open] = ACTIONS(2589), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2589), - [sym__shortcode_open] = ACTIONS(2589), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2589), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2589), - [sym__cite_author_in_text] = ACTIONS(2589), - [sym__cite_suppress_author] = ACTIONS(2589), - [sym__strikeout_open] = ACTIONS(2589), - [sym__subscript_open] = ACTIONS(2589), - [sym__superscript_open] = ACTIONS(2589), - [sym__inline_note_start_token] = ACTIONS(2589), - [sym__strong_emphasis_open_star] = ACTIONS(2589), - [sym__strong_emphasis_open_underscore] = ACTIONS(2589), - [sym__emphasis_open_star] = ACTIONS(2589), - [sym__emphasis_open_underscore] = ACTIONS(2589), - [sym_inline_note_reference] = ACTIONS(2589), - [sym_html_element] = ACTIONS(2589), - [sym__pandoc_line_break] = ACTIONS(2589), - }, - [STATE(359)] = { - [anon_sym_COLON] = ACTIONS(2695), - [sym_entity_reference] = ACTIONS(2695), - [sym_numeric_character_reference] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_BANG_LBRACK] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(2697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2695), - [aux_sym_pandoc_str_token1] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2695), - [sym__whitespace] = ACTIONS(2695), - [sym__line_ending] = ACTIONS(2695), - [sym__soft_line_ending] = ACTIONS(2695), - [sym__block_close] = ACTIONS(2695), - [sym__block_quote_start] = ACTIONS(2695), - [sym_atx_h1_marker] = ACTIONS(2695), - [sym_atx_h2_marker] = ACTIONS(2695), - [sym_atx_h3_marker] = ACTIONS(2695), - [sym_atx_h4_marker] = ACTIONS(2695), - [sym_atx_h5_marker] = ACTIONS(2695), - [sym_atx_h6_marker] = ACTIONS(2695), - [sym__thematic_break] = ACTIONS(2695), - [sym__list_marker_minus] = ACTIONS(2695), - [sym__list_marker_plus] = ACTIONS(2695), - [sym__list_marker_star] = ACTIONS(2695), - [sym__list_marker_parenthesis] = ACTIONS(2695), - [sym__list_marker_dot] = ACTIONS(2695), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_example] = ACTIONS(2695), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2695), - [sym__fenced_code_block_start_backtick] = ACTIONS(2695), - [sym_minus_metadata] = ACTIONS(2695), - [sym__pipe_table_start] = ACTIONS(2695), - [sym__fenced_div_start] = ACTIONS(2695), - [sym_ref_id_specifier] = ACTIONS(2695), - [sym__code_span_start] = ACTIONS(2695), - [sym__html_comment] = ACTIONS(2695), - [sym__autolink] = ACTIONS(2695), - [sym__highlight_span_start] = ACTIONS(2695), - [sym__insert_span_start] = ACTIONS(2695), - [sym__delete_span_start] = ACTIONS(2695), - [sym__edit_comment_span_start] = ACTIONS(2695), - [sym__single_quote_span_open] = ACTIONS(2695), - [sym__double_quote_span_open] = ACTIONS(2695), - [sym__shortcode_open_escaped] = ACTIONS(2695), - [sym__shortcode_open] = ACTIONS(2695), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2695), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2695), - [sym__cite_author_in_text] = ACTIONS(2695), - [sym__cite_suppress_author] = ACTIONS(2695), - [sym__strikeout_open] = ACTIONS(2695), - [sym__subscript_open] = ACTIONS(2695), - [sym__superscript_open] = ACTIONS(2695), - [sym__inline_note_start_token] = ACTIONS(2695), - [sym__strong_emphasis_open_star] = ACTIONS(2695), - [sym__strong_emphasis_open_underscore] = ACTIONS(2695), - [sym__emphasis_open_star] = ACTIONS(2695), - [sym__emphasis_open_underscore] = ACTIONS(2695), - [sym_inline_note_reference] = ACTIONS(2695), - [sym_html_element] = ACTIONS(2695), - [sym__pandoc_line_break] = ACTIONS(2695), - }, - [STATE(360)] = { - [sym__atx_heading_content] = STATE(3276), - [sym__inlines] = STATE(3276), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(242), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(229), - [sym__eof] = ACTIONS(2993), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2575), + [sym_entity_reference] = ACTIONS(2575), + [sym_numeric_character_reference] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_BANG_LBRACK] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2577), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [aux_sym_pandoc_str_token1] = ACTIONS(2577), + [anon_sym_PIPE] = ACTIONS(2575), + [sym__whitespace] = ACTIONS(2575), + [sym__line_ending] = ACTIONS(2575), + [sym__soft_line_ending] = ACTIONS(2575), + [sym__block_close] = ACTIONS(2575), + [sym__block_quote_start] = ACTIONS(2575), + [sym_atx_h1_marker] = ACTIONS(2575), + [sym_atx_h2_marker] = ACTIONS(2575), + [sym_atx_h3_marker] = ACTIONS(2575), + [sym_atx_h4_marker] = ACTIONS(2575), + [sym_atx_h5_marker] = ACTIONS(2575), + [sym_atx_h6_marker] = ACTIONS(2575), + [sym__thematic_break] = ACTIONS(2575), + [sym__list_marker_minus] = ACTIONS(2575), + [sym__list_marker_plus] = ACTIONS(2575), + [sym__list_marker_star] = ACTIONS(2575), + [sym__list_marker_parenthesis] = ACTIONS(2575), + [sym__list_marker_dot] = ACTIONS(2575), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2575), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2575), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2575), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2575), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2575), + [sym__list_marker_example] = ACTIONS(2575), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2575), + [sym__fenced_code_block_start_backtick] = ACTIONS(2575), + [sym_minus_metadata] = ACTIONS(2575), + [sym__pipe_table_start] = ACTIONS(2575), + [sym__fenced_div_start] = ACTIONS(2575), + [sym_ref_id_specifier] = ACTIONS(2575), + [sym__code_span_start] = ACTIONS(2575), + [sym__html_comment] = ACTIONS(2575), + [sym__autolink] = ACTIONS(2575), + [sym__highlight_span_start] = ACTIONS(2575), + [sym__insert_span_start] = ACTIONS(2575), + [sym__delete_span_start] = ACTIONS(2575), + [sym__edit_comment_span_start] = ACTIONS(2575), + [sym__single_quote_span_open] = ACTIONS(2575), + [sym__double_quote_span_open] = ACTIONS(2575), + [sym__shortcode_open_escaped] = ACTIONS(2575), + [sym__shortcode_open] = ACTIONS(2575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2575), + [sym__cite_author_in_text] = ACTIONS(2575), + [sym__cite_suppress_author] = ACTIONS(2575), + [sym__strikeout_open] = ACTIONS(2575), + [sym__subscript_open] = ACTIONS(2575), + [sym__superscript_open] = ACTIONS(2575), + [sym__inline_note_start_token] = ACTIONS(2575), + [sym__strong_emphasis_open_star] = ACTIONS(2575), + [sym__strong_emphasis_open_underscore] = ACTIONS(2575), + [sym__emphasis_open_star] = ACTIONS(2575), + [sym__emphasis_open_underscore] = ACTIONS(2575), + [sym_inline_note_reference] = ACTIONS(2575), + [sym_html_element] = ACTIONS(2575), + [sym__pandoc_line_break] = ACTIONS(2575), + [sym_grid_table] = ACTIONS(2575), + }, + [STATE(358)] = { + [anon_sym_COLON] = ACTIONS(2579), + [sym_entity_reference] = ACTIONS(2579), + [sym_numeric_character_reference] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_BANG_LBRACK] = ACTIONS(2579), + [anon_sym_DOLLAR] = ACTIONS(2581), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [aux_sym_pandoc_str_token1] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2579), + [sym__whitespace] = ACTIONS(2579), + [sym__line_ending] = ACTIONS(2579), + [sym__soft_line_ending] = ACTIONS(2579), + [sym__block_close] = ACTIONS(2579), + [sym__block_quote_start] = ACTIONS(2579), + [sym_atx_h1_marker] = ACTIONS(2579), + [sym_atx_h2_marker] = ACTIONS(2579), + [sym_atx_h3_marker] = ACTIONS(2579), + [sym_atx_h4_marker] = ACTIONS(2579), + [sym_atx_h5_marker] = ACTIONS(2579), + [sym_atx_h6_marker] = ACTIONS(2579), + [sym__thematic_break] = ACTIONS(2579), + [sym__list_marker_minus] = ACTIONS(2579), + [sym__list_marker_plus] = ACTIONS(2579), + [sym__list_marker_star] = ACTIONS(2579), + [sym__list_marker_parenthesis] = ACTIONS(2579), + [sym__list_marker_dot] = ACTIONS(2579), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_example] = ACTIONS(2579), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2579), + [sym__fenced_code_block_start_backtick] = ACTIONS(2579), + [sym_minus_metadata] = ACTIONS(2579), + [sym__pipe_table_start] = ACTIONS(2579), + [sym__fenced_div_start] = ACTIONS(2579), + [sym_ref_id_specifier] = ACTIONS(2579), + [sym__code_span_start] = ACTIONS(2579), + [sym__html_comment] = ACTIONS(2579), + [sym__autolink] = ACTIONS(2579), + [sym__highlight_span_start] = ACTIONS(2579), + [sym__insert_span_start] = ACTIONS(2579), + [sym__delete_span_start] = ACTIONS(2579), + [sym__edit_comment_span_start] = ACTIONS(2579), + [sym__single_quote_span_open] = ACTIONS(2579), + [sym__double_quote_span_open] = ACTIONS(2579), + [sym__shortcode_open_escaped] = ACTIONS(2579), + [sym__shortcode_open] = ACTIONS(2579), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2579), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2579), + [sym__cite_author_in_text] = ACTIONS(2579), + [sym__cite_suppress_author] = ACTIONS(2579), + [sym__strikeout_open] = ACTIONS(2579), + [sym__subscript_open] = ACTIONS(2579), + [sym__superscript_open] = ACTIONS(2579), + [sym__inline_note_start_token] = ACTIONS(2579), + [sym__strong_emphasis_open_star] = ACTIONS(2579), + [sym__strong_emphasis_open_underscore] = ACTIONS(2579), + [sym__emphasis_open_star] = ACTIONS(2579), + [sym__emphasis_open_underscore] = ACTIONS(2579), + [sym_inline_note_reference] = ACTIONS(2579), + [sym_html_element] = ACTIONS(2579), + [sym__pandoc_line_break] = ACTIONS(2579), + [sym_grid_table] = ACTIONS(2579), + }, + [STATE(359)] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [anon_sym_COLON] = ACTIONS(2183), + [sym_entity_reference] = ACTIONS(2183), + [sym_numeric_character_reference] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_BANG_LBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [aux_sym_pandoc_str_token1] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2183), + [sym__whitespace] = ACTIONS(2183), + [sym__line_ending] = ACTIONS(2183), + [sym__soft_line_ending] = ACTIONS(2183), + [sym__block_quote_start] = ACTIONS(2183), + [sym_atx_h1_marker] = ACTIONS(2183), + [sym_atx_h2_marker] = ACTIONS(2183), + [sym_atx_h3_marker] = ACTIONS(2183), + [sym_atx_h4_marker] = ACTIONS(2183), + [sym_atx_h5_marker] = ACTIONS(2183), + [sym_atx_h6_marker] = ACTIONS(2183), + [sym__thematic_break] = ACTIONS(2183), + [sym__list_marker_minus] = ACTIONS(2183), + [sym__list_marker_plus] = ACTIONS(2183), + [sym__list_marker_star] = ACTIONS(2183), + [sym__list_marker_parenthesis] = ACTIONS(2183), + [sym__list_marker_dot] = ACTIONS(2183), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_example] = ACTIONS(2183), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2183), + [sym__fenced_code_block_start_backtick] = ACTIONS(2183), + [sym_minus_metadata] = ACTIONS(2183), + [sym__pipe_table_start] = ACTIONS(2183), + [sym__fenced_div_start] = ACTIONS(2183), + [sym_ref_id_specifier] = ACTIONS(2183), + [sym__code_span_start] = ACTIONS(2183), + [sym__html_comment] = ACTIONS(2183), + [sym__autolink] = ACTIONS(2183), + [sym__highlight_span_start] = ACTIONS(2183), + [sym__insert_span_start] = ACTIONS(2183), + [sym__delete_span_start] = ACTIONS(2183), + [sym__edit_comment_span_start] = ACTIONS(2183), + [sym__single_quote_span_open] = ACTIONS(2183), + [sym__double_quote_span_open] = ACTIONS(2183), + [sym__shortcode_open_escaped] = ACTIONS(2183), + [sym__shortcode_open] = ACTIONS(2183), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2183), + [sym__cite_author_in_text] = ACTIONS(2183), + [sym__cite_suppress_author] = ACTIONS(2183), + [sym__strikeout_open] = ACTIONS(2183), + [sym__subscript_open] = ACTIONS(2183), + [sym__superscript_open] = ACTIONS(2183), + [sym__inline_note_start_token] = ACTIONS(2183), + [sym__strong_emphasis_open_star] = ACTIONS(2183), + [sym__strong_emphasis_open_underscore] = ACTIONS(2183), + [sym__emphasis_open_star] = ACTIONS(2183), + [sym__emphasis_open_underscore] = ACTIONS(2183), + [sym_inline_note_reference] = ACTIONS(2183), + [sym_html_element] = ACTIONS(2183), + [sym__pandoc_line_break] = ACTIONS(2183), + [sym_grid_table] = ACTIONS(2183), + }, + [STATE(360)] = { + [ts_builtin_sym_end] = ACTIONS(2237), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2237), + [sym_grid_table] = ACTIONS(2237), }, [STATE(361)] = { - [sym__atx_heading_content] = STATE(3277), - [sym__inlines] = STATE(3277), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(244), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(229), - [sym__eof] = ACTIONS(2995), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(2243), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2243), + [sym_grid_table] = ACTIONS(2243), }, [STATE(362)] = { - [sym__atx_heading_content] = STATE(3190), - [sym__inlines] = STATE(3190), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(246), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(229), - [sym__eof] = ACTIONS(2997), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2447), + [sym_entity_reference] = ACTIONS(2447), + [sym_numeric_character_reference] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_BANG_LBRACK] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [aux_sym_pandoc_str_token1] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2447), + [sym__whitespace] = ACTIONS(2447), + [sym__line_ending] = ACTIONS(2447), + [sym__soft_line_ending] = ACTIONS(2447), + [sym__block_quote_start] = ACTIONS(2447), + [sym_atx_h1_marker] = ACTIONS(2447), + [sym_atx_h2_marker] = ACTIONS(2447), + [sym_atx_h3_marker] = ACTIONS(2447), + [sym_atx_h4_marker] = ACTIONS(2447), + [sym_atx_h5_marker] = ACTIONS(2447), + [sym_atx_h6_marker] = ACTIONS(2447), + [sym__thematic_break] = ACTIONS(2447), + [sym__list_marker_minus] = ACTIONS(2447), + [sym__list_marker_plus] = ACTIONS(2447), + [sym__list_marker_star] = ACTIONS(2447), + [sym__list_marker_parenthesis] = ACTIONS(2447), + [sym__list_marker_dot] = ACTIONS(2447), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_example] = ACTIONS(2447), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2447), + [sym__fenced_code_block_start_backtick] = ACTIONS(2447), + [sym_minus_metadata] = ACTIONS(2447), + [sym__pipe_table_start] = ACTIONS(2447), + [sym__fenced_div_start] = ACTIONS(2447), + [sym_ref_id_specifier] = ACTIONS(2447), + [sym__code_span_start] = ACTIONS(2447), + [sym__html_comment] = ACTIONS(2447), + [sym__autolink] = ACTIONS(2447), + [sym__highlight_span_start] = ACTIONS(2447), + [sym__insert_span_start] = ACTIONS(2447), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2447), + [sym__single_quote_span_open] = ACTIONS(2447), + [sym__double_quote_span_open] = ACTIONS(2447), + [sym__shortcode_open_escaped] = ACTIONS(2447), + [sym__shortcode_open] = ACTIONS(2447), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2447), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2447), + [sym__cite_author_in_text] = ACTIONS(2447), + [sym__cite_suppress_author] = ACTIONS(2447), + [sym__strikeout_open] = ACTIONS(2447), + [sym__subscript_open] = ACTIONS(2447), + [sym__superscript_open] = ACTIONS(2447), + [sym__inline_note_start_token] = ACTIONS(2447), + [sym__strong_emphasis_open_star] = ACTIONS(2447), + [sym__strong_emphasis_open_underscore] = ACTIONS(2447), + [sym__emphasis_open_star] = ACTIONS(2447), + [sym__emphasis_open_underscore] = ACTIONS(2447), + [sym_inline_note_reference] = ACTIONS(2447), + [sym_html_element] = ACTIONS(2447), + [sym__pandoc_line_break] = ACTIONS(2447), + [sym_grid_table] = ACTIONS(2447), }, [STATE(363)] = { - [sym__atx_heading_content] = STATE(3296), - [sym__inlines] = STATE(3296), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(248), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(229), - [sym__eof] = ACTIONS(2999), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(2249), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2249), + [sym_grid_table] = ACTIONS(2249), }, [STATE(364)] = { - [sym__atx_heading_content] = STATE(3065), - [sym__inlines] = STATE(3065), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(275), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(229), - [sym__eof] = ACTIONS(3001), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(2453), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2453), + [sym_grid_table] = ACTIONS(2453), }, [STATE(365)] = { - [sym__atx_heading_content] = STATE(3080), - [sym__inlines] = STATE(3080), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(277), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(229), - [sym__eof] = ACTIONS(3003), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2457), + [sym_entity_reference] = ACTIONS(2457), + [sym_numeric_character_reference] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_BANG_LBRACK] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [aux_sym_pandoc_str_token1] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2457), + [sym__whitespace] = ACTIONS(2457), + [sym__line_ending] = ACTIONS(2457), + [sym__soft_line_ending] = ACTIONS(2457), + [sym__block_quote_start] = ACTIONS(2457), + [sym_atx_h1_marker] = ACTIONS(2457), + [sym_atx_h2_marker] = ACTIONS(2457), + [sym_atx_h3_marker] = ACTIONS(2457), + [sym_atx_h4_marker] = ACTIONS(2457), + [sym_atx_h5_marker] = ACTIONS(2457), + [sym_atx_h6_marker] = ACTIONS(2457), + [sym__thematic_break] = ACTIONS(2457), + [sym__list_marker_minus] = ACTIONS(2457), + [sym__list_marker_plus] = ACTIONS(2457), + [sym__list_marker_star] = ACTIONS(2457), + [sym__list_marker_parenthesis] = ACTIONS(2457), + [sym__list_marker_dot] = ACTIONS(2457), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_example] = ACTIONS(2457), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), + [sym__fenced_code_block_start_backtick] = ACTIONS(2457), + [sym_minus_metadata] = ACTIONS(2457), + [sym__pipe_table_start] = ACTIONS(2457), + [sym__fenced_div_start] = ACTIONS(2457), + [sym_ref_id_specifier] = ACTIONS(2457), + [sym__code_span_start] = ACTIONS(2457), + [sym__html_comment] = ACTIONS(2457), + [sym__autolink] = ACTIONS(2457), + [sym__highlight_span_start] = ACTIONS(2457), + [sym__insert_span_start] = ACTIONS(2457), + [sym__delete_span_start] = ACTIONS(2457), + [sym__edit_comment_span_start] = ACTIONS(2457), + [sym__single_quote_span_open] = ACTIONS(2457), + [sym__double_quote_span_open] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), + [sym__cite_author_in_text] = ACTIONS(2457), + [sym__cite_suppress_author] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(2457), + [sym__subscript_open] = ACTIONS(2457), + [sym__superscript_open] = ACTIONS(2457), + [sym__inline_note_start_token] = ACTIONS(2457), + [sym__strong_emphasis_open_star] = ACTIONS(2457), + [sym__strong_emphasis_open_underscore] = ACTIONS(2457), + [sym__emphasis_open_star] = ACTIONS(2457), + [sym__emphasis_open_underscore] = ACTIONS(2457), + [sym_inline_note_reference] = ACTIONS(2457), + [sym_html_element] = ACTIONS(2457), + [sym__pandoc_line_break] = ACTIONS(2457), + [sym_grid_table] = ACTIONS(2457), }, [STATE(366)] = { + [ts_builtin_sym_end] = ACTIONS(2461), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2461), + [sym_grid_table] = ACTIONS(2461), + }, + [STATE(367)] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), + }, + [STATE(368)] = { + [ts_builtin_sym_end] = ACTIONS(2261), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2261), + [sym_grid_table] = ACTIONS(2261), + }, + [STATE(369)] = { + [ts_builtin_sym_end] = ACTIONS(2619), + [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2619), + [sym_grid_table] = ACTIONS(2619), + }, + [STATE(370)] = { + [ts_builtin_sym_end] = ACTIONS(2267), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2267), + [sym_grid_table] = ACTIONS(2267), + }, + [STATE(371)] = { + [ts_builtin_sym_end] = ACTIONS(2273), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), + }, + [STATE(372)] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [anon_sym_COLON] = ACTIONS(2625), + [sym_entity_reference] = ACTIONS(2625), + [sym_numeric_character_reference] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_BANG_LBRACK] = ACTIONS(2625), + [anon_sym_DOLLAR] = ACTIONS(2627), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [aux_sym_pandoc_str_token1] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2625), + [sym__whitespace] = ACTIONS(2625), + [sym__line_ending] = ACTIONS(2625), + [sym__soft_line_ending] = ACTIONS(2625), + [sym__block_quote_start] = ACTIONS(2625), + [sym_atx_h1_marker] = ACTIONS(2625), + [sym_atx_h2_marker] = ACTIONS(2625), + [sym_atx_h3_marker] = ACTIONS(2625), + [sym_atx_h4_marker] = ACTIONS(2625), + [sym_atx_h5_marker] = ACTIONS(2625), + [sym_atx_h6_marker] = ACTIONS(2625), + [sym__thematic_break] = ACTIONS(2625), + [sym__list_marker_minus] = ACTIONS(2625), + [sym__list_marker_plus] = ACTIONS(2625), + [sym__list_marker_star] = ACTIONS(2625), + [sym__list_marker_parenthesis] = ACTIONS(2625), + [sym__list_marker_dot] = ACTIONS(2625), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2625), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2625), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2625), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2625), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2625), + [sym__list_marker_example] = ACTIONS(2625), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2625), + [sym__fenced_code_block_start_backtick] = ACTIONS(2625), + [sym_minus_metadata] = ACTIONS(2625), + [sym__pipe_table_start] = ACTIONS(2625), + [sym__fenced_div_start] = ACTIONS(2625), + [sym_ref_id_specifier] = ACTIONS(2625), + [sym__code_span_start] = ACTIONS(2625), + [sym__html_comment] = ACTIONS(2625), + [sym__autolink] = ACTIONS(2625), + [sym__highlight_span_start] = ACTIONS(2625), + [sym__insert_span_start] = ACTIONS(2625), + [sym__delete_span_start] = ACTIONS(2625), + [sym__edit_comment_span_start] = ACTIONS(2625), + [sym__single_quote_span_open] = ACTIONS(2625), + [sym__double_quote_span_open] = ACTIONS(2625), + [sym__shortcode_open_escaped] = ACTIONS(2625), + [sym__shortcode_open] = ACTIONS(2625), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2625), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2625), + [sym__cite_author_in_text] = ACTIONS(2625), + [sym__cite_suppress_author] = ACTIONS(2625), + [sym__strikeout_open] = ACTIONS(2625), + [sym__subscript_open] = ACTIONS(2625), + [sym__superscript_open] = ACTIONS(2625), + [sym__inline_note_start_token] = ACTIONS(2625), + [sym__strong_emphasis_open_star] = ACTIONS(2625), + [sym__strong_emphasis_open_underscore] = ACTIONS(2625), + [sym__emphasis_open_star] = ACTIONS(2625), + [sym__emphasis_open_underscore] = ACTIONS(2625), + [sym_inline_note_reference] = ACTIONS(2625), + [sym_html_element] = ACTIONS(2625), + [sym__pandoc_line_break] = ACTIONS(2625), + [sym_grid_table] = ACTIONS(2625), + }, + [STATE(373)] = { + [ts_builtin_sym_end] = ACTIONS(2279), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2279), + [sym_grid_table] = ACTIONS(2279), + }, + [STATE(374)] = { + [ts_builtin_sym_end] = ACTIONS(2289), + [anon_sym_COLON] = ACTIONS(2289), + [sym_entity_reference] = ACTIONS(2289), + [sym_numeric_character_reference] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_BANG_LBRACK] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [aux_sym_pandoc_str_token1] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2289), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym__block_quote_start] = ACTIONS(2289), + [sym_atx_h1_marker] = ACTIONS(2289), + [sym_atx_h2_marker] = ACTIONS(2289), + [sym_atx_h3_marker] = ACTIONS(2289), + [sym_atx_h4_marker] = ACTIONS(2289), + [sym_atx_h5_marker] = ACTIONS(2289), + [sym_atx_h6_marker] = ACTIONS(2289), + [sym__thematic_break] = ACTIONS(2289), + [sym__list_marker_minus] = ACTIONS(2289), + [sym__list_marker_plus] = ACTIONS(2289), + [sym__list_marker_star] = ACTIONS(2289), + [sym__list_marker_parenthesis] = ACTIONS(2289), + [sym__list_marker_dot] = ACTIONS(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] = ACTIONS(2289), + [sym__pipe_table_start] = ACTIONS(2289), + [sym__fenced_div_start] = ACTIONS(2289), + [sym_ref_id_specifier] = ACTIONS(2289), + [sym__code_span_start] = ACTIONS(2289), + [sym__html_comment] = ACTIONS(2289), + [sym__autolink] = ACTIONS(2289), + [sym__highlight_span_start] = ACTIONS(2289), + [sym__insert_span_start] = ACTIONS(2289), + [sym__delete_span_start] = ACTIONS(2289), + [sym__edit_comment_span_start] = ACTIONS(2289), + [sym__single_quote_span_open] = ACTIONS(2289), + [sym__double_quote_span_open] = ACTIONS(2289), + [sym__shortcode_open_escaped] = ACTIONS(2289), + [sym__shortcode_open] = ACTIONS(2289), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), + [sym__cite_author_in_text] = ACTIONS(2289), + [sym__cite_suppress_author] = ACTIONS(2289), + [sym__strikeout_open] = ACTIONS(2289), + [sym__subscript_open] = ACTIONS(2289), + [sym__superscript_open] = ACTIONS(2289), + [sym__inline_note_start_token] = ACTIONS(2289), + [sym__strong_emphasis_open_star] = ACTIONS(2289), + [sym__strong_emphasis_open_underscore] = ACTIONS(2289), + [sym__emphasis_open_star] = ACTIONS(2289), + [sym__emphasis_open_underscore] = ACTIONS(2289), + [sym_inline_note_reference] = ACTIONS(2289), + [sym_html_element] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + }, + [STATE(375)] = { + [ts_builtin_sym_end] = ACTIONS(2483), + [anon_sym_COLON] = ACTIONS(2483), + [sym_entity_reference] = ACTIONS(2483), + [sym_numeric_character_reference] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_BANG_LBRACK] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [aux_sym_pandoc_str_token1] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2483), + [sym__whitespace] = ACTIONS(2483), + [sym__line_ending] = ACTIONS(2483), + [sym__soft_line_ending] = ACTIONS(2483), + [sym__block_quote_start] = ACTIONS(2483), + [sym_atx_h1_marker] = ACTIONS(2483), + [sym_atx_h2_marker] = ACTIONS(2483), + [sym_atx_h3_marker] = ACTIONS(2483), + [sym_atx_h4_marker] = ACTIONS(2483), + [sym_atx_h5_marker] = ACTIONS(2483), + [sym_atx_h6_marker] = ACTIONS(2483), + [sym__thematic_break] = ACTIONS(2483), + [sym__list_marker_minus] = ACTIONS(2483), + [sym__list_marker_plus] = ACTIONS(2483), + [sym__list_marker_star] = ACTIONS(2483), + [sym__list_marker_parenthesis] = ACTIONS(2483), + [sym__list_marker_dot] = ACTIONS(2483), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_example] = ACTIONS(2483), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2483), + [sym__fenced_code_block_start_backtick] = ACTIONS(2483), + [sym_minus_metadata] = ACTIONS(2483), + [sym__pipe_table_start] = ACTIONS(2483), + [sym__fenced_div_start] = ACTIONS(2483), + [sym_ref_id_specifier] = ACTIONS(2483), + [sym__code_span_start] = ACTIONS(2483), + [sym__html_comment] = ACTIONS(2483), + [sym__autolink] = ACTIONS(2483), + [sym__highlight_span_start] = ACTIONS(2483), + [sym__insert_span_start] = ACTIONS(2483), + [sym__delete_span_start] = ACTIONS(2483), + [sym__edit_comment_span_start] = ACTIONS(2483), + [sym__single_quote_span_open] = ACTIONS(2483), + [sym__double_quote_span_open] = ACTIONS(2483), + [sym__shortcode_open_escaped] = ACTIONS(2483), + [sym__shortcode_open] = ACTIONS(2483), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2483), + [sym__cite_author_in_text] = ACTIONS(2483), + [sym__cite_suppress_author] = ACTIONS(2483), + [sym__strikeout_open] = ACTIONS(2483), + [sym__subscript_open] = ACTIONS(2483), + [sym__superscript_open] = ACTIONS(2483), + [sym__inline_note_start_token] = ACTIONS(2483), + [sym__strong_emphasis_open_star] = ACTIONS(2483), + [sym__strong_emphasis_open_underscore] = ACTIONS(2483), + [sym__emphasis_open_star] = ACTIONS(2483), + [sym__emphasis_open_underscore] = ACTIONS(2483), + [sym_inline_note_reference] = ACTIONS(2483), + [sym_html_element] = ACTIONS(2483), + [sym__pandoc_line_break] = ACTIONS(2483), + [sym_grid_table] = ACTIONS(2483), + }, + [STATE(376)] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [anon_sym_COLON] = ACTIONS(2487), + [sym_entity_reference] = ACTIONS(2487), + [sym_numeric_character_reference] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_BANG_LBRACK] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [aux_sym_pandoc_str_token1] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2487), + [sym__whitespace] = ACTIONS(2487), + [sym__line_ending] = ACTIONS(2487), + [sym__soft_line_ending] = ACTIONS(2487), + [sym__block_quote_start] = ACTIONS(2487), + [sym_atx_h1_marker] = ACTIONS(2487), + [sym_atx_h2_marker] = ACTIONS(2487), + [sym_atx_h3_marker] = ACTIONS(2487), + [sym_atx_h4_marker] = ACTIONS(2487), + [sym_atx_h5_marker] = ACTIONS(2487), + [sym_atx_h6_marker] = ACTIONS(2487), + [sym__thematic_break] = ACTIONS(2487), + [sym__list_marker_minus] = ACTIONS(2487), + [sym__list_marker_plus] = ACTIONS(2487), + [sym__list_marker_star] = ACTIONS(2487), + [sym__list_marker_parenthesis] = ACTIONS(2487), + [sym__list_marker_dot] = ACTIONS(2487), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_example] = ACTIONS(2487), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2487), + [sym__fenced_code_block_start_backtick] = ACTIONS(2487), + [sym_minus_metadata] = ACTIONS(2487), + [sym__pipe_table_start] = ACTIONS(2487), + [sym__fenced_div_start] = ACTIONS(2487), + [sym_ref_id_specifier] = ACTIONS(2487), + [sym__code_span_start] = ACTIONS(2487), + [sym__html_comment] = ACTIONS(2487), + [sym__autolink] = ACTIONS(2487), + [sym__highlight_span_start] = ACTIONS(2487), + [sym__insert_span_start] = ACTIONS(2487), + [sym__delete_span_start] = ACTIONS(2487), + [sym__edit_comment_span_start] = ACTIONS(2487), + [sym__single_quote_span_open] = ACTIONS(2487), + [sym__double_quote_span_open] = ACTIONS(2487), + [sym__shortcode_open_escaped] = ACTIONS(2487), + [sym__shortcode_open] = ACTIONS(2487), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2487), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), + [sym__cite_author_in_text] = ACTIONS(2487), + [sym__cite_suppress_author] = ACTIONS(2487), + [sym__strikeout_open] = ACTIONS(2487), + [sym__subscript_open] = ACTIONS(2487), + [sym__superscript_open] = ACTIONS(2487), + [sym__inline_note_start_token] = ACTIONS(2487), + [sym__strong_emphasis_open_star] = ACTIONS(2487), + [sym__strong_emphasis_open_underscore] = ACTIONS(2487), + [sym__emphasis_open_star] = ACTIONS(2487), + [sym__emphasis_open_underscore] = ACTIONS(2487), + [sym_inline_note_reference] = ACTIONS(2487), + [sym_html_element] = ACTIONS(2487), + [sym__pandoc_line_break] = ACTIONS(2487), + [sym_grid_table] = ACTIONS(2487), + }, + [STATE(377)] = { + [ts_builtin_sym_end] = ACTIONS(2491), + [anon_sym_COLON] = ACTIONS(2491), + [sym_entity_reference] = ACTIONS(2491), + [sym_numeric_character_reference] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_BANG_LBRACK] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2493), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [aux_sym_pandoc_str_token1] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2491), + [sym__whitespace] = ACTIONS(2491), + [sym__line_ending] = ACTIONS(2491), + [sym__soft_line_ending] = ACTIONS(2491), + [sym__block_quote_start] = ACTIONS(2491), + [sym_atx_h1_marker] = ACTIONS(2491), + [sym_atx_h2_marker] = ACTIONS(2491), + [sym_atx_h3_marker] = ACTIONS(2491), + [sym_atx_h4_marker] = ACTIONS(2491), + [sym_atx_h5_marker] = ACTIONS(2491), + [sym_atx_h6_marker] = ACTIONS(2491), + [sym__thematic_break] = ACTIONS(2491), + [sym__list_marker_minus] = ACTIONS(2491), + [sym__list_marker_plus] = ACTIONS(2491), + [sym__list_marker_star] = ACTIONS(2491), + [sym__list_marker_parenthesis] = ACTIONS(2491), + [sym__list_marker_dot] = ACTIONS(2491), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_example] = ACTIONS(2491), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2491), + [sym__fenced_code_block_start_backtick] = ACTIONS(2491), + [sym_minus_metadata] = ACTIONS(2491), + [sym__pipe_table_start] = ACTIONS(2491), + [sym__fenced_div_start] = ACTIONS(2491), + [sym_ref_id_specifier] = ACTIONS(2491), + [sym__code_span_start] = ACTIONS(2491), + [sym__html_comment] = ACTIONS(2491), + [sym__autolink] = ACTIONS(2491), + [sym__highlight_span_start] = ACTIONS(2491), + [sym__insert_span_start] = ACTIONS(2491), + [sym__delete_span_start] = ACTIONS(2491), + [sym__edit_comment_span_start] = ACTIONS(2491), + [sym__single_quote_span_open] = ACTIONS(2491), + [sym__double_quote_span_open] = ACTIONS(2491), + [sym__shortcode_open_escaped] = ACTIONS(2491), + [sym__shortcode_open] = ACTIONS(2491), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2491), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2491), + [sym__cite_author_in_text] = ACTIONS(2491), + [sym__cite_suppress_author] = ACTIONS(2491), + [sym__strikeout_open] = ACTIONS(2491), + [sym__subscript_open] = ACTIONS(2491), + [sym__superscript_open] = ACTIONS(2491), + [sym__inline_note_start_token] = ACTIONS(2491), + [sym__strong_emphasis_open_star] = ACTIONS(2491), + [sym__strong_emphasis_open_underscore] = ACTIONS(2491), + [sym__emphasis_open_star] = ACTIONS(2491), + [sym__emphasis_open_underscore] = ACTIONS(2491), + [sym_inline_note_reference] = ACTIONS(2491), + [sym_html_element] = ACTIONS(2491), + [sym__pandoc_line_break] = ACTIONS(2491), + [sym_grid_table] = ACTIONS(2491), + }, + [STATE(378)] = { + [ts_builtin_sym_end] = ACTIONS(2633), + [anon_sym_COLON] = ACTIONS(2633), + [sym_entity_reference] = ACTIONS(2633), + [sym_numeric_character_reference] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_BANG_LBRACK] = ACTIONS(2633), + [anon_sym_DOLLAR] = ACTIONS(2635), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [aux_sym_pandoc_str_token1] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2633), + [sym__whitespace] = ACTIONS(2633), + [sym__line_ending] = ACTIONS(2633), + [sym__soft_line_ending] = ACTIONS(2633), + [sym__block_quote_start] = ACTIONS(2633), + [sym_atx_h1_marker] = ACTIONS(2633), + [sym_atx_h2_marker] = ACTIONS(2633), + [sym_atx_h3_marker] = ACTIONS(2633), + [sym_atx_h4_marker] = ACTIONS(2633), + [sym_atx_h5_marker] = ACTIONS(2633), + [sym_atx_h6_marker] = ACTIONS(2633), + [sym__thematic_break] = ACTIONS(2633), + [sym__list_marker_minus] = ACTIONS(2633), + [sym__list_marker_plus] = ACTIONS(2633), + [sym__list_marker_star] = ACTIONS(2633), + [sym__list_marker_parenthesis] = ACTIONS(2633), + [sym__list_marker_dot] = ACTIONS(2633), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2633), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2633), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2633), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2633), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2633), + [sym__list_marker_example] = ACTIONS(2633), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2633), + [sym__fenced_code_block_start_backtick] = ACTIONS(2633), + [sym_minus_metadata] = ACTIONS(2633), + [sym__pipe_table_start] = ACTIONS(2633), + [sym__fenced_div_start] = ACTIONS(2633), + [sym_ref_id_specifier] = ACTIONS(2633), + [sym__code_span_start] = ACTIONS(2633), + [sym__html_comment] = ACTIONS(2633), + [sym__autolink] = ACTIONS(2633), + [sym__highlight_span_start] = ACTIONS(2633), + [sym__insert_span_start] = ACTIONS(2633), + [sym__delete_span_start] = ACTIONS(2633), + [sym__edit_comment_span_start] = ACTIONS(2633), + [sym__single_quote_span_open] = ACTIONS(2633), + [sym__double_quote_span_open] = ACTIONS(2633), + [sym__shortcode_open_escaped] = ACTIONS(2633), + [sym__shortcode_open] = ACTIONS(2633), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2633), + [sym__cite_author_in_text] = ACTIONS(2633), + [sym__cite_suppress_author] = ACTIONS(2633), + [sym__strikeout_open] = ACTIONS(2633), + [sym__subscript_open] = ACTIONS(2633), + [sym__superscript_open] = ACTIONS(2633), + [sym__inline_note_start_token] = ACTIONS(2633), + [sym__strong_emphasis_open_star] = ACTIONS(2633), + [sym__strong_emphasis_open_underscore] = ACTIONS(2633), + [sym__emphasis_open_star] = ACTIONS(2633), + [sym__emphasis_open_underscore] = ACTIONS(2633), + [sym_inline_note_reference] = ACTIONS(2633), + [sym_html_element] = ACTIONS(2633), + [sym__pandoc_line_break] = ACTIONS(2633), + [sym_grid_table] = ACTIONS(2633), + }, + [STATE(379)] = { + [ts_builtin_sym_end] = ACTIONS(2495), + [anon_sym_COLON] = ACTIONS(2495), + [sym_entity_reference] = ACTIONS(2495), + [sym_numeric_character_reference] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_BANG_LBRACK] = ACTIONS(2495), + [anon_sym_DOLLAR] = ACTIONS(2497), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [aux_sym_pandoc_str_token1] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2495), + [sym__whitespace] = ACTIONS(2495), + [sym__line_ending] = ACTIONS(2495), + [sym__soft_line_ending] = ACTIONS(2495), + [sym__block_quote_start] = ACTIONS(2495), + [sym_atx_h1_marker] = ACTIONS(2495), + [sym_atx_h2_marker] = ACTIONS(2495), + [sym_atx_h3_marker] = ACTIONS(2495), + [sym_atx_h4_marker] = ACTIONS(2495), + [sym_atx_h5_marker] = ACTIONS(2495), + [sym_atx_h6_marker] = ACTIONS(2495), + [sym__thematic_break] = ACTIONS(2495), + [sym__list_marker_minus] = ACTIONS(2495), + [sym__list_marker_plus] = ACTIONS(2495), + [sym__list_marker_star] = ACTIONS(2495), + [sym__list_marker_parenthesis] = ACTIONS(2495), + [sym__list_marker_dot] = ACTIONS(2495), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_example] = ACTIONS(2495), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2495), + [sym__fenced_code_block_start_backtick] = ACTIONS(2495), + [sym_minus_metadata] = ACTIONS(2495), + [sym__pipe_table_start] = ACTIONS(2495), + [sym__fenced_div_start] = ACTIONS(2495), + [sym_ref_id_specifier] = ACTIONS(2495), + [sym__code_span_start] = ACTIONS(2495), + [sym__html_comment] = ACTIONS(2495), + [sym__autolink] = ACTIONS(2495), + [sym__highlight_span_start] = ACTIONS(2495), + [sym__insert_span_start] = ACTIONS(2495), + [sym__delete_span_start] = ACTIONS(2495), + [sym__edit_comment_span_start] = ACTIONS(2495), + [sym__single_quote_span_open] = ACTIONS(2495), + [sym__double_quote_span_open] = ACTIONS(2495), + [sym__shortcode_open_escaped] = ACTIONS(2495), + [sym__shortcode_open] = ACTIONS(2495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2495), + [sym__cite_author_in_text] = ACTIONS(2495), + [sym__cite_suppress_author] = ACTIONS(2495), + [sym__strikeout_open] = ACTIONS(2495), + [sym__subscript_open] = ACTIONS(2495), + [sym__superscript_open] = ACTIONS(2495), + [sym__inline_note_start_token] = ACTIONS(2495), + [sym__strong_emphasis_open_star] = ACTIONS(2495), + [sym__strong_emphasis_open_underscore] = ACTIONS(2495), + [sym__emphasis_open_star] = ACTIONS(2495), + [sym__emphasis_open_underscore] = ACTIONS(2495), + [sym_inline_note_reference] = ACTIONS(2495), + [sym_html_element] = ACTIONS(2495), + [sym__pandoc_line_break] = ACTIONS(2495), + [sym_grid_table] = ACTIONS(2495), + }, + [STATE(380)] = { + [ts_builtin_sym_end] = ACTIONS(2499), + [anon_sym_COLON] = ACTIONS(2499), + [sym_entity_reference] = ACTIONS(2499), + [sym_numeric_character_reference] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_BANG_LBRACK] = ACTIONS(2499), + [anon_sym_DOLLAR] = ACTIONS(2501), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [aux_sym_pandoc_str_token1] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2499), + [sym__whitespace] = ACTIONS(2499), + [sym__line_ending] = ACTIONS(2499), + [sym__soft_line_ending] = ACTIONS(2499), + [sym__block_quote_start] = ACTIONS(2499), + [sym_atx_h1_marker] = ACTIONS(2499), + [sym_atx_h2_marker] = ACTIONS(2499), + [sym_atx_h3_marker] = ACTIONS(2499), + [sym_atx_h4_marker] = ACTIONS(2499), + [sym_atx_h5_marker] = ACTIONS(2499), + [sym_atx_h6_marker] = ACTIONS(2499), + [sym__thematic_break] = ACTIONS(2499), + [sym__list_marker_minus] = ACTIONS(2499), + [sym__list_marker_plus] = ACTIONS(2499), + [sym__list_marker_star] = ACTIONS(2499), + [sym__list_marker_parenthesis] = ACTIONS(2499), + [sym__list_marker_dot] = ACTIONS(2499), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_example] = ACTIONS(2499), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2499), + [sym__fenced_code_block_start_backtick] = ACTIONS(2499), + [sym_minus_metadata] = ACTIONS(2499), + [sym__pipe_table_start] = ACTIONS(2499), + [sym__fenced_div_start] = ACTIONS(2499), + [sym_ref_id_specifier] = ACTIONS(2499), + [sym__code_span_start] = ACTIONS(2499), + [sym__html_comment] = ACTIONS(2499), + [sym__autolink] = ACTIONS(2499), + [sym__highlight_span_start] = ACTIONS(2499), + [sym__insert_span_start] = ACTIONS(2499), + [sym__delete_span_start] = ACTIONS(2499), + [sym__edit_comment_span_start] = ACTIONS(2499), + [sym__single_quote_span_open] = ACTIONS(2499), + [sym__double_quote_span_open] = ACTIONS(2499), + [sym__shortcode_open_escaped] = ACTIONS(2499), + [sym__shortcode_open] = ACTIONS(2499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2499), + [sym__cite_author_in_text] = ACTIONS(2499), + [sym__cite_suppress_author] = ACTIONS(2499), + [sym__strikeout_open] = ACTIONS(2499), + [sym__subscript_open] = ACTIONS(2499), + [sym__superscript_open] = ACTIONS(2499), + [sym__inline_note_start_token] = ACTIONS(2499), + [sym__strong_emphasis_open_star] = ACTIONS(2499), + [sym__strong_emphasis_open_underscore] = ACTIONS(2499), + [sym__emphasis_open_star] = ACTIONS(2499), + [sym__emphasis_open_underscore] = ACTIONS(2499), + [sym_inline_note_reference] = ACTIONS(2499), + [sym_html_element] = ACTIONS(2499), + [sym__pandoc_line_break] = ACTIONS(2499), + [sym_grid_table] = ACTIONS(2499), + }, + [STATE(381)] = { + [ts_builtin_sym_end] = ACTIONS(2643), + [anon_sym_COLON] = ACTIONS(2643), + [sym_entity_reference] = ACTIONS(2643), + [sym_numeric_character_reference] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_BANG_LBRACK] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [aux_sym_pandoc_str_token1] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2643), + [sym__whitespace] = ACTIONS(2643), + [sym__line_ending] = ACTIONS(2643), + [sym__soft_line_ending] = ACTIONS(2643), + [sym__block_quote_start] = ACTIONS(2643), + [sym_atx_h1_marker] = ACTIONS(2643), + [sym_atx_h2_marker] = ACTIONS(2643), + [sym_atx_h3_marker] = ACTIONS(2643), + [sym_atx_h4_marker] = ACTIONS(2643), + [sym_atx_h5_marker] = ACTIONS(2643), + [sym_atx_h6_marker] = ACTIONS(2643), + [sym__thematic_break] = ACTIONS(2643), + [sym__list_marker_minus] = ACTIONS(2643), + [sym__list_marker_plus] = ACTIONS(2643), + [sym__list_marker_star] = ACTIONS(2643), + [sym__list_marker_parenthesis] = ACTIONS(2643), + [sym__list_marker_dot] = ACTIONS(2643), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_example] = ACTIONS(2643), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2643), + [sym__fenced_code_block_start_backtick] = ACTIONS(2643), + [sym_minus_metadata] = ACTIONS(2643), + [sym__pipe_table_start] = ACTIONS(2643), + [sym__fenced_div_start] = ACTIONS(2643), + [sym_ref_id_specifier] = ACTIONS(2643), + [sym__code_span_start] = ACTIONS(2643), + [sym__html_comment] = ACTIONS(2643), + [sym__autolink] = ACTIONS(2643), + [sym__highlight_span_start] = ACTIONS(2643), + [sym__insert_span_start] = ACTIONS(2643), + [sym__delete_span_start] = ACTIONS(2643), + [sym__edit_comment_span_start] = ACTIONS(2643), + [sym__single_quote_span_open] = ACTIONS(2643), + [sym__double_quote_span_open] = ACTIONS(2643), + [sym__shortcode_open_escaped] = ACTIONS(2643), + [sym__shortcode_open] = ACTIONS(2643), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2643), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2643), + [sym__cite_author_in_text] = ACTIONS(2643), + [sym__cite_suppress_author] = ACTIONS(2643), + [sym__strikeout_open] = ACTIONS(2643), + [sym__subscript_open] = ACTIONS(2643), + [sym__superscript_open] = ACTIONS(2643), + [sym__inline_note_start_token] = ACTIONS(2643), + [sym__strong_emphasis_open_star] = ACTIONS(2643), + [sym__strong_emphasis_open_underscore] = ACTIONS(2643), + [sym__emphasis_open_star] = ACTIONS(2643), + [sym__emphasis_open_underscore] = ACTIONS(2643), + [sym_inline_note_reference] = ACTIONS(2643), + [sym_html_element] = ACTIONS(2643), + [sym__pandoc_line_break] = ACTIONS(2643), + [sym_grid_table] = ACTIONS(2643), + }, + [STATE(382)] = { + [ts_builtin_sym_end] = ACTIONS(2651), + [anon_sym_COLON] = ACTIONS(2651), + [sym_entity_reference] = ACTIONS(2651), + [sym_numeric_character_reference] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_BANG_LBRACK] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [aux_sym_pandoc_str_token1] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2651), + [sym__whitespace] = ACTIONS(2651), + [sym__line_ending] = ACTIONS(2651), + [sym__soft_line_ending] = ACTIONS(2651), + [sym__block_quote_start] = ACTIONS(2651), + [sym_atx_h1_marker] = ACTIONS(2651), + [sym_atx_h2_marker] = ACTIONS(2651), + [sym_atx_h3_marker] = ACTIONS(2651), + [sym_atx_h4_marker] = ACTIONS(2651), + [sym_atx_h5_marker] = ACTIONS(2651), + [sym_atx_h6_marker] = ACTIONS(2651), + [sym__thematic_break] = ACTIONS(2651), + [sym__list_marker_minus] = ACTIONS(2651), + [sym__list_marker_plus] = ACTIONS(2651), + [sym__list_marker_star] = ACTIONS(2651), + [sym__list_marker_parenthesis] = ACTIONS(2651), + [sym__list_marker_dot] = ACTIONS(2651), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_example] = ACTIONS(2651), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2651), + [sym__fenced_code_block_start_backtick] = ACTIONS(2651), + [sym_minus_metadata] = ACTIONS(2651), + [sym__pipe_table_start] = ACTIONS(2651), + [sym__fenced_div_start] = ACTIONS(2651), + [sym_ref_id_specifier] = ACTIONS(2651), + [sym__code_span_start] = ACTIONS(2651), + [sym__html_comment] = ACTIONS(2651), + [sym__autolink] = ACTIONS(2651), + [sym__highlight_span_start] = ACTIONS(2651), + [sym__insert_span_start] = ACTIONS(2651), + [sym__delete_span_start] = ACTIONS(2651), + [sym__edit_comment_span_start] = ACTIONS(2651), + [sym__single_quote_span_open] = ACTIONS(2651), + [sym__double_quote_span_open] = ACTIONS(2651), + [sym__shortcode_open_escaped] = ACTIONS(2651), + [sym__shortcode_open] = ACTIONS(2651), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2651), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2651), + [sym__cite_author_in_text] = ACTIONS(2651), + [sym__cite_suppress_author] = ACTIONS(2651), + [sym__strikeout_open] = ACTIONS(2651), + [sym__subscript_open] = ACTIONS(2651), + [sym__superscript_open] = ACTIONS(2651), + [sym__inline_note_start_token] = ACTIONS(2651), + [sym__strong_emphasis_open_star] = ACTIONS(2651), + [sym__strong_emphasis_open_underscore] = ACTIONS(2651), + [sym__emphasis_open_star] = ACTIONS(2651), + [sym__emphasis_open_underscore] = ACTIONS(2651), + [sym_inline_note_reference] = ACTIONS(2651), + [sym_html_element] = ACTIONS(2651), + [sym__pandoc_line_break] = ACTIONS(2651), + [sym_grid_table] = ACTIONS(2651), + }, + [STATE(383)] = { + [ts_builtin_sym_end] = ACTIONS(2503), + [anon_sym_COLON] = ACTIONS(2503), + [sym_entity_reference] = ACTIONS(2503), + [sym_numeric_character_reference] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_BANG_LBRACK] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [aux_sym_pandoc_str_token1] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2503), + [sym__whitespace] = ACTIONS(2503), + [sym__line_ending] = ACTIONS(2503), + [sym__soft_line_ending] = ACTIONS(2503), + [sym__block_quote_start] = ACTIONS(2503), + [sym_atx_h1_marker] = ACTIONS(2503), + [sym_atx_h2_marker] = ACTIONS(2503), + [sym_atx_h3_marker] = ACTIONS(2503), + [sym_atx_h4_marker] = ACTIONS(2503), + [sym_atx_h5_marker] = ACTIONS(2503), + [sym_atx_h6_marker] = ACTIONS(2503), + [sym__thematic_break] = ACTIONS(2503), + [sym__list_marker_minus] = ACTIONS(2503), + [sym__list_marker_plus] = ACTIONS(2503), + [sym__list_marker_star] = ACTIONS(2503), + [sym__list_marker_parenthesis] = ACTIONS(2503), + [sym__list_marker_dot] = ACTIONS(2503), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_example] = ACTIONS(2503), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2503), + [sym__fenced_code_block_start_backtick] = ACTIONS(2503), + [sym_minus_metadata] = ACTIONS(2503), + [sym__pipe_table_start] = ACTIONS(2503), + [sym__fenced_div_start] = ACTIONS(2503), + [sym_ref_id_specifier] = ACTIONS(2503), + [sym__code_span_start] = ACTIONS(2503), + [sym__html_comment] = ACTIONS(2503), + [sym__autolink] = ACTIONS(2503), + [sym__highlight_span_start] = ACTIONS(2503), + [sym__insert_span_start] = ACTIONS(2503), + [sym__delete_span_start] = ACTIONS(2503), + [sym__edit_comment_span_start] = ACTIONS(2503), + [sym__single_quote_span_open] = ACTIONS(2503), + [sym__double_quote_span_open] = ACTIONS(2503), + [sym__shortcode_open_escaped] = ACTIONS(2503), + [sym__shortcode_open] = ACTIONS(2503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2503), + [sym__cite_author_in_text] = ACTIONS(2503), + [sym__cite_suppress_author] = ACTIONS(2503), + [sym__strikeout_open] = ACTIONS(2503), + [sym__subscript_open] = ACTIONS(2503), + [sym__superscript_open] = ACTIONS(2503), + [sym__inline_note_start_token] = ACTIONS(2503), + [sym__strong_emphasis_open_star] = ACTIONS(2503), + [sym__strong_emphasis_open_underscore] = ACTIONS(2503), + [sym__emphasis_open_star] = ACTIONS(2503), + [sym__emphasis_open_underscore] = ACTIONS(2503), + [sym_inline_note_reference] = ACTIONS(2503), + [sym_html_element] = ACTIONS(2503), + [sym__pandoc_line_break] = ACTIONS(2503), + [sym_grid_table] = ACTIONS(2503), + }, + [STATE(384)] = { + [ts_builtin_sym_end] = ACTIONS(2507), + [anon_sym_COLON] = ACTIONS(2507), + [sym_entity_reference] = ACTIONS(2507), + [sym_numeric_character_reference] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_BANG_LBRACK] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [aux_sym_pandoc_str_token1] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2507), + [sym__whitespace] = ACTIONS(2507), + [sym__line_ending] = ACTIONS(2507), + [sym__soft_line_ending] = ACTIONS(2507), + [sym__block_quote_start] = ACTIONS(2507), + [sym_atx_h1_marker] = ACTIONS(2507), + [sym_atx_h2_marker] = ACTIONS(2507), + [sym_atx_h3_marker] = ACTIONS(2507), + [sym_atx_h4_marker] = ACTIONS(2507), + [sym_atx_h5_marker] = ACTIONS(2507), + [sym_atx_h6_marker] = ACTIONS(2507), + [sym__thematic_break] = ACTIONS(2507), + [sym__list_marker_minus] = ACTIONS(2507), + [sym__list_marker_plus] = ACTIONS(2507), + [sym__list_marker_star] = ACTIONS(2507), + [sym__list_marker_parenthesis] = ACTIONS(2507), + [sym__list_marker_dot] = ACTIONS(2507), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_example] = ACTIONS(2507), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2507), + [sym__fenced_code_block_start_backtick] = ACTIONS(2507), + [sym_minus_metadata] = ACTIONS(2507), + [sym__pipe_table_start] = ACTIONS(2507), + [sym__fenced_div_start] = ACTIONS(2507), + [sym_ref_id_specifier] = ACTIONS(2507), + [sym__code_span_start] = ACTIONS(2507), + [sym__html_comment] = ACTIONS(2507), + [sym__autolink] = ACTIONS(2507), + [sym__highlight_span_start] = ACTIONS(2507), + [sym__insert_span_start] = ACTIONS(2507), + [sym__delete_span_start] = ACTIONS(2507), + [sym__edit_comment_span_start] = ACTIONS(2507), + [sym__single_quote_span_open] = ACTIONS(2507), + [sym__double_quote_span_open] = ACTIONS(2507), + [sym__shortcode_open_escaped] = ACTIONS(2507), + [sym__shortcode_open] = ACTIONS(2507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2507), + [sym__cite_author_in_text] = ACTIONS(2507), + [sym__cite_suppress_author] = ACTIONS(2507), + [sym__strikeout_open] = ACTIONS(2507), + [sym__subscript_open] = ACTIONS(2507), + [sym__superscript_open] = ACTIONS(2507), + [sym__inline_note_start_token] = ACTIONS(2507), + [sym__strong_emphasis_open_star] = ACTIONS(2507), + [sym__strong_emphasis_open_underscore] = ACTIONS(2507), + [sym__emphasis_open_star] = ACTIONS(2507), + [sym__emphasis_open_underscore] = ACTIONS(2507), + [sym_inline_note_reference] = ACTIONS(2507), + [sym_html_element] = ACTIONS(2507), + [sym__pandoc_line_break] = ACTIONS(2507), + [sym_grid_table] = ACTIONS(2507), + }, + [STATE(385)] = { + [ts_builtin_sym_end] = ACTIONS(2511), + [anon_sym_COLON] = ACTIONS(2511), + [sym_entity_reference] = ACTIONS(2511), + [sym_numeric_character_reference] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_BANG_LBRACK] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2513), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [aux_sym_pandoc_str_token1] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2511), + [sym__whitespace] = ACTIONS(2511), + [sym__line_ending] = ACTIONS(2511), + [sym__soft_line_ending] = ACTIONS(2511), + [sym__block_quote_start] = ACTIONS(2511), + [sym_atx_h1_marker] = ACTIONS(2511), + [sym_atx_h2_marker] = ACTIONS(2511), + [sym_atx_h3_marker] = ACTIONS(2511), + [sym_atx_h4_marker] = ACTIONS(2511), + [sym_atx_h5_marker] = ACTIONS(2511), + [sym_atx_h6_marker] = ACTIONS(2511), + [sym__thematic_break] = ACTIONS(2511), + [sym__list_marker_minus] = ACTIONS(2511), + [sym__list_marker_plus] = ACTIONS(2511), + [sym__list_marker_star] = ACTIONS(2511), + [sym__list_marker_parenthesis] = ACTIONS(2511), + [sym__list_marker_dot] = ACTIONS(2511), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_example] = ACTIONS(2511), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2511), + [sym__fenced_code_block_start_backtick] = ACTIONS(2511), + [sym_minus_metadata] = ACTIONS(2511), + [sym__pipe_table_start] = ACTIONS(2511), + [sym__fenced_div_start] = ACTIONS(2511), + [sym_ref_id_specifier] = ACTIONS(2511), + [sym__code_span_start] = ACTIONS(2511), + [sym__html_comment] = ACTIONS(2511), + [sym__autolink] = ACTIONS(2511), + [sym__highlight_span_start] = ACTIONS(2511), + [sym__insert_span_start] = ACTIONS(2511), + [sym__delete_span_start] = ACTIONS(2511), + [sym__edit_comment_span_start] = ACTIONS(2511), + [sym__single_quote_span_open] = ACTIONS(2511), + [sym__double_quote_span_open] = ACTIONS(2511), + [sym__shortcode_open_escaped] = ACTIONS(2511), + [sym__shortcode_open] = ACTIONS(2511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2511), + [sym__cite_author_in_text] = ACTIONS(2511), + [sym__cite_suppress_author] = ACTIONS(2511), + [sym__strikeout_open] = ACTIONS(2511), + [sym__subscript_open] = ACTIONS(2511), + [sym__superscript_open] = ACTIONS(2511), + [sym__inline_note_start_token] = ACTIONS(2511), + [sym__strong_emphasis_open_star] = ACTIONS(2511), + [sym__strong_emphasis_open_underscore] = ACTIONS(2511), + [sym__emphasis_open_star] = ACTIONS(2511), + [sym__emphasis_open_underscore] = ACTIONS(2511), + [sym_inline_note_reference] = ACTIONS(2511), + [sym_html_element] = ACTIONS(2511), + [sym__pandoc_line_break] = ACTIONS(2511), + [sym_grid_table] = ACTIONS(2511), + }, + [STATE(386)] = { + [ts_builtin_sym_end] = ACTIONS(2515), + [anon_sym_COLON] = ACTIONS(2515), + [sym_entity_reference] = ACTIONS(2515), + [sym_numeric_character_reference] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_BANG_LBRACK] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [aux_sym_pandoc_str_token1] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2515), + [sym__whitespace] = ACTIONS(2515), + [sym__line_ending] = ACTIONS(2515), + [sym__soft_line_ending] = ACTIONS(2515), + [sym__block_quote_start] = ACTIONS(2515), + [sym_atx_h1_marker] = ACTIONS(2515), + [sym_atx_h2_marker] = ACTIONS(2515), + [sym_atx_h3_marker] = ACTIONS(2515), + [sym_atx_h4_marker] = ACTIONS(2515), + [sym_atx_h5_marker] = ACTIONS(2515), + [sym_atx_h6_marker] = ACTIONS(2515), + [sym__thematic_break] = ACTIONS(2515), + [sym__list_marker_minus] = ACTIONS(2515), + [sym__list_marker_plus] = ACTIONS(2515), + [sym__list_marker_star] = ACTIONS(2515), + [sym__list_marker_parenthesis] = ACTIONS(2515), + [sym__list_marker_dot] = ACTIONS(2515), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_example] = ACTIONS(2515), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2515), + [sym__fenced_code_block_start_backtick] = ACTIONS(2515), + [sym_minus_metadata] = ACTIONS(2515), + [sym__pipe_table_start] = ACTIONS(2515), + [sym__fenced_div_start] = ACTIONS(2515), + [sym_ref_id_specifier] = ACTIONS(2515), + [sym__code_span_start] = ACTIONS(2515), + [sym__html_comment] = ACTIONS(2515), + [sym__autolink] = ACTIONS(2515), + [sym__highlight_span_start] = ACTIONS(2515), + [sym__insert_span_start] = ACTIONS(2515), + [sym__delete_span_start] = ACTIONS(2515), + [sym__edit_comment_span_start] = ACTIONS(2515), + [sym__single_quote_span_open] = ACTIONS(2515), + [sym__double_quote_span_open] = ACTIONS(2515), + [sym__shortcode_open_escaped] = ACTIONS(2515), + [sym__shortcode_open] = ACTIONS(2515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2515), + [sym__cite_author_in_text] = ACTIONS(2515), + [sym__cite_suppress_author] = ACTIONS(2515), + [sym__strikeout_open] = ACTIONS(2515), + [sym__subscript_open] = ACTIONS(2515), + [sym__superscript_open] = ACTIONS(2515), + [sym__inline_note_start_token] = ACTIONS(2515), + [sym__strong_emphasis_open_star] = ACTIONS(2515), + [sym__strong_emphasis_open_underscore] = ACTIONS(2515), + [sym__emphasis_open_star] = ACTIONS(2515), + [sym__emphasis_open_underscore] = ACTIONS(2515), + [sym_inline_note_reference] = ACTIONS(2515), + [sym_html_element] = ACTIONS(2515), + [sym__pandoc_line_break] = ACTIONS(2515), + [sym_grid_table] = ACTIONS(2515), + }, + [STATE(387)] = { + [ts_builtin_sym_end] = ACTIONS(2519), + [anon_sym_COLON] = ACTIONS(2519), + [sym_entity_reference] = ACTIONS(2519), + [sym_numeric_character_reference] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_BANG_LBRACK] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [aux_sym_pandoc_str_token1] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2519), + [sym__whitespace] = ACTIONS(2519), + [sym__line_ending] = ACTIONS(2519), + [sym__soft_line_ending] = ACTIONS(2519), + [sym__block_quote_start] = ACTIONS(2519), + [sym_atx_h1_marker] = ACTIONS(2519), + [sym_atx_h2_marker] = ACTIONS(2519), + [sym_atx_h3_marker] = ACTIONS(2519), + [sym_atx_h4_marker] = ACTIONS(2519), + [sym_atx_h5_marker] = ACTIONS(2519), + [sym_atx_h6_marker] = ACTIONS(2519), + [sym__thematic_break] = ACTIONS(2519), + [sym__list_marker_minus] = ACTIONS(2519), + [sym__list_marker_plus] = ACTIONS(2519), + [sym__list_marker_star] = ACTIONS(2519), + [sym__list_marker_parenthesis] = ACTIONS(2519), + [sym__list_marker_dot] = ACTIONS(2519), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_example] = ACTIONS(2519), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2519), + [sym__fenced_code_block_start_backtick] = ACTIONS(2519), + [sym_minus_metadata] = ACTIONS(2519), + [sym__pipe_table_start] = ACTIONS(2519), + [sym__fenced_div_start] = ACTIONS(2519), + [sym_ref_id_specifier] = ACTIONS(2519), + [sym__code_span_start] = ACTIONS(2519), + [sym__html_comment] = ACTIONS(2519), + [sym__autolink] = ACTIONS(2519), + [sym__highlight_span_start] = ACTIONS(2519), + [sym__insert_span_start] = ACTIONS(2519), + [sym__delete_span_start] = ACTIONS(2519), + [sym__edit_comment_span_start] = ACTIONS(2519), + [sym__single_quote_span_open] = ACTIONS(2519), + [sym__double_quote_span_open] = ACTIONS(2519), + [sym__shortcode_open_escaped] = ACTIONS(2519), + [sym__shortcode_open] = ACTIONS(2519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2519), + [sym__cite_author_in_text] = ACTIONS(2519), + [sym__cite_suppress_author] = ACTIONS(2519), + [sym__strikeout_open] = ACTIONS(2519), + [sym__subscript_open] = ACTIONS(2519), + [sym__superscript_open] = ACTIONS(2519), + [sym__inline_note_start_token] = ACTIONS(2519), + [sym__strong_emphasis_open_star] = ACTIONS(2519), + [sym__strong_emphasis_open_underscore] = ACTIONS(2519), + [sym__emphasis_open_star] = ACTIONS(2519), + [sym__emphasis_open_underscore] = ACTIONS(2519), + [sym_inline_note_reference] = ACTIONS(2519), + [sym_html_element] = ACTIONS(2519), + [sym__pandoc_line_break] = ACTIONS(2519), + [sym_grid_table] = ACTIONS(2519), + }, + [STATE(388)] = { + [ts_builtin_sym_end] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(2523), + [sym_entity_reference] = ACTIONS(2523), + [sym_numeric_character_reference] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_BANG_LBRACK] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [aux_sym_pandoc_str_token1] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2523), + [sym__whitespace] = ACTIONS(2523), + [sym__line_ending] = ACTIONS(2523), + [sym__soft_line_ending] = ACTIONS(2523), + [sym__block_quote_start] = ACTIONS(2523), + [sym_atx_h1_marker] = ACTIONS(2523), + [sym_atx_h2_marker] = ACTIONS(2523), + [sym_atx_h3_marker] = ACTIONS(2523), + [sym_atx_h4_marker] = ACTIONS(2523), + [sym_atx_h5_marker] = ACTIONS(2523), + [sym_atx_h6_marker] = ACTIONS(2523), + [sym__thematic_break] = ACTIONS(2523), + [sym__list_marker_minus] = ACTIONS(2523), + [sym__list_marker_plus] = ACTIONS(2523), + [sym__list_marker_star] = ACTIONS(2523), + [sym__list_marker_parenthesis] = ACTIONS(2523), + [sym__list_marker_dot] = ACTIONS(2523), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_example] = ACTIONS(2523), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2523), + [sym__fenced_code_block_start_backtick] = ACTIONS(2523), + [sym_minus_metadata] = ACTIONS(2523), + [sym__pipe_table_start] = ACTIONS(2523), + [sym__fenced_div_start] = ACTIONS(2523), + [sym_ref_id_specifier] = ACTIONS(2523), + [sym__code_span_start] = ACTIONS(2523), + [sym__html_comment] = ACTIONS(2523), + [sym__autolink] = ACTIONS(2523), + [sym__highlight_span_start] = ACTIONS(2523), + [sym__insert_span_start] = ACTIONS(2523), + [sym__delete_span_start] = ACTIONS(2523), + [sym__edit_comment_span_start] = ACTIONS(2523), + [sym__single_quote_span_open] = ACTIONS(2523), + [sym__double_quote_span_open] = ACTIONS(2523), + [sym__shortcode_open_escaped] = ACTIONS(2523), + [sym__shortcode_open] = ACTIONS(2523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2523), + [sym__cite_author_in_text] = ACTIONS(2523), + [sym__cite_suppress_author] = ACTIONS(2523), + [sym__strikeout_open] = ACTIONS(2523), + [sym__subscript_open] = ACTIONS(2523), + [sym__superscript_open] = ACTIONS(2523), + [sym__inline_note_start_token] = ACTIONS(2523), + [sym__strong_emphasis_open_star] = ACTIONS(2523), + [sym__strong_emphasis_open_underscore] = ACTIONS(2523), + [sym__emphasis_open_star] = ACTIONS(2523), + [sym__emphasis_open_underscore] = ACTIONS(2523), + [sym_inline_note_reference] = ACTIONS(2523), + [sym_html_element] = ACTIONS(2523), + [sym__pandoc_line_break] = ACTIONS(2523), + [sym_grid_table] = ACTIONS(2523), + }, + [STATE(389)] = { + [ts_builtin_sym_end] = ACTIONS(2527), + [anon_sym_COLON] = ACTIONS(2527), + [sym_entity_reference] = ACTIONS(2527), + [sym_numeric_character_reference] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_BANG_LBRACK] = ACTIONS(2527), + [anon_sym_DOLLAR] = ACTIONS(2529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [aux_sym_pandoc_str_token1] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2527), + [sym__whitespace] = ACTIONS(2527), + [sym__line_ending] = ACTIONS(2527), + [sym__soft_line_ending] = ACTIONS(2527), + [sym__block_quote_start] = ACTIONS(2527), + [sym_atx_h1_marker] = ACTIONS(2527), + [sym_atx_h2_marker] = ACTIONS(2527), + [sym_atx_h3_marker] = ACTIONS(2527), + [sym_atx_h4_marker] = ACTIONS(2527), + [sym_atx_h5_marker] = ACTIONS(2527), + [sym_atx_h6_marker] = ACTIONS(2527), + [sym__thematic_break] = ACTIONS(2527), + [sym__list_marker_minus] = ACTIONS(2527), + [sym__list_marker_plus] = ACTIONS(2527), + [sym__list_marker_star] = ACTIONS(2527), + [sym__list_marker_parenthesis] = ACTIONS(2527), + [sym__list_marker_dot] = ACTIONS(2527), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_example] = ACTIONS(2527), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2527), + [sym__fenced_code_block_start_backtick] = ACTIONS(2527), + [sym_minus_metadata] = ACTIONS(2527), + [sym__pipe_table_start] = ACTIONS(2527), + [sym__fenced_div_start] = ACTIONS(2527), + [sym_ref_id_specifier] = ACTIONS(2527), + [sym__code_span_start] = ACTIONS(2527), + [sym__html_comment] = ACTIONS(2527), + [sym__autolink] = ACTIONS(2527), + [sym__highlight_span_start] = ACTIONS(2527), + [sym__insert_span_start] = ACTIONS(2527), + [sym__delete_span_start] = ACTIONS(2527), + [sym__edit_comment_span_start] = ACTIONS(2527), + [sym__single_quote_span_open] = ACTIONS(2527), + [sym__double_quote_span_open] = ACTIONS(2527), + [sym__shortcode_open_escaped] = ACTIONS(2527), + [sym__shortcode_open] = ACTIONS(2527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), + [sym__cite_author_in_text] = ACTIONS(2527), + [sym__cite_suppress_author] = ACTIONS(2527), + [sym__strikeout_open] = ACTIONS(2527), + [sym__subscript_open] = ACTIONS(2527), + [sym__superscript_open] = ACTIONS(2527), + [sym__inline_note_start_token] = ACTIONS(2527), + [sym__strong_emphasis_open_star] = ACTIONS(2527), + [sym__strong_emphasis_open_underscore] = ACTIONS(2527), + [sym__emphasis_open_star] = ACTIONS(2527), + [sym__emphasis_open_underscore] = ACTIONS(2527), + [sym_inline_note_reference] = ACTIONS(2527), + [sym_html_element] = ACTIONS(2527), + [sym__pandoc_line_break] = ACTIONS(2527), + [sym_grid_table] = ACTIONS(2527), + }, + [STATE(390)] = { + [ts_builtin_sym_end] = ACTIONS(2531), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2531), + [sym_grid_table] = ACTIONS(2531), + }, + [STATE(391)] = { + [ts_builtin_sym_end] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(2535), + [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_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] = 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_line_break] = ACTIONS(2535), + [sym_grid_table] = ACTIONS(2535), + }, + [STATE(392)] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2539), + [sym_grid_table] = ACTIONS(2539), + }, + [STATE(393)] = { + [ts_builtin_sym_end] = ACTIONS(2543), + [anon_sym_COLON] = ACTIONS(2543), + [sym_entity_reference] = ACTIONS(2543), + [sym_numeric_character_reference] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2543), + [anon_sym_BANG_LBRACK] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [aux_sym_pandoc_str_token1] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2543), + [sym__whitespace] = ACTIONS(2543), + [sym__line_ending] = ACTIONS(2543), + [sym__soft_line_ending] = ACTIONS(2543), + [sym__block_quote_start] = ACTIONS(2543), + [sym_atx_h1_marker] = ACTIONS(2543), + [sym_atx_h2_marker] = ACTIONS(2543), + [sym_atx_h3_marker] = ACTIONS(2543), + [sym_atx_h4_marker] = ACTIONS(2543), + [sym_atx_h5_marker] = ACTIONS(2543), + [sym_atx_h6_marker] = ACTIONS(2543), + [sym__thematic_break] = ACTIONS(2543), + [sym__list_marker_minus] = ACTIONS(2543), + [sym__list_marker_plus] = ACTIONS(2543), + [sym__list_marker_star] = ACTIONS(2543), + [sym__list_marker_parenthesis] = ACTIONS(2543), + [sym__list_marker_dot] = ACTIONS(2543), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2543), + [sym__list_marker_example] = ACTIONS(2543), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2543), + [sym__fenced_code_block_start_backtick] = ACTIONS(2543), + [sym_minus_metadata] = ACTIONS(2543), + [sym__pipe_table_start] = ACTIONS(2543), + [sym__fenced_div_start] = ACTIONS(2543), + [sym_ref_id_specifier] = ACTIONS(2543), + [sym__code_span_start] = ACTIONS(2543), + [sym__html_comment] = ACTIONS(2543), + [sym__autolink] = ACTIONS(2543), + [sym__highlight_span_start] = ACTIONS(2543), + [sym__insert_span_start] = ACTIONS(2543), + [sym__delete_span_start] = ACTIONS(2543), + [sym__edit_comment_span_start] = ACTIONS(2543), + [sym__single_quote_span_open] = ACTIONS(2543), + [sym__double_quote_span_open] = ACTIONS(2543), + [sym__shortcode_open_escaped] = ACTIONS(2543), + [sym__shortcode_open] = ACTIONS(2543), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2543), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2543), + [sym__cite_author_in_text] = ACTIONS(2543), + [sym__cite_suppress_author] = ACTIONS(2543), + [sym__strikeout_open] = ACTIONS(2543), + [sym__subscript_open] = ACTIONS(2543), + [sym__superscript_open] = ACTIONS(2543), + [sym__inline_note_start_token] = ACTIONS(2543), + [sym__strong_emphasis_open_star] = ACTIONS(2543), + [sym__strong_emphasis_open_underscore] = ACTIONS(2543), + [sym__emphasis_open_star] = ACTIONS(2543), + [sym__emphasis_open_underscore] = ACTIONS(2543), + [sym_inline_note_reference] = ACTIONS(2543), + [sym_html_element] = ACTIONS(2543), + [sym__pandoc_line_break] = ACTIONS(2543), + [sym_grid_table] = ACTIONS(2543), + }, + [STATE(394)] = { + [ts_builtin_sym_end] = ACTIONS(2547), + [anon_sym_COLON] = ACTIONS(2547), + [sym_entity_reference] = ACTIONS(2547), + [sym_numeric_character_reference] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_BANG_LBRACK] = ACTIONS(2547), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [aux_sym_pandoc_str_token1] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2547), + [sym__whitespace] = ACTIONS(2547), + [sym__line_ending] = ACTIONS(2547), + [sym__soft_line_ending] = ACTIONS(2547), + [sym__block_quote_start] = ACTIONS(2547), + [sym_atx_h1_marker] = ACTIONS(2547), + [sym_atx_h2_marker] = ACTIONS(2547), + [sym_atx_h3_marker] = ACTIONS(2547), + [sym_atx_h4_marker] = ACTIONS(2547), + [sym_atx_h5_marker] = ACTIONS(2547), + [sym_atx_h6_marker] = ACTIONS(2547), + [sym__thematic_break] = ACTIONS(2547), + [sym__list_marker_minus] = ACTIONS(2547), + [sym__list_marker_plus] = ACTIONS(2547), + [sym__list_marker_star] = ACTIONS(2547), + [sym__list_marker_parenthesis] = ACTIONS(2547), + [sym__list_marker_dot] = ACTIONS(2547), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2547), + [sym__list_marker_example] = ACTIONS(2547), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2547), + [sym__fenced_code_block_start_backtick] = ACTIONS(2547), + [sym_minus_metadata] = ACTIONS(2547), + [sym__pipe_table_start] = ACTIONS(2547), + [sym__fenced_div_start] = ACTIONS(2547), + [sym_ref_id_specifier] = ACTIONS(2547), + [sym__code_span_start] = ACTIONS(2547), + [sym__html_comment] = ACTIONS(2547), + [sym__autolink] = ACTIONS(2547), + [sym__highlight_span_start] = ACTIONS(2547), + [sym__insert_span_start] = ACTIONS(2547), + [sym__delete_span_start] = ACTIONS(2547), + [sym__edit_comment_span_start] = ACTIONS(2547), + [sym__single_quote_span_open] = ACTIONS(2547), + [sym__double_quote_span_open] = ACTIONS(2547), + [sym__shortcode_open_escaped] = ACTIONS(2547), + [sym__shortcode_open] = ACTIONS(2547), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2547), + [sym__cite_author_in_text] = ACTIONS(2547), + [sym__cite_suppress_author] = ACTIONS(2547), + [sym__strikeout_open] = ACTIONS(2547), + [sym__subscript_open] = ACTIONS(2547), + [sym__superscript_open] = ACTIONS(2547), + [sym__inline_note_start_token] = ACTIONS(2547), + [sym__strong_emphasis_open_star] = ACTIONS(2547), + [sym__strong_emphasis_open_underscore] = ACTIONS(2547), + [sym__emphasis_open_star] = ACTIONS(2547), + [sym__emphasis_open_underscore] = ACTIONS(2547), + [sym_inline_note_reference] = ACTIONS(2547), + [sym_html_element] = ACTIONS(2547), + [sym__pandoc_line_break] = ACTIONS(2547), + [sym_grid_table] = ACTIONS(2547), + }, + [STATE(395)] = { + [ts_builtin_sym_end] = ACTIONS(2437), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2437), + [sym_grid_table] = ACTIONS(2437), + }, + [STATE(396)] = { + [ts_builtin_sym_end] = ACTIONS(2551), + [anon_sym_COLON] = ACTIONS(2551), + [sym_entity_reference] = ACTIONS(2551), + [sym_numeric_character_reference] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_BANG_LBRACK] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [aux_sym_pandoc_str_token1] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2551), + [sym__whitespace] = ACTIONS(2551), + [sym__line_ending] = ACTIONS(2551), + [sym__soft_line_ending] = ACTIONS(2551), + [sym__block_quote_start] = ACTIONS(2551), + [sym_atx_h1_marker] = ACTIONS(2551), + [sym_atx_h2_marker] = ACTIONS(2551), + [sym_atx_h3_marker] = ACTIONS(2551), + [sym_atx_h4_marker] = ACTIONS(2551), + [sym_atx_h5_marker] = ACTIONS(2551), + [sym_atx_h6_marker] = ACTIONS(2551), + [sym__thematic_break] = ACTIONS(2551), + [sym__list_marker_minus] = ACTIONS(2551), + [sym__list_marker_plus] = ACTIONS(2551), + [sym__list_marker_star] = ACTIONS(2551), + [sym__list_marker_parenthesis] = ACTIONS(2551), + [sym__list_marker_dot] = ACTIONS(2551), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2551), + [sym__list_marker_example] = ACTIONS(2551), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2551), + [sym__fenced_code_block_start_backtick] = ACTIONS(2551), + [sym_minus_metadata] = ACTIONS(2551), + [sym__pipe_table_start] = ACTIONS(2551), + [sym__fenced_div_start] = ACTIONS(2551), + [sym_ref_id_specifier] = ACTIONS(2551), + [sym__code_span_start] = ACTIONS(2551), + [sym__html_comment] = ACTIONS(2551), + [sym__autolink] = ACTIONS(2551), + [sym__highlight_span_start] = ACTIONS(2551), + [sym__insert_span_start] = ACTIONS(2551), + [sym__delete_span_start] = ACTIONS(2551), + [sym__edit_comment_span_start] = ACTIONS(2551), + [sym__single_quote_span_open] = ACTIONS(2551), + [sym__double_quote_span_open] = ACTIONS(2551), + [sym__shortcode_open_escaped] = ACTIONS(2551), + [sym__shortcode_open] = ACTIONS(2551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2551), + [sym__cite_author_in_text] = ACTIONS(2551), + [sym__cite_suppress_author] = ACTIONS(2551), + [sym__strikeout_open] = ACTIONS(2551), + [sym__subscript_open] = ACTIONS(2551), + [sym__superscript_open] = ACTIONS(2551), + [sym__inline_note_start_token] = ACTIONS(2551), + [sym__strong_emphasis_open_star] = ACTIONS(2551), + [sym__strong_emphasis_open_underscore] = ACTIONS(2551), + [sym__emphasis_open_star] = ACTIONS(2551), + [sym__emphasis_open_underscore] = ACTIONS(2551), + [sym_inline_note_reference] = ACTIONS(2551), + [sym_html_element] = ACTIONS(2551), + [sym__pandoc_line_break] = ACTIONS(2551), + [sym_grid_table] = ACTIONS(2551), + }, + [STATE(397)] = { + [ts_builtin_sym_end] = ACTIONS(2555), + [anon_sym_COLON] = ACTIONS(2555), + [sym_entity_reference] = ACTIONS(2555), + [sym_numeric_character_reference] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_BANG_LBRACK] = ACTIONS(2555), + [anon_sym_DOLLAR] = ACTIONS(2557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [aux_sym_pandoc_str_token1] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2555), + [sym__whitespace] = ACTIONS(2555), + [sym__line_ending] = ACTIONS(2555), + [sym__soft_line_ending] = ACTIONS(2555), + [sym__block_quote_start] = ACTIONS(2555), + [sym_atx_h1_marker] = ACTIONS(2555), + [sym_atx_h2_marker] = ACTIONS(2555), + [sym_atx_h3_marker] = ACTIONS(2555), + [sym_atx_h4_marker] = ACTIONS(2555), + [sym_atx_h5_marker] = ACTIONS(2555), + [sym_atx_h6_marker] = ACTIONS(2555), + [sym__thematic_break] = ACTIONS(2555), + [sym__list_marker_minus] = ACTIONS(2555), + [sym__list_marker_plus] = ACTIONS(2555), + [sym__list_marker_star] = ACTIONS(2555), + [sym__list_marker_parenthesis] = ACTIONS(2555), + [sym__list_marker_dot] = ACTIONS(2555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2555), + [sym__list_marker_example] = ACTIONS(2555), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2555), + [sym__fenced_code_block_start_backtick] = ACTIONS(2555), + [sym_minus_metadata] = ACTIONS(2555), + [sym__pipe_table_start] = ACTIONS(2555), + [sym__fenced_div_start] = ACTIONS(2555), + [sym_ref_id_specifier] = ACTIONS(2555), + [sym__code_span_start] = ACTIONS(2555), + [sym__html_comment] = ACTIONS(2555), + [sym__autolink] = ACTIONS(2555), + [sym__highlight_span_start] = ACTIONS(2555), + [sym__insert_span_start] = ACTIONS(2555), + [sym__delete_span_start] = ACTIONS(2555), + [sym__edit_comment_span_start] = ACTIONS(2555), + [sym__single_quote_span_open] = ACTIONS(2555), + [sym__double_quote_span_open] = ACTIONS(2555), + [sym__shortcode_open_escaped] = ACTIONS(2555), + [sym__shortcode_open] = ACTIONS(2555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2555), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2555), + [sym__cite_author_in_text] = ACTIONS(2555), + [sym__cite_suppress_author] = ACTIONS(2555), + [sym__strikeout_open] = ACTIONS(2555), + [sym__subscript_open] = ACTIONS(2555), + [sym__superscript_open] = ACTIONS(2555), + [sym__inline_note_start_token] = ACTIONS(2555), + [sym__strong_emphasis_open_star] = ACTIONS(2555), + [sym__strong_emphasis_open_underscore] = ACTIONS(2555), + [sym__emphasis_open_star] = ACTIONS(2555), + [sym__emphasis_open_underscore] = ACTIONS(2555), + [sym_inline_note_reference] = ACTIONS(2555), + [sym_html_element] = ACTIONS(2555), + [sym__pandoc_line_break] = ACTIONS(2555), + [sym_grid_table] = ACTIONS(2555), + }, + [STATE(398)] = { + [ts_builtin_sym_end] = ACTIONS(2559), + [anon_sym_COLON] = ACTIONS(2559), + [sym_entity_reference] = ACTIONS(2559), + [sym_numeric_character_reference] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_BANG_LBRACK] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2561), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [aux_sym_pandoc_str_token1] = ACTIONS(2561), + [anon_sym_PIPE] = ACTIONS(2559), + [sym__whitespace] = ACTIONS(2559), + [sym__line_ending] = ACTIONS(2559), + [sym__soft_line_ending] = ACTIONS(2559), + [sym__block_quote_start] = ACTIONS(2559), + [sym_atx_h1_marker] = ACTIONS(2559), + [sym_atx_h2_marker] = ACTIONS(2559), + [sym_atx_h3_marker] = ACTIONS(2559), + [sym_atx_h4_marker] = ACTIONS(2559), + [sym_atx_h5_marker] = ACTIONS(2559), + [sym_atx_h6_marker] = ACTIONS(2559), + [sym__thematic_break] = ACTIONS(2559), + [sym__list_marker_minus] = ACTIONS(2559), + [sym__list_marker_plus] = ACTIONS(2559), + [sym__list_marker_star] = ACTIONS(2559), + [sym__list_marker_parenthesis] = ACTIONS(2559), + [sym__list_marker_dot] = ACTIONS(2559), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2559), + [sym__list_marker_example] = ACTIONS(2559), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2559), + [sym__fenced_code_block_start_backtick] = ACTIONS(2559), + [sym_minus_metadata] = ACTIONS(2559), + [sym__pipe_table_start] = ACTIONS(2559), + [sym__fenced_div_start] = ACTIONS(2559), + [sym_ref_id_specifier] = ACTIONS(2559), + [sym__code_span_start] = ACTIONS(2559), + [sym__html_comment] = ACTIONS(2559), + [sym__autolink] = ACTIONS(2559), + [sym__highlight_span_start] = ACTIONS(2559), + [sym__insert_span_start] = ACTIONS(2559), + [sym__delete_span_start] = ACTIONS(2559), + [sym__edit_comment_span_start] = ACTIONS(2559), + [sym__single_quote_span_open] = ACTIONS(2559), + [sym__double_quote_span_open] = ACTIONS(2559), + [sym__shortcode_open_escaped] = ACTIONS(2559), + [sym__shortcode_open] = ACTIONS(2559), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2559), + [sym__cite_author_in_text] = ACTIONS(2559), + [sym__cite_suppress_author] = ACTIONS(2559), + [sym__strikeout_open] = ACTIONS(2559), + [sym__subscript_open] = ACTIONS(2559), + [sym__superscript_open] = ACTIONS(2559), + [sym__inline_note_start_token] = ACTIONS(2559), + [sym__strong_emphasis_open_star] = ACTIONS(2559), + [sym__strong_emphasis_open_underscore] = ACTIONS(2559), + [sym__emphasis_open_star] = ACTIONS(2559), + [sym__emphasis_open_underscore] = ACTIONS(2559), + [sym_inline_note_reference] = ACTIONS(2559), + [sym_html_element] = ACTIONS(2559), + [sym__pandoc_line_break] = ACTIONS(2559), + [sym_grid_table] = ACTIONS(2559), + }, + [STATE(399)] = { + [ts_builtin_sym_end] = ACTIONS(2563), + [anon_sym_COLON] = ACTIONS(2563), + [sym_entity_reference] = ACTIONS(2563), + [sym_numeric_character_reference] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_BANG_LBRACK] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [aux_sym_pandoc_str_token1] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2563), + [sym__whitespace] = ACTIONS(2563), + [sym__line_ending] = ACTIONS(2563), + [sym__soft_line_ending] = ACTIONS(2563), + [sym__block_quote_start] = ACTIONS(2563), + [sym_atx_h1_marker] = ACTIONS(2563), + [sym_atx_h2_marker] = ACTIONS(2563), + [sym_atx_h3_marker] = ACTIONS(2563), + [sym_atx_h4_marker] = ACTIONS(2563), + [sym_atx_h5_marker] = ACTIONS(2563), + [sym_atx_h6_marker] = ACTIONS(2563), + [sym__thematic_break] = ACTIONS(2563), + [sym__list_marker_minus] = ACTIONS(2563), + [sym__list_marker_plus] = ACTIONS(2563), + [sym__list_marker_star] = ACTIONS(2563), + [sym__list_marker_parenthesis] = ACTIONS(2563), + [sym__list_marker_dot] = ACTIONS(2563), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2563), + [sym__list_marker_example] = ACTIONS(2563), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2563), + [sym__fenced_code_block_start_backtick] = ACTIONS(2563), + [sym_minus_metadata] = ACTIONS(2563), + [sym__pipe_table_start] = ACTIONS(2563), + [sym__fenced_div_start] = ACTIONS(2563), + [sym_ref_id_specifier] = ACTIONS(2563), + [sym__code_span_start] = ACTIONS(2563), + [sym__html_comment] = ACTIONS(2563), + [sym__autolink] = ACTIONS(2563), + [sym__highlight_span_start] = ACTIONS(2563), + [sym__insert_span_start] = ACTIONS(2563), + [sym__delete_span_start] = ACTIONS(2563), + [sym__edit_comment_span_start] = ACTIONS(2563), + [sym__single_quote_span_open] = ACTIONS(2563), + [sym__double_quote_span_open] = ACTIONS(2563), + [sym__shortcode_open_escaped] = ACTIONS(2563), + [sym__shortcode_open] = ACTIONS(2563), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2563), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2563), + [sym__cite_author_in_text] = ACTIONS(2563), + [sym__cite_suppress_author] = ACTIONS(2563), + [sym__strikeout_open] = ACTIONS(2563), + [sym__subscript_open] = ACTIONS(2563), + [sym__superscript_open] = ACTIONS(2563), + [sym__inline_note_start_token] = ACTIONS(2563), + [sym__strong_emphasis_open_star] = ACTIONS(2563), + [sym__strong_emphasis_open_underscore] = ACTIONS(2563), + [sym__emphasis_open_star] = ACTIONS(2563), + [sym__emphasis_open_underscore] = ACTIONS(2563), + [sym_inline_note_reference] = ACTIONS(2563), + [sym_html_element] = ACTIONS(2563), + [sym__pandoc_line_break] = ACTIONS(2563), + [sym_grid_table] = ACTIONS(2563), + }, + [STATE(400)] = { + [ts_builtin_sym_end] = ACTIONS(2567), + [anon_sym_COLON] = ACTIONS(2567), + [sym_entity_reference] = ACTIONS(2567), + [sym_numeric_character_reference] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_BANG_LBRACK] = ACTIONS(2567), + [anon_sym_DOLLAR] = ACTIONS(2569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [aux_sym_pandoc_str_token1] = ACTIONS(2569), + [anon_sym_PIPE] = ACTIONS(2567), + [sym__whitespace] = ACTIONS(2567), + [sym__line_ending] = ACTIONS(2567), + [sym__soft_line_ending] = ACTIONS(2567), + [sym__block_quote_start] = ACTIONS(2567), + [sym_atx_h1_marker] = ACTIONS(2567), + [sym_atx_h2_marker] = ACTIONS(2567), + [sym_atx_h3_marker] = ACTIONS(2567), + [sym_atx_h4_marker] = ACTIONS(2567), + [sym_atx_h5_marker] = ACTIONS(2567), + [sym_atx_h6_marker] = ACTIONS(2567), + [sym__thematic_break] = ACTIONS(2567), + [sym__list_marker_minus] = ACTIONS(2567), + [sym__list_marker_plus] = ACTIONS(2567), + [sym__list_marker_star] = ACTIONS(2567), + [sym__list_marker_parenthesis] = ACTIONS(2567), + [sym__list_marker_dot] = ACTIONS(2567), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2567), + [sym__list_marker_example] = ACTIONS(2567), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2567), + [sym__fenced_code_block_start_backtick] = ACTIONS(2567), + [sym_minus_metadata] = ACTIONS(2567), + [sym__pipe_table_start] = ACTIONS(2567), + [sym__fenced_div_start] = ACTIONS(2567), + [sym_ref_id_specifier] = ACTIONS(2567), + [sym__code_span_start] = ACTIONS(2567), + [sym__html_comment] = ACTIONS(2567), + [sym__autolink] = ACTIONS(2567), + [sym__highlight_span_start] = ACTIONS(2567), + [sym__insert_span_start] = ACTIONS(2567), + [sym__delete_span_start] = ACTIONS(2567), + [sym__edit_comment_span_start] = ACTIONS(2567), + [sym__single_quote_span_open] = ACTIONS(2567), + [sym__double_quote_span_open] = ACTIONS(2567), + [sym__shortcode_open_escaped] = ACTIONS(2567), + [sym__shortcode_open] = ACTIONS(2567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2567), + [sym__cite_author_in_text] = ACTIONS(2567), + [sym__cite_suppress_author] = ACTIONS(2567), + [sym__strikeout_open] = ACTIONS(2567), + [sym__subscript_open] = ACTIONS(2567), + [sym__superscript_open] = ACTIONS(2567), + [sym__inline_note_start_token] = ACTIONS(2567), + [sym__strong_emphasis_open_star] = ACTIONS(2567), + [sym__strong_emphasis_open_underscore] = ACTIONS(2567), + [sym__emphasis_open_star] = ACTIONS(2567), + [sym__emphasis_open_underscore] = ACTIONS(2567), + [sym_inline_note_reference] = ACTIONS(2567), + [sym_html_element] = ACTIONS(2567), + [sym__pandoc_line_break] = ACTIONS(2567), + [sym_grid_table] = ACTIONS(2567), + }, + [STATE(401)] = { [ts_builtin_sym_end] = ACTIONS(2571), [anon_sym_COLON] = ACTIONS(2571), [sym_entity_reference] = ACTIONS(2571), @@ -55891,8 +58594,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2571), [sym_html_element] = ACTIONS(2571), [sym__pandoc_line_break] = ACTIONS(2571), + [sym_grid_table] = ACTIONS(2571), }, - [STATE(367)] = { + [STATE(402)] = { [ts_builtin_sym_end] = ACTIONS(2575), [anon_sym_COLON] = ACTIONS(2575), [sym_entity_reference] = ACTIONS(2575), @@ -55958,1416 +58662,1165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2575), [sym_html_element] = ACTIONS(2575), [sym__pandoc_line_break] = ACTIONS(2575), + [sym_grid_table] = ACTIONS(2575), }, - [STATE(368)] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [anon_sym_COLON] = 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), - [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_line_break] = ACTIONS(2341), - }, - [STATE(369)] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [anon_sym_COLON] = 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_line_break] = ACTIONS(2347), - }, - [STATE(370)] = { - [ts_builtin_sym_end] = ACTIONS(2721), - [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2721), - }, - [STATE(371)] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), - }, - [STATE(372)] = { - [sym__atx_heading_content] = STATE(3201), - [sym__inlines] = STATE(3201), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(470), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(3005), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(403)] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [anon_sym_COLON] = ACTIONS(2579), + [sym_entity_reference] = ACTIONS(2579), + [sym_numeric_character_reference] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_BANG_LBRACK] = ACTIONS(2579), + [anon_sym_DOLLAR] = ACTIONS(2581), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [aux_sym_pandoc_str_token1] = ACTIONS(2581), + [anon_sym_PIPE] = ACTIONS(2579), + [sym__whitespace] = ACTIONS(2579), + [sym__line_ending] = ACTIONS(2579), + [sym__soft_line_ending] = ACTIONS(2579), + [sym__block_quote_start] = ACTIONS(2579), + [sym_atx_h1_marker] = ACTIONS(2579), + [sym_atx_h2_marker] = ACTIONS(2579), + [sym_atx_h3_marker] = ACTIONS(2579), + [sym_atx_h4_marker] = ACTIONS(2579), + [sym_atx_h5_marker] = ACTIONS(2579), + [sym_atx_h6_marker] = ACTIONS(2579), + [sym__thematic_break] = ACTIONS(2579), + [sym__list_marker_minus] = ACTIONS(2579), + [sym__list_marker_plus] = ACTIONS(2579), + [sym__list_marker_star] = ACTIONS(2579), + [sym__list_marker_parenthesis] = ACTIONS(2579), + [sym__list_marker_dot] = ACTIONS(2579), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2579), + [sym__list_marker_example] = ACTIONS(2579), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2579), + [sym__fenced_code_block_start_backtick] = ACTIONS(2579), + [sym_minus_metadata] = ACTIONS(2579), + [sym__pipe_table_start] = ACTIONS(2579), + [sym__fenced_div_start] = ACTIONS(2579), + [sym_ref_id_specifier] = ACTIONS(2579), + [sym__code_span_start] = ACTIONS(2579), + [sym__html_comment] = ACTIONS(2579), + [sym__autolink] = ACTIONS(2579), + [sym__highlight_span_start] = ACTIONS(2579), + [sym__insert_span_start] = ACTIONS(2579), + [sym__delete_span_start] = ACTIONS(2579), + [sym__edit_comment_span_start] = ACTIONS(2579), + [sym__single_quote_span_open] = ACTIONS(2579), + [sym__double_quote_span_open] = ACTIONS(2579), + [sym__shortcode_open_escaped] = ACTIONS(2579), + [sym__shortcode_open] = ACTIONS(2579), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2579), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2579), + [sym__cite_author_in_text] = ACTIONS(2579), + [sym__cite_suppress_author] = ACTIONS(2579), + [sym__strikeout_open] = ACTIONS(2579), + [sym__subscript_open] = ACTIONS(2579), + [sym__superscript_open] = ACTIONS(2579), + [sym__inline_note_start_token] = ACTIONS(2579), + [sym__strong_emphasis_open_star] = ACTIONS(2579), + [sym__strong_emphasis_open_underscore] = ACTIONS(2579), + [sym__emphasis_open_star] = ACTIONS(2579), + [sym__emphasis_open_underscore] = ACTIONS(2579), + [sym_inline_note_reference] = ACTIONS(2579), + [sym_html_element] = ACTIONS(2579), + [sym__pandoc_line_break] = ACTIONS(2579), + [sym_grid_table] = ACTIONS(2579), }, - [STATE(373)] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [anon_sym_COLON] = ACTIONS(2359), - [sym_entity_reference] = ACTIONS(2359), - [sym_numeric_character_reference] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_BANG_LBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [aux_sym_pandoc_str_token1] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2359), - [sym__whitespace] = ACTIONS(2359), - [sym__line_ending] = ACTIONS(2359), - [sym__soft_line_ending] = ACTIONS(2359), - [sym__block_quote_start] = ACTIONS(2359), - [sym_atx_h1_marker] = ACTIONS(2359), - [sym_atx_h2_marker] = ACTIONS(2359), - [sym_atx_h3_marker] = ACTIONS(2359), - [sym_atx_h4_marker] = ACTIONS(2359), - [sym_atx_h5_marker] = ACTIONS(2359), - [sym_atx_h6_marker] = ACTIONS(2359), - [sym__thematic_break] = ACTIONS(2359), - [sym__list_marker_minus] = ACTIONS(2359), - [sym__list_marker_plus] = ACTIONS(2359), - [sym__list_marker_star] = ACTIONS(2359), - [sym__list_marker_parenthesis] = ACTIONS(2359), - [sym__list_marker_dot] = ACTIONS(2359), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_example] = ACTIONS(2359), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), - [sym__fenced_code_block_start_backtick] = ACTIONS(2359), - [sym_minus_metadata] = ACTIONS(2359), - [sym__pipe_table_start] = ACTIONS(2359), - [sym__fenced_div_start] = ACTIONS(2359), - [sym_ref_id_specifier] = ACTIONS(2359), - [sym__code_span_start] = ACTIONS(2359), - [sym__html_comment] = ACTIONS(2359), - [sym__autolink] = ACTIONS(2359), - [sym__highlight_span_start] = ACTIONS(2359), - [sym__insert_span_start] = ACTIONS(2359), - [sym__delete_span_start] = ACTIONS(2359), - [sym__edit_comment_span_start] = ACTIONS(2359), - [sym__single_quote_span_open] = ACTIONS(2359), - [sym__double_quote_span_open] = ACTIONS(2359), - [sym__shortcode_open_escaped] = ACTIONS(2359), - [sym__shortcode_open] = ACTIONS(2359), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), - [sym__cite_author_in_text] = ACTIONS(2359), - [sym__cite_suppress_author] = ACTIONS(2359), - [sym__strikeout_open] = ACTIONS(2359), - [sym__subscript_open] = ACTIONS(2359), - [sym__superscript_open] = ACTIONS(2359), - [sym__inline_note_start_token] = ACTIONS(2359), - [sym__strong_emphasis_open_star] = ACTIONS(2359), - [sym__strong_emphasis_open_underscore] = ACTIONS(2359), - [sym__emphasis_open_star] = ACTIONS(2359), - [sym__emphasis_open_underscore] = ACTIONS(2359), - [sym_inline_note_reference] = ACTIONS(2359), - [sym_html_element] = ACTIONS(2359), - [sym__pandoc_line_break] = ACTIONS(2359), + [STATE(404)] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(2673), + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym_minus_metadata] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), + [sym_grid_table] = ACTIONS(2673), }, - [STATE(374)] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [anon_sym_COLON] = ACTIONS(2901), - [sym_entity_reference] = ACTIONS(2901), - [sym_numeric_character_reference] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [aux_sym_pandoc_str_token1] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2901), - [sym__whitespace] = ACTIONS(2901), - [sym__line_ending] = ACTIONS(2901), - [sym__soft_line_ending] = ACTIONS(2901), - [sym__block_quote_start] = ACTIONS(2901), - [sym_atx_h1_marker] = ACTIONS(2901), - [sym_atx_h2_marker] = ACTIONS(2901), - [sym_atx_h3_marker] = ACTIONS(2901), - [sym_atx_h4_marker] = ACTIONS(2901), - [sym_atx_h5_marker] = ACTIONS(2901), - [sym_atx_h6_marker] = ACTIONS(2901), - [sym__thematic_break] = ACTIONS(2901), - [sym__list_marker_minus] = ACTIONS(2901), - [sym__list_marker_plus] = ACTIONS(2901), - [sym__list_marker_star] = ACTIONS(2901), - [sym__list_marker_parenthesis] = ACTIONS(2901), - [sym__list_marker_dot] = ACTIONS(2901), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_example] = ACTIONS(2901), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2901), - [sym__fenced_code_block_start_backtick] = ACTIONS(2901), - [sym_minus_metadata] = ACTIONS(2901), - [sym__pipe_table_start] = ACTIONS(2901), - [sym__fenced_div_start] = ACTIONS(2901), - [sym_ref_id_specifier] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(2901), - [sym__html_comment] = ACTIONS(2901), - [sym__autolink] = ACTIONS(2901), - [sym__highlight_span_start] = ACTIONS(2901), - [sym__insert_span_start] = ACTIONS(2901), - [sym__delete_span_start] = ACTIONS(2901), - [sym__edit_comment_span_start] = ACTIONS(2901), - [sym__single_quote_span_open] = ACTIONS(2901), - [sym__double_quote_span_open] = ACTIONS(2901), - [sym__shortcode_open_escaped] = ACTIONS(2901), - [sym__shortcode_open] = ACTIONS(2901), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2901), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2901), - [sym__cite_author_in_text] = ACTIONS(2901), - [sym__cite_suppress_author] = ACTIONS(2901), - [sym__strikeout_open] = ACTIONS(2901), - [sym__subscript_open] = ACTIONS(2901), - [sym__superscript_open] = ACTIONS(2901), - [sym__inline_note_start_token] = ACTIONS(2901), - [sym__strong_emphasis_open_star] = ACTIONS(2901), - [sym__strong_emphasis_open_underscore] = ACTIONS(2901), - [sym__emphasis_open_star] = ACTIONS(2901), - [sym__emphasis_open_underscore] = ACTIONS(2901), - [sym_inline_note_reference] = ACTIONS(2901), - [sym_html_element] = ACTIONS(2901), - [sym__pandoc_line_break] = ACTIONS(2901), + [STATE(405)] = { + [anon_sym_COLON] = ACTIONS(2705), + [sym_entity_reference] = ACTIONS(2705), + [sym_numeric_character_reference] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_BANG_LBRACK] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(2707), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [aux_sym_pandoc_str_token1] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2705), + [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] = ACTIONS(2705), + [sym__pipe_table_start] = ACTIONS(2705), + [sym__fenced_div_start] = ACTIONS(2705), + [sym_ref_id_specifier] = ACTIONS(2705), + [sym__code_span_start] = ACTIONS(2705), + [sym__html_comment] = ACTIONS(2705), + [sym__autolink] = ACTIONS(2705), + [sym__highlight_span_start] = ACTIONS(2705), + [sym__insert_span_start] = ACTIONS(2705), + [sym__delete_span_start] = ACTIONS(2705), + [sym__edit_comment_span_start] = ACTIONS(2705), + [sym__single_quote_span_open] = ACTIONS(2705), + [sym__double_quote_span_open] = ACTIONS(2705), + [sym__shortcode_open_escaped] = ACTIONS(2705), + [sym__shortcode_open] = ACTIONS(2705), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2705), + [sym__cite_author_in_text] = ACTIONS(2705), + [sym__cite_suppress_author] = ACTIONS(2705), + [sym__strikeout_open] = ACTIONS(2705), + [sym__subscript_open] = ACTIONS(2705), + [sym__superscript_open] = ACTIONS(2705), + [sym__inline_note_start_token] = ACTIONS(2705), + [sym__strong_emphasis_open_star] = ACTIONS(2705), + [sym__strong_emphasis_open_underscore] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2705), + [sym__emphasis_open_underscore] = ACTIONS(2705), + [sym_inline_note_reference] = ACTIONS(2705), + [sym_html_element] = ACTIONS(2705), + [sym__pandoc_line_break] = ACTIONS(2705), + [sym_grid_table] = ACTIONS(2705), }, - [STATE(375)] = { - [ts_builtin_sym_end] = ACTIONS(2365), - [anon_sym_COLON] = ACTIONS(2365), - [sym_entity_reference] = ACTIONS(2365), - [sym_numeric_character_reference] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_BANG_LBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [aux_sym_pandoc_str_token1] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2365), - [sym__whitespace] = ACTIONS(2365), - [sym__line_ending] = ACTIONS(2365), - [sym__soft_line_ending] = ACTIONS(2365), - [sym__block_quote_start] = ACTIONS(2365), - [sym_atx_h1_marker] = ACTIONS(2365), - [sym_atx_h2_marker] = ACTIONS(2365), - [sym_atx_h3_marker] = ACTIONS(2365), - [sym_atx_h4_marker] = ACTIONS(2365), - [sym_atx_h5_marker] = ACTIONS(2365), - [sym_atx_h6_marker] = ACTIONS(2365), - [sym__thematic_break] = ACTIONS(2365), - [sym__list_marker_minus] = ACTIONS(2365), - [sym__list_marker_plus] = ACTIONS(2365), - [sym__list_marker_star] = ACTIONS(2365), - [sym__list_marker_parenthesis] = ACTIONS(2365), - [sym__list_marker_dot] = ACTIONS(2365), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_example] = ACTIONS(2365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), - [sym__fenced_code_block_start_backtick] = ACTIONS(2365), - [sym_minus_metadata] = ACTIONS(2365), - [sym__pipe_table_start] = ACTIONS(2365), - [sym__fenced_div_start] = ACTIONS(2365), - [sym_ref_id_specifier] = ACTIONS(2365), - [sym__code_span_start] = ACTIONS(2365), - [sym__html_comment] = ACTIONS(2365), - [sym__autolink] = ACTIONS(2365), - [sym__highlight_span_start] = ACTIONS(2365), - [sym__insert_span_start] = ACTIONS(2365), - [sym__delete_span_start] = ACTIONS(2365), - [sym__edit_comment_span_start] = ACTIONS(2365), - [sym__single_quote_span_open] = ACTIONS(2365), - [sym__double_quote_span_open] = ACTIONS(2365), - [sym__shortcode_open_escaped] = ACTIONS(2365), - [sym__shortcode_open] = ACTIONS(2365), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), - [sym__cite_author_in_text] = ACTIONS(2365), - [sym__cite_suppress_author] = ACTIONS(2365), - [sym__strikeout_open] = ACTIONS(2365), - [sym__subscript_open] = ACTIONS(2365), - [sym__superscript_open] = ACTIONS(2365), - [sym__inline_note_start_token] = ACTIONS(2365), - [sym__strong_emphasis_open_star] = ACTIONS(2365), - [sym__strong_emphasis_open_underscore] = ACTIONS(2365), - [sym__emphasis_open_star] = ACTIONS(2365), - [sym__emphasis_open_underscore] = ACTIONS(2365), - [sym_inline_note_reference] = ACTIONS(2365), - [sym_html_element] = ACTIONS(2365), - [sym__pandoc_line_break] = ACTIONS(2365), + [STATE(406)] = { + [anon_sym_COLON] = ACTIONS(2789), + [sym_entity_reference] = ACTIONS(2789), + [sym_numeric_character_reference] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_BANG_LBRACK] = ACTIONS(2789), + [anon_sym_DOLLAR] = ACTIONS(2791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [aux_sym_pandoc_str_token1] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2789), + [sym__whitespace] = ACTIONS(2789), + [sym__line_ending] = ACTIONS(2789), + [sym__soft_line_ending] = ACTIONS(2789), + [sym__block_close] = ACTIONS(2789), + [sym__block_quote_start] = ACTIONS(2789), + [sym_atx_h1_marker] = ACTIONS(2789), + [sym_atx_h2_marker] = ACTIONS(2789), + [sym_atx_h3_marker] = ACTIONS(2789), + [sym_atx_h4_marker] = ACTIONS(2789), + [sym_atx_h5_marker] = ACTIONS(2789), + [sym_atx_h6_marker] = ACTIONS(2789), + [sym__thematic_break] = ACTIONS(2789), + [sym__list_marker_minus] = ACTIONS(2789), + [sym__list_marker_plus] = ACTIONS(2789), + [sym__list_marker_star] = ACTIONS(2789), + [sym__list_marker_parenthesis] = ACTIONS(2789), + [sym__list_marker_dot] = ACTIONS(2789), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_example] = ACTIONS(2789), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2789), + [sym__fenced_code_block_start_backtick] = ACTIONS(2789), + [sym_minus_metadata] = ACTIONS(2789), + [sym__pipe_table_start] = ACTIONS(2789), + [sym__fenced_div_start] = ACTIONS(2789), + [sym_ref_id_specifier] = ACTIONS(2789), + [sym__code_span_start] = ACTIONS(2789), + [sym__html_comment] = ACTIONS(2789), + [sym__autolink] = ACTIONS(2789), + [sym__highlight_span_start] = ACTIONS(2789), + [sym__insert_span_start] = ACTIONS(2789), + [sym__delete_span_start] = ACTIONS(2789), + [sym__edit_comment_span_start] = ACTIONS(2789), + [sym__single_quote_span_open] = ACTIONS(2789), + [sym__double_quote_span_open] = ACTIONS(2789), + [sym__shortcode_open_escaped] = ACTIONS(2789), + [sym__shortcode_open] = ACTIONS(2789), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2789), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2789), + [sym__cite_author_in_text] = ACTIONS(2789), + [sym__cite_suppress_author] = ACTIONS(2789), + [sym__strikeout_open] = ACTIONS(2789), + [sym__subscript_open] = ACTIONS(2789), + [sym__superscript_open] = ACTIONS(2789), + [sym__inline_note_start_token] = ACTIONS(2789), + [sym__strong_emphasis_open_star] = ACTIONS(2789), + [sym__strong_emphasis_open_underscore] = ACTIONS(2789), + [sym__emphasis_open_star] = ACTIONS(2789), + [sym__emphasis_open_underscore] = ACTIONS(2789), + [sym_inline_note_reference] = ACTIONS(2789), + [sym_html_element] = ACTIONS(2789), + [sym__pandoc_line_break] = ACTIONS(2789), + [sym_grid_table] = ACTIONS(2789), }, - [STATE(376)] = { - [sym__atx_heading_content] = STATE(3255), - [sym__inlines] = STATE(3255), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(442), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(3007), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(407)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2437), + [sym_grid_table] = ACTIONS(2437), }, - [STATE(377)] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [anon_sym_COLON] = ACTIONS(2371), - [sym_entity_reference] = ACTIONS(2371), - [sym_numeric_character_reference] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_BANG_LBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [aux_sym_pandoc_str_token1] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2371), - [sym__whitespace] = ACTIONS(2371), - [sym__line_ending] = ACTIONS(2371), - [sym__soft_line_ending] = ACTIONS(2371), - [sym__block_quote_start] = ACTIONS(2371), - [sym_atx_h1_marker] = ACTIONS(2371), - [sym_atx_h2_marker] = ACTIONS(2371), - [sym_atx_h3_marker] = ACTIONS(2371), - [sym_atx_h4_marker] = ACTIONS(2371), - [sym_atx_h5_marker] = ACTIONS(2371), - [sym_atx_h6_marker] = ACTIONS(2371), - [sym__thematic_break] = ACTIONS(2371), - [sym__list_marker_minus] = ACTIONS(2371), - [sym__list_marker_plus] = ACTIONS(2371), - [sym__list_marker_star] = ACTIONS(2371), - [sym__list_marker_parenthesis] = ACTIONS(2371), - [sym__list_marker_dot] = ACTIONS(2371), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_example] = ACTIONS(2371), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), - [sym__fenced_code_block_start_backtick] = ACTIONS(2371), - [sym_minus_metadata] = ACTIONS(2371), - [sym__pipe_table_start] = ACTIONS(2371), - [sym__fenced_div_start] = ACTIONS(2371), - [sym_ref_id_specifier] = ACTIONS(2371), - [sym__code_span_start] = ACTIONS(2371), - [sym__html_comment] = ACTIONS(2371), - [sym__autolink] = ACTIONS(2371), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2371), - [sym__delete_span_start] = ACTIONS(2371), - [sym__edit_comment_span_start] = ACTIONS(2371), - [sym__single_quote_span_open] = ACTIONS(2371), - [sym__double_quote_span_open] = ACTIONS(2371), - [sym__shortcode_open_escaped] = ACTIONS(2371), - [sym__shortcode_open] = ACTIONS(2371), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), - [sym__cite_author_in_text] = ACTIONS(2371), - [sym__cite_suppress_author] = ACTIONS(2371), - [sym__strikeout_open] = ACTIONS(2371), - [sym__subscript_open] = ACTIONS(2371), - [sym__superscript_open] = ACTIONS(2371), - [sym__inline_note_start_token] = ACTIONS(2371), - [sym__strong_emphasis_open_star] = ACTIONS(2371), - [sym__strong_emphasis_open_underscore] = ACTIONS(2371), - [sym__emphasis_open_star] = ACTIONS(2371), - [sym__emphasis_open_underscore] = ACTIONS(2371), - [sym_inline_note_reference] = ACTIONS(2371), - [sym_html_element] = ACTIONS(2371), - [sym__pandoc_line_break] = ACTIONS(2371), + [STATE(408)] = { + [anon_sym_COLON] = ACTIONS(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_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] = 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_line_break] = ACTIONS(2587), + [sym_grid_table] = ACTIONS(2587), }, - [STATE(378)] = { - [ts_builtin_sym_end] = ACTIONS(2601), - [anon_sym_COLON] = ACTIONS(2601), - [sym_entity_reference] = ACTIONS(2601), - [sym_numeric_character_reference] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_BANG_LBRACK] = ACTIONS(2601), - [anon_sym_DOLLAR] = ACTIONS(2603), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [aux_sym_pandoc_str_token1] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2601), - [sym__whitespace] = ACTIONS(2601), - [sym__line_ending] = ACTIONS(2601), - [sym__soft_line_ending] = ACTIONS(2601), - [sym__block_quote_start] = ACTIONS(2601), - [sym_atx_h1_marker] = ACTIONS(2601), - [sym_atx_h2_marker] = ACTIONS(2601), - [sym_atx_h3_marker] = ACTIONS(2601), - [sym_atx_h4_marker] = ACTIONS(2601), - [sym_atx_h5_marker] = ACTIONS(2601), - [sym_atx_h6_marker] = ACTIONS(2601), - [sym__thematic_break] = ACTIONS(2601), - [sym__list_marker_minus] = ACTIONS(2601), - [sym__list_marker_plus] = ACTIONS(2601), - [sym__list_marker_star] = ACTIONS(2601), - [sym__list_marker_parenthesis] = ACTIONS(2601), - [sym__list_marker_dot] = ACTIONS(2601), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_example] = ACTIONS(2601), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2601), - [sym__fenced_code_block_start_backtick] = ACTIONS(2601), - [sym_minus_metadata] = ACTIONS(2601), - [sym__pipe_table_start] = ACTIONS(2601), - [sym__fenced_div_start] = ACTIONS(2601), - [sym_ref_id_specifier] = ACTIONS(2601), - [sym__code_span_start] = ACTIONS(2601), - [sym__html_comment] = ACTIONS(2601), - [sym__autolink] = ACTIONS(2601), - [sym__highlight_span_start] = ACTIONS(2601), - [sym__insert_span_start] = ACTIONS(2601), - [sym__delete_span_start] = ACTIONS(2601), - [sym__edit_comment_span_start] = ACTIONS(2601), - [sym__single_quote_span_open] = ACTIONS(2601), - [sym__double_quote_span_open] = ACTIONS(2601), - [sym__shortcode_open_escaped] = ACTIONS(2601), - [sym__shortcode_open] = ACTIONS(2601), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2601), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2601), - [sym__cite_author_in_text] = ACTIONS(2601), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2601), - [sym__subscript_open] = ACTIONS(2601), - [sym__superscript_open] = ACTIONS(2601), - [sym__inline_note_start_token] = ACTIONS(2601), - [sym__strong_emphasis_open_star] = ACTIONS(2601), - [sym__strong_emphasis_open_underscore] = ACTIONS(2601), - [sym__emphasis_open_star] = ACTIONS(2601), - [sym__emphasis_open_underscore] = ACTIONS(2601), - [sym_inline_note_reference] = ACTIONS(2601), - [sym_html_element] = ACTIONS(2601), - [sym__pandoc_line_break] = ACTIONS(2601), + [STATE(409)] = { + [anon_sym_COLON] = ACTIONS(2595), + [sym_entity_reference] = ACTIONS(2595), + [sym_numeric_character_reference] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_BANG_LBRACK] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2597), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [aux_sym_pandoc_str_token1] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2595), + [sym__whitespace] = ACTIONS(2595), + [sym__line_ending] = ACTIONS(2595), + [sym__soft_line_ending] = ACTIONS(2595), + [sym__block_close] = ACTIONS(2595), + [sym__block_quote_start] = ACTIONS(2595), + [sym_atx_h1_marker] = ACTIONS(2595), + [sym_atx_h2_marker] = ACTIONS(2595), + [sym_atx_h3_marker] = ACTIONS(2595), + [sym_atx_h4_marker] = ACTIONS(2595), + [sym_atx_h5_marker] = ACTIONS(2595), + [sym_atx_h6_marker] = ACTIONS(2595), + [sym__thematic_break] = ACTIONS(2595), + [sym__list_marker_minus] = ACTIONS(2595), + [sym__list_marker_plus] = ACTIONS(2595), + [sym__list_marker_star] = ACTIONS(2595), + [sym__list_marker_parenthesis] = ACTIONS(2595), + [sym__list_marker_dot] = ACTIONS(2595), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_example] = ACTIONS(2595), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2595), + [sym__fenced_code_block_start_backtick] = ACTIONS(2595), + [sym_minus_metadata] = ACTIONS(2595), + [sym__pipe_table_start] = ACTIONS(2595), + [sym__fenced_div_start] = ACTIONS(2595), + [sym_ref_id_specifier] = ACTIONS(2595), + [sym__code_span_start] = ACTIONS(2595), + [sym__html_comment] = ACTIONS(2595), + [sym__autolink] = ACTIONS(2595), + [sym__highlight_span_start] = ACTIONS(2595), + [sym__insert_span_start] = ACTIONS(2595), + [sym__delete_span_start] = ACTIONS(2595), + [sym__edit_comment_span_start] = ACTIONS(2595), + [sym__single_quote_span_open] = ACTIONS(2595), + [sym__double_quote_span_open] = ACTIONS(2595), + [sym__shortcode_open_escaped] = ACTIONS(2595), + [sym__shortcode_open] = ACTIONS(2595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2595), + [sym__cite_author_in_text] = ACTIONS(2595), + [sym__cite_suppress_author] = ACTIONS(2595), + [sym__strikeout_open] = ACTIONS(2595), + [sym__subscript_open] = ACTIONS(2595), + [sym__superscript_open] = ACTIONS(2595), + [sym__inline_note_start_token] = ACTIONS(2595), + [sym__strong_emphasis_open_star] = ACTIONS(2595), + [sym__strong_emphasis_open_underscore] = ACTIONS(2595), + [sym__emphasis_open_star] = ACTIONS(2595), + [sym__emphasis_open_underscore] = ACTIONS(2595), + [sym_inline_note_reference] = ACTIONS(2595), + [sym_html_element] = ACTIONS(2595), + [sym__pandoc_line_break] = ACTIONS(2595), + [sym_grid_table] = ACTIONS(2595), }, - [STATE(379)] = { - [ts_builtin_sym_end] = ACTIONS(2605), - [anon_sym_COLON] = ACTIONS(2605), - [sym_entity_reference] = ACTIONS(2605), - [sym_numeric_character_reference] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_BANG_LBRACK] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [aux_sym_pandoc_str_token1] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2605), - [sym__whitespace] = ACTIONS(2605), - [sym__line_ending] = ACTIONS(2605), - [sym__soft_line_ending] = ACTIONS(2605), - [sym__block_quote_start] = ACTIONS(2605), - [sym_atx_h1_marker] = ACTIONS(2605), - [sym_atx_h2_marker] = ACTIONS(2605), - [sym_atx_h3_marker] = ACTIONS(2605), - [sym_atx_h4_marker] = ACTIONS(2605), - [sym_atx_h5_marker] = ACTIONS(2605), - [sym_atx_h6_marker] = ACTIONS(2605), - [sym__thematic_break] = ACTIONS(2605), - [sym__list_marker_minus] = ACTIONS(2605), - [sym__list_marker_plus] = ACTIONS(2605), - [sym__list_marker_star] = ACTIONS(2605), - [sym__list_marker_parenthesis] = ACTIONS(2605), - [sym__list_marker_dot] = ACTIONS(2605), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_example] = ACTIONS(2605), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2605), - [sym__fenced_code_block_start_backtick] = ACTIONS(2605), - [sym_minus_metadata] = ACTIONS(2605), - [sym__pipe_table_start] = ACTIONS(2605), - [sym__fenced_div_start] = ACTIONS(2605), - [sym_ref_id_specifier] = ACTIONS(2605), - [sym__code_span_start] = ACTIONS(2605), - [sym__html_comment] = ACTIONS(2605), - [sym__autolink] = ACTIONS(2605), - [sym__highlight_span_start] = ACTIONS(2605), - [sym__insert_span_start] = ACTIONS(2605), - [sym__delete_span_start] = ACTIONS(2605), - [sym__edit_comment_span_start] = ACTIONS(2605), - [sym__single_quote_span_open] = ACTIONS(2605), - [sym__double_quote_span_open] = ACTIONS(2605), - [sym__shortcode_open_escaped] = ACTIONS(2605), - [sym__shortcode_open] = ACTIONS(2605), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2605), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2605), - [sym__cite_author_in_text] = ACTIONS(2605), - [sym__cite_suppress_author] = ACTIONS(2605), - [sym__strikeout_open] = ACTIONS(2605), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2605), - [sym__inline_note_start_token] = ACTIONS(2605), - [sym__strong_emphasis_open_star] = ACTIONS(2605), - [sym__strong_emphasis_open_underscore] = ACTIONS(2605), - [sym__emphasis_open_star] = ACTIONS(2605), - [sym__emphasis_open_underscore] = ACTIONS(2605), - [sym_inline_note_reference] = ACTIONS(2605), - [sym_html_element] = ACTIONS(2605), - [sym__pandoc_line_break] = ACTIONS(2605), + [STATE(410)] = { + [anon_sym_COLON] = ACTIONS(2471), + [sym_entity_reference] = ACTIONS(2471), + [sym_numeric_character_reference] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_BANG_LBRACK] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [aux_sym_pandoc_str_token1] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2471), + [sym__whitespace] = ACTIONS(2471), + [sym__line_ending] = ACTIONS(2471), + [sym__soft_line_ending] = ACTIONS(2471), + [sym__block_close] = ACTIONS(2471), + [sym__block_quote_start] = ACTIONS(2471), + [sym_atx_h1_marker] = ACTIONS(2471), + [sym_atx_h2_marker] = ACTIONS(2471), + [sym_atx_h3_marker] = ACTIONS(2471), + [sym_atx_h4_marker] = ACTIONS(2471), + [sym_atx_h5_marker] = ACTIONS(2471), + [sym_atx_h6_marker] = ACTIONS(2471), + [sym__thematic_break] = ACTIONS(2471), + [sym__list_marker_minus] = ACTIONS(2471), + [sym__list_marker_plus] = ACTIONS(2471), + [sym__list_marker_star] = ACTIONS(2471), + [sym__list_marker_parenthesis] = ACTIONS(2471), + [sym__list_marker_dot] = ACTIONS(2471), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_example] = ACTIONS(2471), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2471), + [sym__fenced_code_block_start_backtick] = ACTIONS(2471), + [sym_minus_metadata] = ACTIONS(2471), + [sym__pipe_table_start] = ACTIONS(2471), + [sym__fenced_div_start] = ACTIONS(2471), + [sym_ref_id_specifier] = ACTIONS(2471), + [sym__code_span_start] = ACTIONS(2471), + [sym__html_comment] = ACTIONS(2471), + [sym__autolink] = ACTIONS(2471), + [sym__highlight_span_start] = ACTIONS(2471), + [sym__insert_span_start] = ACTIONS(2471), + [sym__delete_span_start] = ACTIONS(2471), + [sym__edit_comment_span_start] = ACTIONS(2471), + [sym__single_quote_span_open] = ACTIONS(2471), + [sym__double_quote_span_open] = ACTIONS(2471), + [sym__shortcode_open_escaped] = ACTIONS(2471), + [sym__shortcode_open] = ACTIONS(2471), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2471), + [sym__cite_author_in_text] = ACTIONS(2471), + [sym__cite_suppress_author] = ACTIONS(2471), + [sym__strikeout_open] = ACTIONS(2471), + [sym__subscript_open] = ACTIONS(2471), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2471), + [sym__strong_emphasis_open_star] = ACTIONS(2471), + [sym__strong_emphasis_open_underscore] = ACTIONS(2471), + [sym__emphasis_open_star] = ACTIONS(2471), + [sym__emphasis_open_underscore] = ACTIONS(2471), + [sym_inline_note_reference] = ACTIONS(2471), + [sym_html_element] = ACTIONS(2471), + [sym__pandoc_line_break] = ACTIONS(2471), + [sym_grid_table] = ACTIONS(2471), }, - [STATE(380)] = { - [ts_builtin_sym_end] = ACTIONS(2609), - [anon_sym_COLON] = ACTIONS(2609), - [sym_entity_reference] = ACTIONS(2609), - [sym_numeric_character_reference] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_BANG_LBRACK] = ACTIONS(2609), - [anon_sym_DOLLAR] = ACTIONS(2611), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [aux_sym_pandoc_str_token1] = ACTIONS(2611), - [anon_sym_PIPE] = ACTIONS(2609), - [sym__whitespace] = ACTIONS(2609), - [sym__line_ending] = ACTIONS(2609), - [sym__soft_line_ending] = ACTIONS(2609), - [sym__block_quote_start] = ACTIONS(2609), - [sym_atx_h1_marker] = ACTIONS(2609), - [sym_atx_h2_marker] = ACTIONS(2609), - [sym_atx_h3_marker] = ACTIONS(2609), - [sym_atx_h4_marker] = ACTIONS(2609), - [sym_atx_h5_marker] = ACTIONS(2609), - [sym_atx_h6_marker] = ACTIONS(2609), - [sym__thematic_break] = ACTIONS(2609), - [sym__list_marker_minus] = ACTIONS(2609), - [sym__list_marker_plus] = ACTIONS(2609), - [sym__list_marker_star] = ACTIONS(2609), - [sym__list_marker_parenthesis] = ACTIONS(2609), - [sym__list_marker_dot] = ACTIONS(2609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_example] = ACTIONS(2609), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2609), - [sym__fenced_code_block_start_backtick] = ACTIONS(2609), - [sym_minus_metadata] = ACTIONS(2609), - [sym__pipe_table_start] = ACTIONS(2609), - [sym__fenced_div_start] = ACTIONS(2609), - [sym_ref_id_specifier] = ACTIONS(2609), - [sym__code_span_start] = ACTIONS(2609), - [sym__html_comment] = ACTIONS(2609), - [sym__autolink] = ACTIONS(2609), - [sym__highlight_span_start] = ACTIONS(2609), - [sym__insert_span_start] = ACTIONS(2609), - [sym__delete_span_start] = ACTIONS(2609), - [sym__edit_comment_span_start] = ACTIONS(2609), - [sym__single_quote_span_open] = ACTIONS(2609), - [sym__double_quote_span_open] = ACTIONS(2609), - [sym__shortcode_open_escaped] = ACTIONS(2609), - [sym__shortcode_open] = ACTIONS(2609), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2609), - [sym__cite_author_in_text] = ACTIONS(2609), - [sym__cite_suppress_author] = ACTIONS(2609), - [sym__strikeout_open] = ACTIONS(2609), - [sym__subscript_open] = ACTIONS(2609), - [sym__superscript_open] = ACTIONS(2609), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2609), - [sym__strong_emphasis_open_underscore] = ACTIONS(2609), - [sym__emphasis_open_star] = ACTIONS(2609), - [sym__emphasis_open_underscore] = ACTIONS(2609), - [sym_inline_note_reference] = ACTIONS(2609), - [sym_html_element] = ACTIONS(2609), - [sym__pandoc_line_break] = ACTIONS(2609), + [STATE(411)] = { + [anon_sym_COLON] = ACTIONS(2475), + [sym_entity_reference] = ACTIONS(2475), + [sym_numeric_character_reference] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_BANG_LBRACK] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [aux_sym_pandoc_str_token1] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2475), + [sym__whitespace] = ACTIONS(2475), + [sym__line_ending] = ACTIONS(2475), + [sym__soft_line_ending] = ACTIONS(2475), + [sym__block_close] = ACTIONS(2475), + [sym__block_quote_start] = ACTIONS(2475), + [sym_atx_h1_marker] = ACTIONS(2475), + [sym_atx_h2_marker] = ACTIONS(2475), + [sym_atx_h3_marker] = ACTIONS(2475), + [sym_atx_h4_marker] = ACTIONS(2475), + [sym_atx_h5_marker] = ACTIONS(2475), + [sym_atx_h6_marker] = ACTIONS(2475), + [sym__thematic_break] = ACTIONS(2475), + [sym__list_marker_minus] = ACTIONS(2475), + [sym__list_marker_plus] = ACTIONS(2475), + [sym__list_marker_star] = ACTIONS(2475), + [sym__list_marker_parenthesis] = ACTIONS(2475), + [sym__list_marker_dot] = ACTIONS(2475), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_example] = ACTIONS(2475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2475), + [sym__fenced_code_block_start_backtick] = ACTIONS(2475), + [sym_minus_metadata] = ACTIONS(2475), + [sym__pipe_table_start] = ACTIONS(2475), + [sym__fenced_div_start] = ACTIONS(2475), + [sym_ref_id_specifier] = ACTIONS(2475), + [sym__code_span_start] = ACTIONS(2475), + [sym__html_comment] = ACTIONS(2475), + [sym__autolink] = ACTIONS(2475), + [sym__highlight_span_start] = ACTIONS(2475), + [sym__insert_span_start] = ACTIONS(2475), + [sym__delete_span_start] = ACTIONS(2475), + [sym__edit_comment_span_start] = ACTIONS(2475), + [sym__single_quote_span_open] = ACTIONS(2475), + [sym__double_quote_span_open] = ACTIONS(2475), + [sym__shortcode_open_escaped] = ACTIONS(2475), + [sym__shortcode_open] = ACTIONS(2475), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2475), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2475), + [sym__cite_author_in_text] = ACTIONS(2475), + [sym__cite_suppress_author] = ACTIONS(2475), + [sym__strikeout_open] = ACTIONS(2475), + [sym__subscript_open] = ACTIONS(2475), + [sym__superscript_open] = ACTIONS(2475), + [sym__inline_note_start_token] = ACTIONS(2475), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2475), + [sym__emphasis_open_star] = ACTIONS(2475), + [sym__emphasis_open_underscore] = ACTIONS(2475), + [sym_inline_note_reference] = ACTIONS(2475), + [sym_html_element] = ACTIONS(2475), + [sym__pandoc_line_break] = ACTIONS(2475), + [sym_grid_table] = ACTIONS(2475), }, - [STATE(381)] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [anon_sym_COLON] = ACTIONS(2949), - [sym_entity_reference] = ACTIONS(2949), - [sym_numeric_character_reference] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_BANG_LBRACK] = ACTIONS(2949), - [anon_sym_DOLLAR] = ACTIONS(2951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [aux_sym_pandoc_str_token1] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2949), - [sym__whitespace] = ACTIONS(2949), - [sym__line_ending] = ACTIONS(2949), - [sym__soft_line_ending] = ACTIONS(2949), - [sym__block_quote_start] = ACTIONS(2949), - [sym_atx_h1_marker] = ACTIONS(2949), - [sym_atx_h2_marker] = ACTIONS(2949), - [sym_atx_h3_marker] = ACTIONS(2949), - [sym_atx_h4_marker] = ACTIONS(2949), - [sym_atx_h5_marker] = ACTIONS(2949), - [sym_atx_h6_marker] = ACTIONS(2949), - [sym__thematic_break] = ACTIONS(2949), - [sym__list_marker_minus] = ACTIONS(2949), - [sym__list_marker_plus] = ACTIONS(2949), - [sym__list_marker_star] = ACTIONS(2949), - [sym__list_marker_parenthesis] = ACTIONS(2949), - [sym__list_marker_dot] = ACTIONS(2949), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_example] = ACTIONS(2949), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2949), - [sym__fenced_code_block_start_backtick] = ACTIONS(2949), - [sym_minus_metadata] = ACTIONS(2949), - [sym__pipe_table_start] = ACTIONS(2949), - [sym__fenced_div_start] = ACTIONS(2949), - [sym_ref_id_specifier] = ACTIONS(2949), - [sym__code_span_start] = ACTIONS(2949), - [sym__html_comment] = ACTIONS(2949), - [sym__autolink] = ACTIONS(2949), - [sym__highlight_span_start] = ACTIONS(2949), - [sym__insert_span_start] = ACTIONS(2949), - [sym__delete_span_start] = ACTIONS(2949), - [sym__edit_comment_span_start] = ACTIONS(2949), - [sym__single_quote_span_open] = ACTIONS(2949), - [sym__double_quote_span_open] = ACTIONS(2949), - [sym__shortcode_open_escaped] = ACTIONS(2949), - [sym__shortcode_open] = ACTIONS(2949), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2949), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2949), - [sym__cite_author_in_text] = ACTIONS(2949), - [sym__cite_suppress_author] = ACTIONS(2949), - [sym__strikeout_open] = ACTIONS(2949), - [sym__subscript_open] = ACTIONS(2949), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2949), - [sym__strong_emphasis_open_star] = ACTIONS(2949), - [sym__strong_emphasis_open_underscore] = ACTIONS(2949), - [sym__emphasis_open_star] = ACTIONS(2949), - [sym__emphasis_open_underscore] = ACTIONS(2949), - [sym_inline_note_reference] = ACTIONS(2949), - [sym_html_element] = ACTIONS(2949), - [sym__pandoc_line_break] = ACTIONS(2949), + [STATE(412)] = { + [anon_sym_COLON] = ACTIONS(2479), + [sym_entity_reference] = ACTIONS(2479), + [sym_numeric_character_reference] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_BANG_LBRACK] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [aux_sym_pandoc_str_token1] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2479), + [sym__whitespace] = ACTIONS(2479), + [sym__line_ending] = ACTIONS(2479), + [sym__soft_line_ending] = ACTIONS(2479), + [sym__block_close] = ACTIONS(2479), + [sym__block_quote_start] = ACTIONS(2479), + [sym_atx_h1_marker] = ACTIONS(2479), + [sym_atx_h2_marker] = ACTIONS(2479), + [sym_atx_h3_marker] = ACTIONS(2479), + [sym_atx_h4_marker] = ACTIONS(2479), + [sym_atx_h5_marker] = ACTIONS(2479), + [sym_atx_h6_marker] = ACTIONS(2479), + [sym__thematic_break] = ACTIONS(2479), + [sym__list_marker_minus] = ACTIONS(2479), + [sym__list_marker_plus] = ACTIONS(2479), + [sym__list_marker_star] = ACTIONS(2479), + [sym__list_marker_parenthesis] = ACTIONS(2479), + [sym__list_marker_dot] = ACTIONS(2479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_example] = ACTIONS(2479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2479), + [sym__fenced_code_block_start_backtick] = ACTIONS(2479), + [sym_minus_metadata] = ACTIONS(2479), + [sym__pipe_table_start] = ACTIONS(2479), + [sym__fenced_div_start] = ACTIONS(2479), + [sym_ref_id_specifier] = ACTIONS(2479), + [sym__code_span_start] = ACTIONS(2479), + [sym__html_comment] = ACTIONS(2479), + [sym__autolink] = ACTIONS(2479), + [sym__highlight_span_start] = ACTIONS(2479), + [sym__insert_span_start] = ACTIONS(2479), + [sym__delete_span_start] = ACTIONS(2479), + [sym__edit_comment_span_start] = ACTIONS(2479), + [sym__single_quote_span_open] = ACTIONS(2479), + [sym__double_quote_span_open] = ACTIONS(2479), + [sym__shortcode_open_escaped] = ACTIONS(2479), + [sym__shortcode_open] = ACTIONS(2479), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2479), + [sym__cite_author_in_text] = ACTIONS(2479), + [sym__cite_suppress_author] = ACTIONS(2479), + [sym__strikeout_open] = ACTIONS(2479), + [sym__subscript_open] = ACTIONS(2479), + [sym__superscript_open] = ACTIONS(2479), + [sym__inline_note_start_token] = ACTIONS(2479), + [sym__strong_emphasis_open_star] = ACTIONS(2479), + [sym__strong_emphasis_open_underscore] = ACTIONS(2479), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2479), + [sym_inline_note_reference] = ACTIONS(2479), + [sym_html_element] = ACTIONS(2479), + [sym__pandoc_line_break] = ACTIONS(2479), + [sym_grid_table] = ACTIONS(2479), }, - [STATE(382)] = { - [sym_pipe_table_row] = STATE(3404), - [sym_pipe_table_cell] = STATE(3192), - [sym_pandoc_span] = STATE(669), - [sym_pandoc_image] = STATE(669), - [sym_pandoc_math] = STATE(669), - [sym_pandoc_display_math] = STATE(669), - [sym_pandoc_code_span] = STATE(669), - [sym_pandoc_single_quote] = STATE(669), - [sym_pandoc_double_quote] = STATE(669), - [sym_insert] = STATE(669), - [sym_delete] = STATE(669), - [sym_edit_comment] = STATE(669), - [sym_highlight] = STATE(669), - [sym__pandoc_attr_specifier] = STATE(669), - [sym__line_with_maybe_spaces] = STATE(3193), - [sym__inline_element] = STATE(669), - [sym_shortcode_escaped] = STATE(669), - [sym_shortcode] = STATE(669), - [sym_citation] = STATE(669), - [sym_inline_note] = STATE(669), - [sym_pandoc_superscript] = STATE(669), - [sym_pandoc_subscript] = STATE(669), - [sym_pandoc_strikeout] = STATE(669), - [sym_pandoc_emph] = STATE(669), - [sym_pandoc_strong] = STATE(669), - [sym_pandoc_str] = STATE(669), - [aux_sym_pipe_table_row_repeat1] = STATE(599), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(669), - [sym_entity_reference] = ACTIONS(3009), - [sym_numeric_character_reference] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_BANG_LBRACK] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [aux_sym_pandoc_str_token1] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3023), - [sym__whitespace] = ACTIONS(3025), - [sym__code_span_start] = ACTIONS(3027), - [sym__html_comment] = ACTIONS(3009), - [sym__autolink] = ACTIONS(3009), - [sym__highlight_span_start] = ACTIONS(3029), - [sym__insert_span_start] = ACTIONS(3031), - [sym__delete_span_start] = ACTIONS(3033), - [sym__edit_comment_span_start] = ACTIONS(3035), - [sym__single_quote_span_open] = ACTIONS(3037), - [sym__double_quote_span_open] = ACTIONS(3039), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3045), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3047), - [sym__cite_author_in_text] = ACTIONS(3049), - [sym__cite_suppress_author] = ACTIONS(3051), - [sym__strikeout_open] = ACTIONS(3053), - [sym__subscript_open] = ACTIONS(3055), - [sym__superscript_open] = ACTIONS(3057), - [sym__inline_note_start_token] = ACTIONS(3059), - [sym__strong_emphasis_open_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(3063), - [sym__emphasis_open_star] = ACTIONS(3065), - [sym__emphasis_open_underscore] = ACTIONS(3067), - [sym_inline_note_reference] = ACTIONS(3009), - [sym_html_element] = ACTIONS(3009), - [sym__pipe_table_delimiter] = ACTIONS(3069), - [sym__pandoc_line_break] = ACTIONS(3009), + [STATE(413)] = { + [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2583), + [sym_grid_table] = ACTIONS(2583), }, - [STATE(383)] = { - [ts_builtin_sym_end] = ACTIONS(2613), - [anon_sym_COLON] = ACTIONS(2613), - [sym_entity_reference] = ACTIONS(2613), - [sym_numeric_character_reference] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_BANG_LBRACK] = ACTIONS(2613), - [anon_sym_DOLLAR] = ACTIONS(2615), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [aux_sym_pandoc_str_token1] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2613), - [sym__whitespace] = ACTIONS(2613), - [sym__line_ending] = ACTIONS(2613), - [sym__soft_line_ending] = ACTIONS(2613), - [sym__block_quote_start] = ACTIONS(2613), - [sym_atx_h1_marker] = ACTIONS(2613), - [sym_atx_h2_marker] = ACTIONS(2613), - [sym_atx_h3_marker] = ACTIONS(2613), - [sym_atx_h4_marker] = ACTIONS(2613), - [sym_atx_h5_marker] = ACTIONS(2613), - [sym_atx_h6_marker] = ACTIONS(2613), - [sym__thematic_break] = ACTIONS(2613), - [sym__list_marker_minus] = ACTIONS(2613), - [sym__list_marker_plus] = ACTIONS(2613), - [sym__list_marker_star] = ACTIONS(2613), - [sym__list_marker_parenthesis] = ACTIONS(2613), - [sym__list_marker_dot] = ACTIONS(2613), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_example] = ACTIONS(2613), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2613), - [sym__fenced_code_block_start_backtick] = ACTIONS(2613), - [sym_minus_metadata] = ACTIONS(2613), - [sym__pipe_table_start] = ACTIONS(2613), - [sym__fenced_div_start] = ACTIONS(2613), - [sym_ref_id_specifier] = ACTIONS(2613), - [sym__code_span_start] = ACTIONS(2613), - [sym__html_comment] = ACTIONS(2613), - [sym__autolink] = ACTIONS(2613), - [sym__highlight_span_start] = ACTIONS(2613), - [sym__insert_span_start] = ACTIONS(2613), - [sym__delete_span_start] = ACTIONS(2613), - [sym__edit_comment_span_start] = ACTIONS(2613), - [sym__single_quote_span_open] = ACTIONS(2613), - [sym__double_quote_span_open] = ACTIONS(2613), - [sym__shortcode_open_escaped] = ACTIONS(2613), - [sym__shortcode_open] = ACTIONS(2613), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2613), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2613), - [sym__cite_author_in_text] = ACTIONS(2613), - [sym__cite_suppress_author] = ACTIONS(2613), - [sym__strikeout_open] = ACTIONS(2613), - [sym__subscript_open] = ACTIONS(2613), - [sym__superscript_open] = ACTIONS(2613), - [sym__inline_note_start_token] = ACTIONS(2613), - [sym__strong_emphasis_open_star] = ACTIONS(2613), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2613), - [sym__emphasis_open_underscore] = ACTIONS(2613), - [sym_inline_note_reference] = ACTIONS(2613), - [sym_html_element] = ACTIONS(2613), - [sym__pandoc_line_break] = ACTIONS(2613), + [STATE(414)] = { + [anon_sym_COLON] = ACTIONS(2591), + [sym_entity_reference] = ACTIONS(2591), + [sym_numeric_character_reference] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_BANG_LBRACK] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(2593), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [aux_sym_pandoc_str_token1] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2591), + [sym__whitespace] = ACTIONS(2591), + [sym__line_ending] = ACTIONS(2591), + [sym__soft_line_ending] = ACTIONS(2591), + [sym__block_close] = ACTIONS(2591), + [sym__block_quote_start] = ACTIONS(2591), + [sym_atx_h1_marker] = ACTIONS(2591), + [sym_atx_h2_marker] = ACTIONS(2591), + [sym_atx_h3_marker] = ACTIONS(2591), + [sym_atx_h4_marker] = ACTIONS(2591), + [sym_atx_h5_marker] = ACTIONS(2591), + [sym_atx_h6_marker] = ACTIONS(2591), + [sym__thematic_break] = ACTIONS(2591), + [sym__list_marker_minus] = ACTIONS(2591), + [sym__list_marker_plus] = ACTIONS(2591), + [sym__list_marker_star] = ACTIONS(2591), + [sym__list_marker_parenthesis] = ACTIONS(2591), + [sym__list_marker_dot] = ACTIONS(2591), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_example] = ACTIONS(2591), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2591), + [sym__fenced_code_block_start_backtick] = ACTIONS(2591), + [sym_minus_metadata] = ACTIONS(2591), + [sym__pipe_table_start] = ACTIONS(2591), + [sym__fenced_div_start] = ACTIONS(2591), + [sym_ref_id_specifier] = ACTIONS(2591), + [sym__code_span_start] = ACTIONS(2591), + [sym__html_comment] = ACTIONS(2591), + [sym__autolink] = ACTIONS(2591), + [sym__highlight_span_start] = ACTIONS(2591), + [sym__insert_span_start] = ACTIONS(2591), + [sym__delete_span_start] = ACTIONS(2591), + [sym__edit_comment_span_start] = ACTIONS(2591), + [sym__single_quote_span_open] = ACTIONS(2591), + [sym__double_quote_span_open] = ACTIONS(2591), + [sym__shortcode_open_escaped] = ACTIONS(2591), + [sym__shortcode_open] = ACTIONS(2591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2591), + [sym__cite_author_in_text] = ACTIONS(2591), + [sym__cite_suppress_author] = ACTIONS(2591), + [sym__strikeout_open] = ACTIONS(2591), + [sym__subscript_open] = ACTIONS(2591), + [sym__superscript_open] = ACTIONS(2591), + [sym__inline_note_start_token] = ACTIONS(2591), + [sym__strong_emphasis_open_star] = ACTIONS(2591), + [sym__strong_emphasis_open_underscore] = ACTIONS(2591), + [sym__emphasis_open_star] = ACTIONS(2591), + [sym__emphasis_open_underscore] = ACTIONS(2591), + [sym_inline_note_reference] = ACTIONS(2591), + [sym_html_element] = ACTIONS(2591), + [sym__pandoc_line_break] = ACTIONS(2591), + [sym_grid_table] = ACTIONS(2591), }, - [STATE(384)] = { - [ts_builtin_sym_end] = ACTIONS(2617), - [anon_sym_COLON] = ACTIONS(2617), - [sym_entity_reference] = ACTIONS(2617), - [sym_numeric_character_reference] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_BANG_LBRACK] = ACTIONS(2617), - [anon_sym_DOLLAR] = ACTIONS(2619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [aux_sym_pandoc_str_token1] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2617), - [sym__whitespace] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2617), - [sym__soft_line_ending] = ACTIONS(2617), - [sym__block_quote_start] = ACTIONS(2617), - [sym_atx_h1_marker] = ACTIONS(2617), - [sym_atx_h2_marker] = ACTIONS(2617), - [sym_atx_h3_marker] = ACTIONS(2617), - [sym_atx_h4_marker] = ACTIONS(2617), - [sym_atx_h5_marker] = ACTIONS(2617), - [sym_atx_h6_marker] = ACTIONS(2617), - [sym__thematic_break] = ACTIONS(2617), - [sym__list_marker_minus] = ACTIONS(2617), - [sym__list_marker_plus] = ACTIONS(2617), - [sym__list_marker_star] = ACTIONS(2617), - [sym__list_marker_parenthesis] = ACTIONS(2617), - [sym__list_marker_dot] = ACTIONS(2617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_example] = ACTIONS(2617), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2617), - [sym__fenced_code_block_start_backtick] = ACTIONS(2617), - [sym_minus_metadata] = ACTIONS(2617), - [sym__pipe_table_start] = ACTIONS(2617), - [sym__fenced_div_start] = ACTIONS(2617), - [sym_ref_id_specifier] = ACTIONS(2617), - [sym__code_span_start] = ACTIONS(2617), - [sym__html_comment] = ACTIONS(2617), - [sym__autolink] = ACTIONS(2617), - [sym__highlight_span_start] = ACTIONS(2617), - [sym__insert_span_start] = ACTIONS(2617), - [sym__delete_span_start] = ACTIONS(2617), - [sym__edit_comment_span_start] = ACTIONS(2617), - [sym__single_quote_span_open] = ACTIONS(2617), - [sym__double_quote_span_open] = ACTIONS(2617), - [sym__shortcode_open_escaped] = ACTIONS(2617), - [sym__shortcode_open] = ACTIONS(2617), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2617), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2617), - [sym__cite_author_in_text] = ACTIONS(2617), - [sym__cite_suppress_author] = ACTIONS(2617), - [sym__strikeout_open] = ACTIONS(2617), - [sym__subscript_open] = ACTIONS(2617), - [sym__superscript_open] = ACTIONS(2617), - [sym__inline_note_start_token] = ACTIONS(2617), - [sym__strong_emphasis_open_star] = ACTIONS(2617), - [sym__strong_emphasis_open_underscore] = ACTIONS(2617), - [sym__emphasis_open_star] = ACTIONS(2617), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2617), - [sym_html_element] = ACTIONS(2617), - [sym__pandoc_line_break] = ACTIONS(2617), + [STATE(415)] = { + [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2599), + [sym_grid_table] = ACTIONS(2599), }, - [STATE(385)] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [anon_sym_COLON] = ACTIONS(2957), - [sym_entity_reference] = ACTIONS(2957), - [sym_numeric_character_reference] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_BANG_LBRACK] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [aux_sym_pandoc_str_token1] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2957), - [sym__whitespace] = ACTIONS(2957), - [sym__line_ending] = ACTIONS(2957), - [sym__soft_line_ending] = ACTIONS(2957), - [sym__block_quote_start] = ACTIONS(2957), - [sym_atx_h1_marker] = ACTIONS(2957), - [sym_atx_h2_marker] = ACTIONS(2957), - [sym_atx_h3_marker] = ACTIONS(2957), - [sym_atx_h4_marker] = ACTIONS(2957), - [sym_atx_h5_marker] = ACTIONS(2957), - [sym_atx_h6_marker] = ACTIONS(2957), - [sym__thematic_break] = ACTIONS(2957), - [sym__list_marker_minus] = ACTIONS(2957), - [sym__list_marker_plus] = ACTIONS(2957), - [sym__list_marker_star] = ACTIONS(2957), - [sym__list_marker_parenthesis] = ACTIONS(2957), - [sym__list_marker_dot] = ACTIONS(2957), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_example] = ACTIONS(2957), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2957), - [sym__fenced_code_block_start_backtick] = ACTIONS(2957), - [sym_minus_metadata] = ACTIONS(2957), - [sym__pipe_table_start] = ACTIONS(2957), - [sym__fenced_div_start] = ACTIONS(2957), - [sym_ref_id_specifier] = ACTIONS(2957), - [sym__code_span_start] = ACTIONS(2957), - [sym__html_comment] = ACTIONS(2957), - [sym__autolink] = ACTIONS(2957), - [sym__highlight_span_start] = ACTIONS(2957), - [sym__insert_span_start] = ACTIONS(2957), - [sym__delete_span_start] = ACTIONS(2957), - [sym__edit_comment_span_start] = ACTIONS(2957), - [sym__single_quote_span_open] = ACTIONS(2957), - [sym__double_quote_span_open] = ACTIONS(2957), - [sym__shortcode_open_escaped] = ACTIONS(2957), - [sym__shortcode_open] = ACTIONS(2957), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2957), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2957), - [sym__cite_author_in_text] = ACTIONS(2957), - [sym__cite_suppress_author] = ACTIONS(2957), - [sym__strikeout_open] = ACTIONS(2957), - [sym__subscript_open] = ACTIONS(2957), - [sym__superscript_open] = ACTIONS(2957), - [sym__inline_note_start_token] = ACTIONS(2957), - [sym__strong_emphasis_open_star] = ACTIONS(2957), - [sym__strong_emphasis_open_underscore] = ACTIONS(2957), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2957), - [sym_inline_note_reference] = ACTIONS(2957), - [sym_html_element] = ACTIONS(2957), - [sym__pandoc_line_break] = ACTIONS(2957), + [STATE(416)] = { + [anon_sym_COLON] = ACTIONS(2615), + [sym_entity_reference] = ACTIONS(2615), + [sym_numeric_character_reference] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_BANG_LBRACK] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [aux_sym_pandoc_str_token1] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2615), + [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] = ACTIONS(2615), + [sym__pipe_table_start] = ACTIONS(2615), + [sym__fenced_div_start] = ACTIONS(2615), + [sym_ref_id_specifier] = ACTIONS(2615), + [sym__code_span_start] = ACTIONS(2615), + [sym__html_comment] = ACTIONS(2615), + [sym__autolink] = ACTIONS(2615), + [sym__highlight_span_start] = ACTIONS(2615), + [sym__insert_span_start] = ACTIONS(2615), + [sym__delete_span_start] = ACTIONS(2615), + [sym__edit_comment_span_start] = ACTIONS(2615), + [sym__single_quote_span_open] = ACTIONS(2615), + [sym__double_quote_span_open] = ACTIONS(2615), + [sym__shortcode_open_escaped] = ACTIONS(2615), + [sym__shortcode_open] = ACTIONS(2615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), + [sym__cite_author_in_text] = ACTIONS(2615), + [sym__cite_suppress_author] = ACTIONS(2615), + [sym__strikeout_open] = ACTIONS(2615), + [sym__subscript_open] = ACTIONS(2615), + [sym__superscript_open] = ACTIONS(2615), + [sym__inline_note_start_token] = ACTIONS(2615), + [sym__strong_emphasis_open_star] = ACTIONS(2615), + [sym__strong_emphasis_open_underscore] = ACTIONS(2615), + [sym__emphasis_open_star] = ACTIONS(2615), + [sym__emphasis_open_underscore] = ACTIONS(2615), + [sym_inline_note_reference] = ACTIONS(2615), + [sym_html_element] = ACTIONS(2615), + [sym__pandoc_line_break] = ACTIONS(2615), + [sym_grid_table] = ACTIONS(2615), }, - [STATE(386)] = { - [anon_sym_COLON] = ACTIONS(2691), - [sym_entity_reference] = ACTIONS(2691), - [sym_numeric_character_reference] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_BANG_LBRACK] = ACTIONS(2691), - [anon_sym_DOLLAR] = ACTIONS(2693), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [aux_sym_pandoc_str_token1] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2691), - [sym__whitespace] = ACTIONS(2691), - [sym__line_ending] = ACTIONS(2691), - [sym__soft_line_ending] = ACTIONS(2691), - [sym__block_close] = ACTIONS(2691), - [sym__block_quote_start] = ACTIONS(2691), - [sym_atx_h1_marker] = ACTIONS(2691), - [sym_atx_h2_marker] = ACTIONS(2691), - [sym_atx_h3_marker] = ACTIONS(2691), - [sym_atx_h4_marker] = ACTIONS(2691), - [sym_atx_h5_marker] = ACTIONS(2691), - [sym_atx_h6_marker] = ACTIONS(2691), - [sym__thematic_break] = ACTIONS(2691), - [sym__list_marker_minus] = ACTIONS(2691), - [sym__list_marker_plus] = ACTIONS(2691), - [sym__list_marker_star] = ACTIONS(2691), - [sym__list_marker_parenthesis] = ACTIONS(2691), - [sym__list_marker_dot] = ACTIONS(2691), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_example] = ACTIONS(2691), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2691), - [sym__fenced_code_block_start_backtick] = ACTIONS(2691), - [sym_minus_metadata] = ACTIONS(2691), - [sym__pipe_table_start] = ACTIONS(2691), - [sym__fenced_div_start] = ACTIONS(2691), - [sym_ref_id_specifier] = ACTIONS(2691), - [sym__code_span_start] = ACTIONS(2691), - [sym__html_comment] = ACTIONS(2691), - [sym__autolink] = ACTIONS(2691), - [sym__highlight_span_start] = ACTIONS(2691), - [sym__insert_span_start] = ACTIONS(2691), - [sym__delete_span_start] = ACTIONS(2691), - [sym__edit_comment_span_start] = ACTIONS(2691), - [sym__single_quote_span_open] = ACTIONS(2691), - [sym__double_quote_span_open] = ACTIONS(2691), - [sym__shortcode_open_escaped] = ACTIONS(2691), - [sym__shortcode_open] = ACTIONS(2691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2691), - [sym__cite_author_in_text] = ACTIONS(2691), - [sym__cite_suppress_author] = ACTIONS(2691), - [sym__strikeout_open] = ACTIONS(2691), - [sym__subscript_open] = ACTIONS(2691), - [sym__superscript_open] = ACTIONS(2691), - [sym__inline_note_start_token] = ACTIONS(2691), - [sym__strong_emphasis_open_star] = ACTIONS(2691), - [sym__strong_emphasis_open_underscore] = ACTIONS(2691), - [sym__emphasis_open_star] = ACTIONS(2691), - [sym__emphasis_open_underscore] = ACTIONS(2691), - [sym_inline_note_reference] = ACTIONS(2691), - [sym_html_element] = ACTIONS(2691), - [sym__pandoc_line_break] = ACTIONS(2691), + [STATE(417)] = { + [sym_pipe_table_cell] = STATE(2777), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2873), + [sym__line_ending] = ACTIONS(2875), + [sym__eof] = ACTIONS(2875), + [sym__pipe_table_line_ending] = ACTIONS(2875), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2877), + [sym__pandoc_line_break] = ACTIONS(2107), }, - [STATE(387)] = { - [ts_builtin_sym_end] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2977), - [sym_entity_reference] = ACTIONS(2977), - [sym_numeric_character_reference] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_BANG_LBRACK] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [aux_sym_pandoc_str_token1] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2977), - [sym__whitespace] = ACTIONS(2977), - [sym__line_ending] = ACTIONS(2977), - [sym__soft_line_ending] = ACTIONS(2977), - [sym__block_quote_start] = ACTIONS(2977), - [sym_atx_h1_marker] = ACTIONS(2977), - [sym_atx_h2_marker] = ACTIONS(2977), - [sym_atx_h3_marker] = ACTIONS(2977), - [sym_atx_h4_marker] = ACTIONS(2977), - [sym_atx_h5_marker] = ACTIONS(2977), - [sym_atx_h6_marker] = ACTIONS(2977), - [sym__thematic_break] = ACTIONS(2977), - [sym__list_marker_minus] = ACTIONS(2977), - [sym__list_marker_plus] = ACTIONS(2977), - [sym__list_marker_star] = ACTIONS(2977), - [sym__list_marker_parenthesis] = ACTIONS(2977), - [sym__list_marker_dot] = ACTIONS(2977), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_example] = ACTIONS(2977), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2977), - [sym__fenced_code_block_start_backtick] = ACTIONS(2977), - [sym_minus_metadata] = ACTIONS(2977), - [sym__pipe_table_start] = ACTIONS(2977), - [sym__fenced_div_start] = ACTIONS(2977), - [sym_ref_id_specifier] = ACTIONS(2977), - [sym__code_span_start] = ACTIONS(2977), - [sym__html_comment] = ACTIONS(2977), - [sym__autolink] = ACTIONS(2977), - [sym__highlight_span_start] = ACTIONS(2977), - [sym__insert_span_start] = ACTIONS(2977), - [sym__delete_span_start] = ACTIONS(2977), - [sym__edit_comment_span_start] = ACTIONS(2977), - [sym__single_quote_span_open] = ACTIONS(2977), - [sym__double_quote_span_open] = ACTIONS(2977), - [sym__shortcode_open_escaped] = ACTIONS(2977), - [sym__shortcode_open] = ACTIONS(2977), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2977), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2977), - [sym__cite_author_in_text] = ACTIONS(2977), - [sym__cite_suppress_author] = ACTIONS(2977), - [sym__strikeout_open] = ACTIONS(2977), - [sym__subscript_open] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(2977), - [sym__inline_note_start_token] = ACTIONS(2977), - [sym__strong_emphasis_open_star] = ACTIONS(2977), - [sym__strong_emphasis_open_underscore] = ACTIONS(2977), - [sym__emphasis_open_star] = ACTIONS(2977), - [sym__emphasis_open_underscore] = ACTIONS(2977), - [sym_inline_note_reference] = ACTIONS(2977), - [sym_html_element] = ACTIONS(2977), - [sym__pandoc_line_break] = ACTIONS(2977), + [STATE(418)] = { + [sym_pipe_table_cell] = STATE(2775), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(450), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2879), + [sym__line_ending] = ACTIONS(2881), + [sym__eof] = ACTIONS(2881), + [sym__pipe_table_line_ending] = ACTIONS(2881), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), }, - [STATE(388)] = { - [ts_builtin_sym_end] = ACTIONS(2621), - [anon_sym_COLON] = ACTIONS(2621), - [sym_entity_reference] = ACTIONS(2621), - [sym_numeric_character_reference] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_BANG_LBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [aux_sym_pandoc_str_token1] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2621), - [sym__whitespace] = ACTIONS(2621), - [sym__line_ending] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2621), - [sym__block_quote_start] = ACTIONS(2621), - [sym_atx_h1_marker] = ACTIONS(2621), - [sym_atx_h2_marker] = ACTIONS(2621), - [sym_atx_h3_marker] = ACTIONS(2621), - [sym_atx_h4_marker] = ACTIONS(2621), - [sym_atx_h5_marker] = ACTIONS(2621), - [sym_atx_h6_marker] = ACTIONS(2621), - [sym__thematic_break] = ACTIONS(2621), - [sym__list_marker_minus] = ACTIONS(2621), - [sym__list_marker_plus] = ACTIONS(2621), - [sym__list_marker_star] = ACTIONS(2621), - [sym__list_marker_parenthesis] = ACTIONS(2621), - [sym__list_marker_dot] = ACTIONS(2621), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_example] = ACTIONS(2621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2621), - [sym__fenced_code_block_start_backtick] = ACTIONS(2621), - [sym_minus_metadata] = ACTIONS(2621), - [sym__pipe_table_start] = ACTIONS(2621), - [sym__fenced_div_start] = ACTIONS(2621), - [sym_ref_id_specifier] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(2621), - [sym__html_comment] = ACTIONS(2621), - [sym__autolink] = ACTIONS(2621), - [sym__highlight_span_start] = ACTIONS(2621), - [sym__insert_span_start] = ACTIONS(2621), - [sym__delete_span_start] = ACTIONS(2621), - [sym__edit_comment_span_start] = ACTIONS(2621), - [sym__single_quote_span_open] = ACTIONS(2621), - [sym__double_quote_span_open] = ACTIONS(2621), - [sym__shortcode_open_escaped] = ACTIONS(2621), - [sym__shortcode_open] = ACTIONS(2621), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2621), - [sym__cite_author_in_text] = ACTIONS(2621), - [sym__cite_suppress_author] = ACTIONS(2621), - [sym__strikeout_open] = ACTIONS(2621), - [sym__subscript_open] = ACTIONS(2621), - [sym__superscript_open] = ACTIONS(2621), - [sym__inline_note_start_token] = ACTIONS(2621), - [sym__strong_emphasis_open_star] = ACTIONS(2621), - [sym__strong_emphasis_open_underscore] = ACTIONS(2621), - [sym__emphasis_open_star] = ACTIONS(2621), - [sym__emphasis_open_underscore] = ACTIONS(2621), - [sym_inline_note_reference] = ACTIONS(2621), - [sym_html_element] = ACTIONS(2621), - [sym__pandoc_line_break] = ACTIONS(2621), + [STATE(419)] = { + [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2619), + [sym_grid_table] = ACTIONS(2619), }, - [STATE(389)] = { - [ts_builtin_sym_end] = ACTIONS(2625), + [STATE(420)] = { [anon_sym_COLON] = ACTIONS(2625), [sym_entity_reference] = ACTIONS(2625), [sym_numeric_character_reference] = ACTIONS(2625), @@ -57381,6 +59834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2625), [sym__line_ending] = ACTIONS(2625), [sym__soft_line_ending] = ACTIONS(2625), + [sym__block_close] = ACTIONS(2625), [sym__block_quote_start] = ACTIONS(2625), [sym_atx_h1_marker] = ACTIONS(2625), [sym_atx_h2_marker] = ACTIONS(2625), @@ -57432,76 +59886,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2625), [sym_html_element] = ACTIONS(2625), [sym__pandoc_line_break] = ACTIONS(2625), + [sym_grid_table] = ACTIONS(2625), }, - [STATE(390)] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [anon_sym_COLON] = 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_line_break] = ACTIONS(2629), - }, - [STATE(391)] = { - [ts_builtin_sym_end] = ACTIONS(2633), + [STATE(421)] = { [anon_sym_COLON] = ACTIONS(2633), [sym_entity_reference] = ACTIONS(2633), [sym_numeric_character_reference] = ACTIONS(2633), @@ -57515,6 +59902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2633), [sym__line_ending] = ACTIONS(2633), [sym__soft_line_ending] = ACTIONS(2633), + [sym__block_close] = ACTIONS(2633), [sym__block_quote_start] = ACTIONS(2633), [sym_atx_h1_marker] = ACTIONS(2633), [sym_atx_h2_marker] = ACTIONS(2633), @@ -57566,679 +59954,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2633), [sym_html_element] = ACTIONS(2633), [sym__pandoc_line_break] = ACTIONS(2633), + [sym_grid_table] = ACTIONS(2633), }, - [STATE(392)] = { - [ts_builtin_sym_end] = ACTIONS(2637), - [anon_sym_COLON] = ACTIONS(2637), - [sym_entity_reference] = ACTIONS(2637), - [sym_numeric_character_reference] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_BANG_LBRACK] = ACTIONS(2637), - [anon_sym_DOLLAR] = ACTIONS(2639), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [aux_sym_pandoc_str_token1] = ACTIONS(2639), - [anon_sym_PIPE] = ACTIONS(2637), - [sym__whitespace] = ACTIONS(2637), - [sym__line_ending] = ACTIONS(2637), - [sym__soft_line_ending] = ACTIONS(2637), - [sym__block_quote_start] = ACTIONS(2637), - [sym_atx_h1_marker] = ACTIONS(2637), - [sym_atx_h2_marker] = ACTIONS(2637), - [sym_atx_h3_marker] = ACTIONS(2637), - [sym_atx_h4_marker] = ACTIONS(2637), - [sym_atx_h5_marker] = ACTIONS(2637), - [sym_atx_h6_marker] = ACTIONS(2637), - [sym__thematic_break] = ACTIONS(2637), - [sym__list_marker_minus] = ACTIONS(2637), - [sym__list_marker_plus] = ACTIONS(2637), - [sym__list_marker_star] = ACTIONS(2637), - [sym__list_marker_parenthesis] = ACTIONS(2637), - [sym__list_marker_dot] = ACTIONS(2637), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_example] = ACTIONS(2637), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2637), - [sym__fenced_code_block_start_backtick] = ACTIONS(2637), - [sym_minus_metadata] = ACTIONS(2637), - [sym__pipe_table_start] = ACTIONS(2637), - [sym__fenced_div_start] = ACTIONS(2637), - [sym_ref_id_specifier] = ACTIONS(2637), - [sym__code_span_start] = ACTIONS(2637), - [sym__html_comment] = ACTIONS(2637), - [sym__autolink] = ACTIONS(2637), - [sym__highlight_span_start] = ACTIONS(2637), - [sym__insert_span_start] = ACTIONS(2637), - [sym__delete_span_start] = ACTIONS(2637), - [sym__edit_comment_span_start] = ACTIONS(2637), - [sym__single_quote_span_open] = ACTIONS(2637), - [sym__double_quote_span_open] = ACTIONS(2637), - [sym__shortcode_open_escaped] = ACTIONS(2637), - [sym__shortcode_open] = ACTIONS(2637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2637), - [sym__cite_author_in_text] = ACTIONS(2637), - [sym__cite_suppress_author] = ACTIONS(2637), - [sym__strikeout_open] = ACTIONS(2637), - [sym__subscript_open] = ACTIONS(2637), - [sym__superscript_open] = ACTIONS(2637), - [sym__inline_note_start_token] = ACTIONS(2637), - [sym__strong_emphasis_open_star] = ACTIONS(2637), - [sym__strong_emphasis_open_underscore] = ACTIONS(2637), - [sym__emphasis_open_star] = ACTIONS(2637), - [sym__emphasis_open_underscore] = ACTIONS(2637), - [sym_inline_note_reference] = ACTIONS(2637), - [sym_html_element] = ACTIONS(2637), - [sym__pandoc_line_break] = ACTIONS(2637), - }, - [STATE(393)] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(2641), - [sym_entity_reference] = ACTIONS(2641), - [sym_numeric_character_reference] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_BANG_LBRACK] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [aux_sym_pandoc_str_token1] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2641), - [sym__whitespace] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2641), - [sym__soft_line_ending] = ACTIONS(2641), - [sym__block_quote_start] = ACTIONS(2641), - [sym_atx_h1_marker] = ACTIONS(2641), - [sym_atx_h2_marker] = ACTIONS(2641), - [sym_atx_h3_marker] = ACTIONS(2641), - [sym_atx_h4_marker] = ACTIONS(2641), - [sym_atx_h5_marker] = ACTIONS(2641), - [sym_atx_h6_marker] = ACTIONS(2641), - [sym__thematic_break] = ACTIONS(2641), - [sym__list_marker_minus] = ACTIONS(2641), - [sym__list_marker_plus] = ACTIONS(2641), - [sym__list_marker_star] = ACTIONS(2641), - [sym__list_marker_parenthesis] = ACTIONS(2641), - [sym__list_marker_dot] = ACTIONS(2641), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_example] = ACTIONS(2641), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2641), - [sym__fenced_code_block_start_backtick] = ACTIONS(2641), - [sym_minus_metadata] = ACTIONS(2641), - [sym__pipe_table_start] = ACTIONS(2641), - [sym__fenced_div_start] = ACTIONS(2641), - [sym_ref_id_specifier] = ACTIONS(2641), - [sym__code_span_start] = ACTIONS(2641), - [sym__html_comment] = ACTIONS(2641), - [sym__autolink] = ACTIONS(2641), - [sym__highlight_span_start] = ACTIONS(2641), - [sym__insert_span_start] = ACTIONS(2641), - [sym__delete_span_start] = ACTIONS(2641), - [sym__edit_comment_span_start] = ACTIONS(2641), - [sym__single_quote_span_open] = ACTIONS(2641), - [sym__double_quote_span_open] = ACTIONS(2641), - [sym__shortcode_open_escaped] = ACTIONS(2641), - [sym__shortcode_open] = ACTIONS(2641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2641), - [sym__cite_author_in_text] = ACTIONS(2641), - [sym__cite_suppress_author] = ACTIONS(2641), - [sym__strikeout_open] = ACTIONS(2641), - [sym__subscript_open] = ACTIONS(2641), - [sym__superscript_open] = ACTIONS(2641), - [sym__inline_note_start_token] = ACTIONS(2641), - [sym__strong_emphasis_open_star] = ACTIONS(2641), - [sym__strong_emphasis_open_underscore] = ACTIONS(2641), - [sym__emphasis_open_star] = ACTIONS(2641), - [sym__emphasis_open_underscore] = ACTIONS(2641), - [sym_inline_note_reference] = ACTIONS(2641), - [sym_html_element] = ACTIONS(2641), - [sym__pandoc_line_break] = ACTIONS(2641), - }, - [STATE(394)] = { - [ts_builtin_sym_end] = ACTIONS(2645), - [anon_sym_COLON] = ACTIONS(2645), - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [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_line_break] = ACTIONS(2645), - }, - [STATE(395)] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2649), - [sym_entity_reference] = ACTIONS(2649), - [sym_numeric_character_reference] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_BANG_LBRACK] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [aux_sym_pandoc_str_token1] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2649), - [sym__whitespace] = ACTIONS(2649), - [sym__line_ending] = ACTIONS(2649), - [sym__soft_line_ending] = ACTIONS(2649), - [sym__block_quote_start] = ACTIONS(2649), - [sym_atx_h1_marker] = ACTIONS(2649), - [sym_atx_h2_marker] = ACTIONS(2649), - [sym_atx_h3_marker] = ACTIONS(2649), - [sym_atx_h4_marker] = ACTIONS(2649), - [sym_atx_h5_marker] = ACTIONS(2649), - [sym_atx_h6_marker] = ACTIONS(2649), - [sym__thematic_break] = ACTIONS(2649), - [sym__list_marker_minus] = ACTIONS(2649), - [sym__list_marker_plus] = ACTIONS(2649), - [sym__list_marker_star] = ACTIONS(2649), - [sym__list_marker_parenthesis] = ACTIONS(2649), - [sym__list_marker_dot] = ACTIONS(2649), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_example] = ACTIONS(2649), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2649), - [sym__fenced_code_block_start_backtick] = ACTIONS(2649), - [sym_minus_metadata] = ACTIONS(2649), - [sym__pipe_table_start] = ACTIONS(2649), - [sym__fenced_div_start] = ACTIONS(2649), - [sym_ref_id_specifier] = ACTIONS(2649), - [sym__code_span_start] = ACTIONS(2649), - [sym__html_comment] = ACTIONS(2649), - [sym__autolink] = ACTIONS(2649), - [sym__highlight_span_start] = ACTIONS(2649), - [sym__insert_span_start] = ACTIONS(2649), - [sym__delete_span_start] = ACTIONS(2649), - [sym__edit_comment_span_start] = ACTIONS(2649), - [sym__single_quote_span_open] = ACTIONS(2649), - [sym__double_quote_span_open] = ACTIONS(2649), - [sym__shortcode_open_escaped] = ACTIONS(2649), - [sym__shortcode_open] = ACTIONS(2649), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2649), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2649), - [sym__cite_author_in_text] = ACTIONS(2649), - [sym__cite_suppress_author] = ACTIONS(2649), - [sym__strikeout_open] = ACTIONS(2649), - [sym__subscript_open] = ACTIONS(2649), - [sym__superscript_open] = ACTIONS(2649), - [sym__inline_note_start_token] = ACTIONS(2649), - [sym__strong_emphasis_open_star] = ACTIONS(2649), - [sym__strong_emphasis_open_underscore] = ACTIONS(2649), - [sym__emphasis_open_star] = ACTIONS(2649), - [sym__emphasis_open_underscore] = ACTIONS(2649), - [sym_inline_note_reference] = ACTIONS(2649), - [sym_html_element] = ACTIONS(2649), - [sym__pandoc_line_break] = ACTIONS(2649), - }, - [STATE(396)] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2653), - [sym_entity_reference] = ACTIONS(2653), - [sym_numeric_character_reference] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_BANG_LBRACK] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [aux_sym_pandoc_str_token1] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2653), - [sym__whitespace] = ACTIONS(2653), - [sym__line_ending] = ACTIONS(2653), - [sym__soft_line_ending] = ACTIONS(2653), - [sym__block_quote_start] = ACTIONS(2653), - [sym_atx_h1_marker] = ACTIONS(2653), - [sym_atx_h2_marker] = ACTIONS(2653), - [sym_atx_h3_marker] = ACTIONS(2653), - [sym_atx_h4_marker] = ACTIONS(2653), - [sym_atx_h5_marker] = ACTIONS(2653), - [sym_atx_h6_marker] = ACTIONS(2653), - [sym__thematic_break] = ACTIONS(2653), - [sym__list_marker_minus] = ACTIONS(2653), - [sym__list_marker_plus] = ACTIONS(2653), - [sym__list_marker_star] = ACTIONS(2653), - [sym__list_marker_parenthesis] = ACTIONS(2653), - [sym__list_marker_dot] = ACTIONS(2653), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_example] = ACTIONS(2653), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), - [sym__fenced_code_block_start_backtick] = ACTIONS(2653), - [sym_minus_metadata] = ACTIONS(2653), - [sym__pipe_table_start] = ACTIONS(2653), - [sym__fenced_div_start] = ACTIONS(2653), - [sym_ref_id_specifier] = ACTIONS(2653), - [sym__code_span_start] = ACTIONS(2653), - [sym__html_comment] = ACTIONS(2653), - [sym__autolink] = ACTIONS(2653), - [sym__highlight_span_start] = ACTIONS(2653), - [sym__insert_span_start] = ACTIONS(2653), - [sym__delete_span_start] = ACTIONS(2653), - [sym__edit_comment_span_start] = ACTIONS(2653), - [sym__single_quote_span_open] = ACTIONS(2653), - [sym__double_quote_span_open] = ACTIONS(2653), - [sym__shortcode_open_escaped] = ACTIONS(2653), - [sym__shortcode_open] = ACTIONS(2653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), - [sym__cite_author_in_text] = ACTIONS(2653), - [sym__cite_suppress_author] = ACTIONS(2653), - [sym__strikeout_open] = ACTIONS(2653), - [sym__subscript_open] = ACTIONS(2653), - [sym__superscript_open] = ACTIONS(2653), - [sym__inline_note_start_token] = ACTIONS(2653), - [sym__strong_emphasis_open_star] = ACTIONS(2653), - [sym__strong_emphasis_open_underscore] = ACTIONS(2653), - [sym__emphasis_open_star] = ACTIONS(2653), - [sym__emphasis_open_underscore] = ACTIONS(2653), - [sym_inline_note_reference] = ACTIONS(2653), - [sym_html_element] = ACTIONS(2653), - [sym__pandoc_line_break] = ACTIONS(2653), - }, - [STATE(397)] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [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] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), - }, - [STATE(398)] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [anon_sym_COLON] = ACTIONS(2661), - [sym_entity_reference] = ACTIONS(2661), - [sym_numeric_character_reference] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_BANG_LBRACK] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(2663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [aux_sym_pandoc_str_token1] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2661), - [sym__whitespace] = ACTIONS(2661), - [sym__line_ending] = ACTIONS(2661), - [sym__soft_line_ending] = ACTIONS(2661), - [sym__block_quote_start] = ACTIONS(2661), - [sym_atx_h1_marker] = ACTIONS(2661), - [sym_atx_h2_marker] = ACTIONS(2661), - [sym_atx_h3_marker] = ACTIONS(2661), - [sym_atx_h4_marker] = ACTIONS(2661), - [sym_atx_h5_marker] = ACTIONS(2661), - [sym_atx_h6_marker] = ACTIONS(2661), - [sym__thematic_break] = ACTIONS(2661), - [sym__list_marker_minus] = ACTIONS(2661), - [sym__list_marker_plus] = ACTIONS(2661), - [sym__list_marker_star] = ACTIONS(2661), - [sym__list_marker_parenthesis] = ACTIONS(2661), - [sym__list_marker_dot] = ACTIONS(2661), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_example] = ACTIONS(2661), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), - [sym__fenced_code_block_start_backtick] = ACTIONS(2661), - [sym_minus_metadata] = ACTIONS(2661), - [sym__pipe_table_start] = ACTIONS(2661), - [sym__fenced_div_start] = ACTIONS(2661), - [sym_ref_id_specifier] = ACTIONS(2661), - [sym__code_span_start] = ACTIONS(2661), - [sym__html_comment] = ACTIONS(2661), - [sym__autolink] = ACTIONS(2661), - [sym__highlight_span_start] = ACTIONS(2661), - [sym__insert_span_start] = ACTIONS(2661), - [sym__delete_span_start] = ACTIONS(2661), - [sym__edit_comment_span_start] = ACTIONS(2661), - [sym__single_quote_span_open] = ACTIONS(2661), - [sym__double_quote_span_open] = ACTIONS(2661), - [sym__shortcode_open_escaped] = ACTIONS(2661), - [sym__shortcode_open] = ACTIONS(2661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), - [sym__cite_author_in_text] = ACTIONS(2661), - [sym__cite_suppress_author] = ACTIONS(2661), - [sym__strikeout_open] = ACTIONS(2661), - [sym__subscript_open] = ACTIONS(2661), - [sym__superscript_open] = ACTIONS(2661), - [sym__inline_note_start_token] = ACTIONS(2661), - [sym__strong_emphasis_open_star] = ACTIONS(2661), - [sym__strong_emphasis_open_underscore] = ACTIONS(2661), - [sym__emphasis_open_star] = ACTIONS(2661), - [sym__emphasis_open_underscore] = ACTIONS(2661), - [sym_inline_note_reference] = ACTIONS(2661), - [sym_html_element] = ACTIONS(2661), - [sym__pandoc_line_break] = ACTIONS(2661), + [STATE(422)] = { + [anon_sym_COLON] = ACTIONS(2643), + [sym_entity_reference] = ACTIONS(2643), + [sym_numeric_character_reference] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_BANG_LBRACK] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [aux_sym_pandoc_str_token1] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2643), + [sym__whitespace] = ACTIONS(2643), + [sym__line_ending] = ACTIONS(2643), + [sym__soft_line_ending] = ACTIONS(2643), + [sym__block_close] = ACTIONS(2643), + [sym__block_quote_start] = ACTIONS(2643), + [sym_atx_h1_marker] = ACTIONS(2643), + [sym_atx_h2_marker] = ACTIONS(2643), + [sym_atx_h3_marker] = ACTIONS(2643), + [sym_atx_h4_marker] = ACTIONS(2643), + [sym_atx_h5_marker] = ACTIONS(2643), + [sym_atx_h6_marker] = ACTIONS(2643), + [sym__thematic_break] = ACTIONS(2643), + [sym__list_marker_minus] = ACTIONS(2643), + [sym__list_marker_plus] = ACTIONS(2643), + [sym__list_marker_star] = ACTIONS(2643), + [sym__list_marker_parenthesis] = ACTIONS(2643), + [sym__list_marker_dot] = ACTIONS(2643), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2643), + [sym__list_marker_example] = ACTIONS(2643), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2643), + [sym__fenced_code_block_start_backtick] = ACTIONS(2643), + [sym_minus_metadata] = ACTIONS(2643), + [sym__pipe_table_start] = ACTIONS(2643), + [sym__fenced_div_start] = ACTIONS(2643), + [sym_ref_id_specifier] = ACTIONS(2643), + [sym__code_span_start] = ACTIONS(2643), + [sym__html_comment] = ACTIONS(2643), + [sym__autolink] = ACTIONS(2643), + [sym__highlight_span_start] = ACTIONS(2643), + [sym__insert_span_start] = ACTIONS(2643), + [sym__delete_span_start] = ACTIONS(2643), + [sym__edit_comment_span_start] = ACTIONS(2643), + [sym__single_quote_span_open] = ACTIONS(2643), + [sym__double_quote_span_open] = ACTIONS(2643), + [sym__shortcode_open_escaped] = ACTIONS(2643), + [sym__shortcode_open] = ACTIONS(2643), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2643), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2643), + [sym__cite_author_in_text] = ACTIONS(2643), + [sym__cite_suppress_author] = ACTIONS(2643), + [sym__strikeout_open] = ACTIONS(2643), + [sym__subscript_open] = ACTIONS(2643), + [sym__superscript_open] = ACTIONS(2643), + [sym__inline_note_start_token] = ACTIONS(2643), + [sym__strong_emphasis_open_star] = ACTIONS(2643), + [sym__strong_emphasis_open_underscore] = ACTIONS(2643), + [sym__emphasis_open_star] = ACTIONS(2643), + [sym__emphasis_open_underscore] = ACTIONS(2643), + [sym_inline_note_reference] = ACTIONS(2643), + [sym_html_element] = ACTIONS(2643), + [sym__pandoc_line_break] = ACTIONS(2643), + [sym_grid_table] = ACTIONS(2643), }, - [STATE(399)] = { - [ts_builtin_sym_end] = ACTIONS(2665), - [anon_sym_COLON] = ACTIONS(2665), - [sym_entity_reference] = ACTIONS(2665), - [sym_numeric_character_reference] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_BANG_LBRACK] = ACTIONS(2665), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [aux_sym_pandoc_str_token1] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2665), - [sym__whitespace] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2665), - [sym__soft_line_ending] = ACTIONS(2665), - [sym__block_quote_start] = ACTIONS(2665), - [sym_atx_h1_marker] = ACTIONS(2665), - [sym_atx_h2_marker] = ACTIONS(2665), - [sym_atx_h3_marker] = ACTIONS(2665), - [sym_atx_h4_marker] = ACTIONS(2665), - [sym_atx_h5_marker] = ACTIONS(2665), - [sym_atx_h6_marker] = ACTIONS(2665), - [sym__thematic_break] = ACTIONS(2665), - [sym__list_marker_minus] = ACTIONS(2665), - [sym__list_marker_plus] = ACTIONS(2665), - [sym__list_marker_star] = ACTIONS(2665), - [sym__list_marker_parenthesis] = ACTIONS(2665), - [sym__list_marker_dot] = ACTIONS(2665), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_example] = ACTIONS(2665), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), - [sym__fenced_code_block_start_backtick] = ACTIONS(2665), - [sym_minus_metadata] = ACTIONS(2665), - [sym__pipe_table_start] = ACTIONS(2665), - [sym__fenced_div_start] = ACTIONS(2665), - [sym_ref_id_specifier] = ACTIONS(2665), - [sym__code_span_start] = ACTIONS(2665), - [sym__html_comment] = ACTIONS(2665), - [sym__autolink] = ACTIONS(2665), - [sym__highlight_span_start] = ACTIONS(2665), - [sym__insert_span_start] = ACTIONS(2665), - [sym__delete_span_start] = ACTIONS(2665), - [sym__edit_comment_span_start] = ACTIONS(2665), - [sym__single_quote_span_open] = ACTIONS(2665), - [sym__double_quote_span_open] = ACTIONS(2665), - [sym__shortcode_open_escaped] = ACTIONS(2665), - [sym__shortcode_open] = ACTIONS(2665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), - [sym__cite_author_in_text] = ACTIONS(2665), - [sym__cite_suppress_author] = ACTIONS(2665), - [sym__strikeout_open] = ACTIONS(2665), - [sym__subscript_open] = ACTIONS(2665), - [sym__superscript_open] = ACTIONS(2665), - [sym__inline_note_start_token] = ACTIONS(2665), - [sym__strong_emphasis_open_star] = ACTIONS(2665), - [sym__strong_emphasis_open_underscore] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2665), - [sym__emphasis_open_underscore] = ACTIONS(2665), - [sym_inline_note_reference] = ACTIONS(2665), - [sym_html_element] = ACTIONS(2665), - [sym__pandoc_line_break] = ACTIONS(2665), + [STATE(423)] = { + [ts_builtin_sym_end] = ACTIONS(2587), + [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2587), + [sym_grid_table] = ACTIONS(2587), }, - [STATE(400)] = { - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2973), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_BANG_LBRACK] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [aux_sym_pandoc_str_token1] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2973), - [sym__whitespace] = ACTIONS(2973), - [sym__line_ending] = ACTIONS(2973), - [sym__soft_line_ending] = ACTIONS(2973), - [sym__block_quote_start] = ACTIONS(2973), - [sym_atx_h1_marker] = ACTIONS(2973), - [sym_atx_h2_marker] = ACTIONS(2973), - [sym_atx_h3_marker] = ACTIONS(2973), - [sym_atx_h4_marker] = ACTIONS(2973), - [sym_atx_h5_marker] = ACTIONS(2973), - [sym_atx_h6_marker] = ACTIONS(2973), - [sym__thematic_break] = ACTIONS(2973), - [sym__list_marker_minus] = ACTIONS(2973), - [sym__list_marker_plus] = ACTIONS(2973), - [sym__list_marker_star] = ACTIONS(2973), - [sym__list_marker_parenthesis] = ACTIONS(2973), - [sym__list_marker_dot] = ACTIONS(2973), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_example] = ACTIONS(2973), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2973), - [sym__fenced_code_block_start_backtick] = ACTIONS(2973), - [sym_minus_metadata] = ACTIONS(2973), - [sym__pipe_table_start] = ACTIONS(2973), - [sym__fenced_div_start] = ACTIONS(2973), - [sym_ref_id_specifier] = ACTIONS(2973), - [sym__code_span_start] = ACTIONS(2973), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2973), - [sym__insert_span_start] = ACTIONS(2973), - [sym__delete_span_start] = ACTIONS(2973), - [sym__edit_comment_span_start] = ACTIONS(2973), - [sym__single_quote_span_open] = ACTIONS(2973), - [sym__double_quote_span_open] = ACTIONS(2973), - [sym__shortcode_open_escaped] = ACTIONS(2973), - [sym__shortcode_open] = ACTIONS(2973), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2973), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2973), - [sym__cite_author_in_text] = ACTIONS(2973), - [sym__cite_suppress_author] = ACTIONS(2973), - [sym__strikeout_open] = ACTIONS(2973), - [sym__subscript_open] = ACTIONS(2973), - [sym__superscript_open] = ACTIONS(2973), - [sym__inline_note_start_token] = ACTIONS(2973), - [sym__strong_emphasis_open_star] = ACTIONS(2973), - [sym__strong_emphasis_open_underscore] = ACTIONS(2973), - [sym__emphasis_open_star] = ACTIONS(2973), - [sym__emphasis_open_underscore] = ACTIONS(2973), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pandoc_line_break] = ACTIONS(2973), + [STATE(424)] = { + [anon_sym_COLON] = ACTIONS(2651), + [sym_entity_reference] = ACTIONS(2651), + [sym_numeric_character_reference] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_BANG_LBRACK] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [aux_sym_pandoc_str_token1] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2651), + [sym__whitespace] = ACTIONS(2651), + [sym__line_ending] = ACTIONS(2651), + [sym__soft_line_ending] = ACTIONS(2651), + [sym__block_close] = ACTIONS(2651), + [sym__block_quote_start] = ACTIONS(2651), + [sym_atx_h1_marker] = ACTIONS(2651), + [sym_atx_h2_marker] = ACTIONS(2651), + [sym_atx_h3_marker] = ACTIONS(2651), + [sym_atx_h4_marker] = ACTIONS(2651), + [sym_atx_h5_marker] = ACTIONS(2651), + [sym_atx_h6_marker] = ACTIONS(2651), + [sym__thematic_break] = ACTIONS(2651), + [sym__list_marker_minus] = ACTIONS(2651), + [sym__list_marker_plus] = ACTIONS(2651), + [sym__list_marker_star] = ACTIONS(2651), + [sym__list_marker_parenthesis] = ACTIONS(2651), + [sym__list_marker_dot] = ACTIONS(2651), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2651), + [sym__list_marker_example] = ACTIONS(2651), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2651), + [sym__fenced_code_block_start_backtick] = ACTIONS(2651), + [sym_minus_metadata] = ACTIONS(2651), + [sym__pipe_table_start] = ACTIONS(2651), + [sym__fenced_div_start] = ACTIONS(2651), + [sym_ref_id_specifier] = ACTIONS(2651), + [sym__code_span_start] = ACTIONS(2651), + [sym__html_comment] = ACTIONS(2651), + [sym__autolink] = ACTIONS(2651), + [sym__highlight_span_start] = ACTIONS(2651), + [sym__insert_span_start] = ACTIONS(2651), + [sym__delete_span_start] = ACTIONS(2651), + [sym__edit_comment_span_start] = ACTIONS(2651), + [sym__single_quote_span_open] = ACTIONS(2651), + [sym__double_quote_span_open] = ACTIONS(2651), + [sym__shortcode_open_escaped] = ACTIONS(2651), + [sym__shortcode_open] = ACTIONS(2651), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2651), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2651), + [sym__cite_author_in_text] = ACTIONS(2651), + [sym__cite_suppress_author] = ACTIONS(2651), + [sym__strikeout_open] = ACTIONS(2651), + [sym__subscript_open] = ACTIONS(2651), + [sym__superscript_open] = ACTIONS(2651), + [sym__inline_note_start_token] = ACTIONS(2651), + [sym__strong_emphasis_open_star] = ACTIONS(2651), + [sym__strong_emphasis_open_underscore] = ACTIONS(2651), + [sym__emphasis_open_star] = ACTIONS(2651), + [sym__emphasis_open_underscore] = ACTIONS(2651), + [sym_inline_note_reference] = ACTIONS(2651), + [sym_html_element] = ACTIONS(2651), + [sym__pandoc_line_break] = ACTIONS(2651), + [sym_grid_table] = ACTIONS(2651), }, - [STATE(401)] = { - [ts_builtin_sym_end] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [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] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), + [STATE(425)] = { + [ts_builtin_sym_end] = ACTIONS(2595), + [anon_sym_COLON] = ACTIONS(2595), + [sym_entity_reference] = ACTIONS(2595), + [sym_numeric_character_reference] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_BANG_LBRACK] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2597), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [aux_sym_pandoc_str_token1] = ACTIONS(2597), + [anon_sym_PIPE] = ACTIONS(2595), + [sym__whitespace] = ACTIONS(2595), + [sym__line_ending] = ACTIONS(2595), + [sym__soft_line_ending] = ACTIONS(2595), + [sym__block_quote_start] = ACTIONS(2595), + [sym_atx_h1_marker] = ACTIONS(2595), + [sym_atx_h2_marker] = ACTIONS(2595), + [sym_atx_h3_marker] = ACTIONS(2595), + [sym_atx_h4_marker] = ACTIONS(2595), + [sym_atx_h5_marker] = ACTIONS(2595), + [sym_atx_h6_marker] = ACTIONS(2595), + [sym__thematic_break] = ACTIONS(2595), + [sym__list_marker_minus] = ACTIONS(2595), + [sym__list_marker_plus] = ACTIONS(2595), + [sym__list_marker_star] = ACTIONS(2595), + [sym__list_marker_parenthesis] = ACTIONS(2595), + [sym__list_marker_dot] = ACTIONS(2595), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2595), + [sym__list_marker_example] = ACTIONS(2595), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2595), + [sym__fenced_code_block_start_backtick] = ACTIONS(2595), + [sym_minus_metadata] = ACTIONS(2595), + [sym__pipe_table_start] = ACTIONS(2595), + [sym__fenced_div_start] = ACTIONS(2595), + [sym_ref_id_specifier] = ACTIONS(2595), + [sym__code_span_start] = ACTIONS(2595), + [sym__html_comment] = ACTIONS(2595), + [sym__autolink] = ACTIONS(2595), + [sym__highlight_span_start] = ACTIONS(2595), + [sym__insert_span_start] = ACTIONS(2595), + [sym__delete_span_start] = ACTIONS(2595), + [sym__edit_comment_span_start] = ACTIONS(2595), + [sym__single_quote_span_open] = ACTIONS(2595), + [sym__double_quote_span_open] = ACTIONS(2595), + [sym__shortcode_open_escaped] = ACTIONS(2595), + [sym__shortcode_open] = ACTIONS(2595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2595), + [sym__cite_author_in_text] = ACTIONS(2595), + [sym__cite_suppress_author] = ACTIONS(2595), + [sym__strikeout_open] = ACTIONS(2595), + [sym__subscript_open] = ACTIONS(2595), + [sym__superscript_open] = ACTIONS(2595), + [sym__inline_note_start_token] = ACTIONS(2595), + [sym__strong_emphasis_open_star] = ACTIONS(2595), + [sym__strong_emphasis_open_underscore] = ACTIONS(2595), + [sym__emphasis_open_star] = ACTIONS(2595), + [sym__emphasis_open_underscore] = ACTIONS(2595), + [sym_inline_note_reference] = ACTIONS(2595), + [sym_html_element] = ACTIONS(2595), + [sym__pandoc_line_break] = ACTIONS(2595), + [sym_grid_table] = ACTIONS(2595), }, - [STATE(402)] = { - [ts_builtin_sym_end] = ACTIONS(2673), + [STATE(426)] = { [anon_sym_COLON] = ACTIONS(2673), [sym_entity_reference] = ACTIONS(2673), [sym_numeric_character_reference] = ACTIONS(2673), @@ -58252,6 +60242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -58303,505 +60294,4728 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(2673), [sym_html_element] = ACTIONS(2673), [sym__pandoc_line_break] = ACTIONS(2673), + [sym_grid_table] = ACTIONS(2673), }, - [STATE(403)] = { - [ts_builtin_sym_end] = ACTIONS(2677), - [anon_sym_COLON] = ACTIONS(2677), - [sym_entity_reference] = ACTIONS(2677), - [sym_numeric_character_reference] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_BANG_LBRACK] = ACTIONS(2677), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [aux_sym_pandoc_str_token1] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2677), - [sym__whitespace] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2677), - [sym__soft_line_ending] = ACTIONS(2677), - [sym__block_quote_start] = ACTIONS(2677), - [sym_atx_h1_marker] = ACTIONS(2677), - [sym_atx_h2_marker] = ACTIONS(2677), - [sym_atx_h3_marker] = ACTIONS(2677), - [sym_atx_h4_marker] = ACTIONS(2677), - [sym_atx_h5_marker] = ACTIONS(2677), - [sym_atx_h6_marker] = ACTIONS(2677), - [sym__thematic_break] = ACTIONS(2677), - [sym__list_marker_minus] = ACTIONS(2677), - [sym__list_marker_plus] = ACTIONS(2677), - [sym__list_marker_star] = ACTIONS(2677), - [sym__list_marker_parenthesis] = ACTIONS(2677), - [sym__list_marker_dot] = ACTIONS(2677), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_example] = ACTIONS(2677), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), - [sym__fenced_code_block_start_backtick] = ACTIONS(2677), - [sym_minus_metadata] = ACTIONS(2677), - [sym__pipe_table_start] = ACTIONS(2677), - [sym__fenced_div_start] = ACTIONS(2677), - [sym_ref_id_specifier] = ACTIONS(2677), - [sym__code_span_start] = ACTIONS(2677), - [sym__html_comment] = ACTIONS(2677), - [sym__autolink] = ACTIONS(2677), - [sym__highlight_span_start] = ACTIONS(2677), - [sym__insert_span_start] = ACTIONS(2677), - [sym__delete_span_start] = ACTIONS(2677), - [sym__edit_comment_span_start] = ACTIONS(2677), - [sym__single_quote_span_open] = ACTIONS(2677), - [sym__double_quote_span_open] = ACTIONS(2677), - [sym__shortcode_open_escaped] = ACTIONS(2677), - [sym__shortcode_open] = ACTIONS(2677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), - [sym__cite_author_in_text] = ACTIONS(2677), - [sym__cite_suppress_author] = ACTIONS(2677), - [sym__strikeout_open] = ACTIONS(2677), - [sym__subscript_open] = ACTIONS(2677), - [sym__superscript_open] = ACTIONS(2677), - [sym__inline_note_start_token] = ACTIONS(2677), - [sym__strong_emphasis_open_star] = ACTIONS(2677), - [sym__strong_emphasis_open_underscore] = ACTIONS(2677), - [sym__emphasis_open_star] = ACTIONS(2677), - [sym__emphasis_open_underscore] = ACTIONS(2677), - [sym_inline_note_reference] = ACTIONS(2677), - [sym_html_element] = ACTIONS(2677), - [sym__pandoc_line_break] = ACTIONS(2677), + [STATE(427)] = { + [anon_sym_COLON] = ACTIONS(2535), + [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] = 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_line_break] = ACTIONS(2535), + [sym_grid_table] = ACTIONS(2535), }, - [STATE(404)] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [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] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), + [STATE(428)] = { + [ts_builtin_sym_end] = ACTIONS(2471), + [anon_sym_COLON] = ACTIONS(2471), + [sym_entity_reference] = ACTIONS(2471), + [sym_numeric_character_reference] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_BANG_LBRACK] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [aux_sym_pandoc_str_token1] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2471), + [sym__whitespace] = ACTIONS(2471), + [sym__line_ending] = ACTIONS(2471), + [sym__soft_line_ending] = ACTIONS(2471), + [sym__block_quote_start] = ACTIONS(2471), + [sym_atx_h1_marker] = ACTIONS(2471), + [sym_atx_h2_marker] = ACTIONS(2471), + [sym_atx_h3_marker] = ACTIONS(2471), + [sym_atx_h4_marker] = ACTIONS(2471), + [sym_atx_h5_marker] = ACTIONS(2471), + [sym_atx_h6_marker] = ACTIONS(2471), + [sym__thematic_break] = ACTIONS(2471), + [sym__list_marker_minus] = ACTIONS(2471), + [sym__list_marker_plus] = ACTIONS(2471), + [sym__list_marker_star] = ACTIONS(2471), + [sym__list_marker_parenthesis] = ACTIONS(2471), + [sym__list_marker_dot] = ACTIONS(2471), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_example] = ACTIONS(2471), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2471), + [sym__fenced_code_block_start_backtick] = ACTIONS(2471), + [sym_minus_metadata] = ACTIONS(2471), + [sym__pipe_table_start] = ACTIONS(2471), + [sym__fenced_div_start] = ACTIONS(2471), + [sym_ref_id_specifier] = ACTIONS(2471), + [sym__code_span_start] = ACTIONS(2471), + [sym__html_comment] = ACTIONS(2471), + [sym__autolink] = ACTIONS(2471), + [sym__highlight_span_start] = ACTIONS(2471), + [sym__insert_span_start] = ACTIONS(2471), + [sym__delete_span_start] = ACTIONS(2471), + [sym__edit_comment_span_start] = ACTIONS(2471), + [sym__single_quote_span_open] = ACTIONS(2471), + [sym__double_quote_span_open] = ACTIONS(2471), + [sym__shortcode_open_escaped] = ACTIONS(2471), + [sym__shortcode_open] = ACTIONS(2471), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2471), + [sym__cite_author_in_text] = ACTIONS(2471), + [sym__cite_suppress_author] = ACTIONS(2471), + [sym__strikeout_open] = ACTIONS(2471), + [sym__subscript_open] = ACTIONS(2471), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2471), + [sym__strong_emphasis_open_star] = ACTIONS(2471), + [sym__strong_emphasis_open_underscore] = ACTIONS(2471), + [sym__emphasis_open_star] = ACTIONS(2471), + [sym__emphasis_open_underscore] = ACTIONS(2471), + [sym_inline_note_reference] = ACTIONS(2471), + [sym_html_element] = ACTIONS(2471), + [sym__pandoc_line_break] = ACTIONS(2471), + [sym_grid_table] = ACTIONS(2471), }, - [STATE(405)] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2561), + [STATE(429)] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2335), + [sym_grid_table] = ACTIONS(2335), }, - [STATE(406)] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [sym__whitespace] = ACTIONS(2687), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), + [STATE(430)] = { + [ts_builtin_sym_end] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2479), + [sym_entity_reference] = ACTIONS(2479), + [sym_numeric_character_reference] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_BANG_LBRACK] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [aux_sym_pandoc_str_token1] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2479), + [sym__whitespace] = ACTIONS(2479), + [sym__line_ending] = ACTIONS(2479), + [sym__soft_line_ending] = ACTIONS(2479), + [sym__block_quote_start] = ACTIONS(2479), + [sym_atx_h1_marker] = ACTIONS(2479), + [sym_atx_h2_marker] = ACTIONS(2479), + [sym_atx_h3_marker] = ACTIONS(2479), + [sym_atx_h4_marker] = ACTIONS(2479), + [sym_atx_h5_marker] = ACTIONS(2479), + [sym_atx_h6_marker] = ACTIONS(2479), + [sym__thematic_break] = ACTIONS(2479), + [sym__list_marker_minus] = ACTIONS(2479), + [sym__list_marker_plus] = ACTIONS(2479), + [sym__list_marker_star] = ACTIONS(2479), + [sym__list_marker_parenthesis] = ACTIONS(2479), + [sym__list_marker_dot] = ACTIONS(2479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_example] = ACTIONS(2479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2479), + [sym__fenced_code_block_start_backtick] = ACTIONS(2479), + [sym_minus_metadata] = ACTIONS(2479), + [sym__pipe_table_start] = ACTIONS(2479), + [sym__fenced_div_start] = ACTIONS(2479), + [sym_ref_id_specifier] = ACTIONS(2479), + [sym__code_span_start] = ACTIONS(2479), + [sym__html_comment] = ACTIONS(2479), + [sym__autolink] = ACTIONS(2479), + [sym__highlight_span_start] = ACTIONS(2479), + [sym__insert_span_start] = ACTIONS(2479), + [sym__delete_span_start] = ACTIONS(2479), + [sym__edit_comment_span_start] = ACTIONS(2479), + [sym__single_quote_span_open] = ACTIONS(2479), + [sym__double_quote_span_open] = ACTIONS(2479), + [sym__shortcode_open_escaped] = ACTIONS(2479), + [sym__shortcode_open] = ACTIONS(2479), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2479), + [sym__cite_author_in_text] = ACTIONS(2479), + [sym__cite_suppress_author] = ACTIONS(2479), + [sym__strikeout_open] = ACTIONS(2479), + [sym__subscript_open] = ACTIONS(2479), + [sym__superscript_open] = ACTIONS(2479), + [sym__inline_note_start_token] = ACTIONS(2479), + [sym__strong_emphasis_open_star] = ACTIONS(2479), + [sym__strong_emphasis_open_underscore] = ACTIONS(2479), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2479), + [sym_inline_note_reference] = ACTIONS(2479), + [sym_html_element] = ACTIONS(2479), + [sym__pandoc_line_break] = ACTIONS(2479), + [sym_grid_table] = ACTIONS(2479), }, - [STATE(407)] = { - [ts_builtin_sym_end] = ACTIONS(2691), - [anon_sym_COLON] = ACTIONS(2691), - [sym_entity_reference] = ACTIONS(2691), - [sym_numeric_character_reference] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_BANG_LBRACK] = ACTIONS(2691), - [anon_sym_DOLLAR] = ACTIONS(2693), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [aux_sym_pandoc_str_token1] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2691), - [sym__whitespace] = ACTIONS(2691), - [sym__line_ending] = ACTIONS(2691), - [sym__soft_line_ending] = ACTIONS(2691), - [sym__block_quote_start] = ACTIONS(2691), - [sym_atx_h1_marker] = ACTIONS(2691), - [sym_atx_h2_marker] = ACTIONS(2691), - [sym_atx_h3_marker] = ACTIONS(2691), - [sym_atx_h4_marker] = ACTIONS(2691), - [sym_atx_h5_marker] = ACTIONS(2691), - [sym_atx_h6_marker] = ACTIONS(2691), - [sym__thematic_break] = ACTIONS(2691), - [sym__list_marker_minus] = ACTIONS(2691), - [sym__list_marker_plus] = ACTIONS(2691), - [sym__list_marker_star] = ACTIONS(2691), - [sym__list_marker_parenthesis] = ACTIONS(2691), - [sym__list_marker_dot] = ACTIONS(2691), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2691), - [sym__list_marker_example] = ACTIONS(2691), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2691), - [sym__fenced_code_block_start_backtick] = ACTIONS(2691), - [sym_minus_metadata] = ACTIONS(2691), - [sym__pipe_table_start] = ACTIONS(2691), - [sym__fenced_div_start] = ACTIONS(2691), - [sym_ref_id_specifier] = ACTIONS(2691), - [sym__code_span_start] = ACTIONS(2691), - [sym__html_comment] = ACTIONS(2691), - [sym__autolink] = ACTIONS(2691), - [sym__highlight_span_start] = ACTIONS(2691), - [sym__insert_span_start] = ACTIONS(2691), - [sym__delete_span_start] = ACTIONS(2691), - [sym__edit_comment_span_start] = ACTIONS(2691), - [sym__single_quote_span_open] = ACTIONS(2691), - [sym__double_quote_span_open] = ACTIONS(2691), - [sym__shortcode_open_escaped] = ACTIONS(2691), - [sym__shortcode_open] = ACTIONS(2691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2691), - [sym__cite_author_in_text] = ACTIONS(2691), - [sym__cite_suppress_author] = ACTIONS(2691), - [sym__strikeout_open] = ACTIONS(2691), - [sym__subscript_open] = ACTIONS(2691), - [sym__superscript_open] = ACTIONS(2691), - [sym__inline_note_start_token] = ACTIONS(2691), - [sym__strong_emphasis_open_star] = ACTIONS(2691), - [sym__strong_emphasis_open_underscore] = ACTIONS(2691), - [sym__emphasis_open_star] = ACTIONS(2691), - [sym__emphasis_open_underscore] = ACTIONS(2691), - [sym_inline_note_reference] = ACTIONS(2691), - [sym_html_element] = ACTIONS(2691), - [sym__pandoc_line_break] = ACTIONS(2691), + [STATE(431)] = { + [ts_builtin_sym_end] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2837), + [sym_entity_reference] = ACTIONS(2837), + [sym_numeric_character_reference] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_BANG_LBRACK] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [aux_sym_pandoc_str_token1] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2837), + [sym__whitespace] = ACTIONS(2837), + [sym__line_ending] = ACTIONS(2837), + [sym__soft_line_ending] = ACTIONS(2837), + [sym__block_quote_start] = ACTIONS(2837), + [sym_atx_h1_marker] = ACTIONS(2837), + [sym_atx_h2_marker] = ACTIONS(2837), + [sym_atx_h3_marker] = ACTIONS(2837), + [sym_atx_h4_marker] = ACTIONS(2837), + [sym_atx_h5_marker] = ACTIONS(2837), + [sym_atx_h6_marker] = ACTIONS(2837), + [sym__thematic_break] = ACTIONS(2837), + [sym__list_marker_minus] = ACTIONS(2837), + [sym__list_marker_plus] = ACTIONS(2837), + [sym__list_marker_star] = ACTIONS(2837), + [sym__list_marker_parenthesis] = ACTIONS(2837), + [sym__list_marker_dot] = ACTIONS(2837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_example] = ACTIONS(2837), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2837), + [sym__fenced_code_block_start_backtick] = ACTIONS(2837), + [sym_minus_metadata] = ACTIONS(2837), + [sym__pipe_table_start] = ACTIONS(2837), + [sym__fenced_div_start] = ACTIONS(2837), + [sym_ref_id_specifier] = ACTIONS(2837), + [sym__code_span_start] = ACTIONS(2837), + [sym__html_comment] = ACTIONS(2837), + [sym__autolink] = ACTIONS(2837), + [sym__highlight_span_start] = ACTIONS(2837), + [sym__insert_span_start] = ACTIONS(2837), + [sym__delete_span_start] = ACTIONS(2837), + [sym__edit_comment_span_start] = ACTIONS(2837), + [sym__single_quote_span_open] = ACTIONS(2837), + [sym__double_quote_span_open] = ACTIONS(2837), + [sym__shortcode_open_escaped] = ACTIONS(2837), + [sym__shortcode_open] = ACTIONS(2837), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2837), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2837), + [sym__cite_author_in_text] = ACTIONS(2837), + [sym__cite_suppress_author] = ACTIONS(2837), + [sym__strikeout_open] = ACTIONS(2837), + [sym__subscript_open] = ACTIONS(2837), + [sym__superscript_open] = ACTIONS(2837), + [sym__inline_note_start_token] = ACTIONS(2837), + [sym__strong_emphasis_open_star] = ACTIONS(2837), + [sym__strong_emphasis_open_underscore] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2837), + [sym__emphasis_open_underscore] = ACTIONS(2837), + [sym_inline_note_reference] = ACTIONS(2837), + [sym_html_element] = ACTIONS(2837), + [sym__pandoc_line_break] = ACTIONS(2837), + [sym_grid_table] = ACTIONS(2837), }, - [STATE(408)] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [anon_sym_COLON] = ACTIONS(2695), - [sym_entity_reference] = ACTIONS(2695), - [sym_numeric_character_reference] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_BANG_LBRACK] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(2697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2695), - [aux_sym_pandoc_str_token1] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2695), - [sym__whitespace] = ACTIONS(2695), - [sym__line_ending] = ACTIONS(2695), - [sym__soft_line_ending] = ACTIONS(2695), - [sym__block_quote_start] = ACTIONS(2695), - [sym_atx_h1_marker] = ACTIONS(2695), - [sym_atx_h2_marker] = ACTIONS(2695), - [sym_atx_h3_marker] = ACTIONS(2695), - [sym_atx_h4_marker] = ACTIONS(2695), - [sym_atx_h5_marker] = ACTIONS(2695), - [sym_atx_h6_marker] = ACTIONS(2695), - [sym__thematic_break] = ACTIONS(2695), - [sym__list_marker_minus] = ACTIONS(2695), - [sym__list_marker_plus] = ACTIONS(2695), - [sym__list_marker_star] = ACTIONS(2695), - [sym__list_marker_parenthesis] = ACTIONS(2695), - [sym__list_marker_dot] = ACTIONS(2695), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2695), - [sym__list_marker_example] = ACTIONS(2695), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2695), - [sym__fenced_code_block_start_backtick] = ACTIONS(2695), - [sym_minus_metadata] = ACTIONS(2695), - [sym__pipe_table_start] = ACTIONS(2695), - [sym__fenced_div_start] = ACTIONS(2695), - [sym_ref_id_specifier] = ACTIONS(2695), - [sym__code_span_start] = ACTIONS(2695), - [sym__html_comment] = ACTIONS(2695), - [sym__autolink] = ACTIONS(2695), - [sym__highlight_span_start] = ACTIONS(2695), - [sym__insert_span_start] = ACTIONS(2695), - [sym__delete_span_start] = ACTIONS(2695), - [sym__edit_comment_span_start] = ACTIONS(2695), - [sym__single_quote_span_open] = ACTIONS(2695), - [sym__double_quote_span_open] = ACTIONS(2695), - [sym__shortcode_open_escaped] = ACTIONS(2695), - [sym__shortcode_open] = ACTIONS(2695), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2695), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2695), - [sym__cite_author_in_text] = ACTIONS(2695), - [sym__cite_suppress_author] = ACTIONS(2695), - [sym__strikeout_open] = ACTIONS(2695), - [sym__subscript_open] = ACTIONS(2695), - [sym__superscript_open] = ACTIONS(2695), - [sym__inline_note_start_token] = ACTIONS(2695), - [sym__strong_emphasis_open_star] = ACTIONS(2695), - [sym__strong_emphasis_open_underscore] = ACTIONS(2695), - [sym__emphasis_open_star] = ACTIONS(2695), - [sym__emphasis_open_underscore] = ACTIONS(2695), - [sym_inline_note_reference] = ACTIONS(2695), - [sym_html_element] = ACTIONS(2695), - [sym__pandoc_line_break] = ACTIONS(2695), + [STATE(432)] = { + [ts_builtin_sym_end] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [sym_entity_reference] = ACTIONS(2841), + [sym_numeric_character_reference] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [aux_sym_pandoc_str_token1] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2841), + [sym__whitespace] = ACTIONS(2841), + [sym__line_ending] = ACTIONS(2841), + [sym__soft_line_ending] = ACTIONS(2841), + [sym__block_quote_start] = ACTIONS(2841), + [sym_atx_h1_marker] = ACTIONS(2841), + [sym_atx_h2_marker] = ACTIONS(2841), + [sym_atx_h3_marker] = ACTIONS(2841), + [sym_atx_h4_marker] = ACTIONS(2841), + [sym_atx_h5_marker] = ACTIONS(2841), + [sym_atx_h6_marker] = ACTIONS(2841), + [sym__thematic_break] = ACTIONS(2841), + [sym__list_marker_minus] = ACTIONS(2841), + [sym__list_marker_plus] = ACTIONS(2841), + [sym__list_marker_star] = ACTIONS(2841), + [sym__list_marker_parenthesis] = ACTIONS(2841), + [sym__list_marker_dot] = ACTIONS(2841), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_example] = ACTIONS(2841), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2841), + [sym__fenced_code_block_start_backtick] = ACTIONS(2841), + [sym_minus_metadata] = ACTIONS(2841), + [sym__pipe_table_start] = ACTIONS(2841), + [sym__fenced_div_start] = ACTIONS(2841), + [sym_ref_id_specifier] = ACTIONS(2841), + [sym__code_span_start] = ACTIONS(2841), + [sym__html_comment] = ACTIONS(2841), + [sym__autolink] = ACTIONS(2841), + [sym__highlight_span_start] = ACTIONS(2841), + [sym__insert_span_start] = ACTIONS(2841), + [sym__delete_span_start] = ACTIONS(2841), + [sym__edit_comment_span_start] = ACTIONS(2841), + [sym__single_quote_span_open] = ACTIONS(2841), + [sym__double_quote_span_open] = ACTIONS(2841), + [sym__shortcode_open_escaped] = ACTIONS(2841), + [sym__shortcode_open] = ACTIONS(2841), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2841), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2841), + [sym__cite_author_in_text] = ACTIONS(2841), + [sym__cite_suppress_author] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(2841), + [sym__subscript_open] = ACTIONS(2841), + [sym__superscript_open] = ACTIONS(2841), + [sym__inline_note_start_token] = ACTIONS(2841), + [sym__strong_emphasis_open_star] = ACTIONS(2841), + [sym__strong_emphasis_open_underscore] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2841), + [sym__emphasis_open_underscore] = ACTIONS(2841), + [sym_inline_note_reference] = ACTIONS(2841), + [sym_html_element] = ACTIONS(2841), + [sym__pandoc_line_break] = ACTIONS(2841), + [sym_grid_table] = ACTIONS(2841), }, - [STATE(409)] = { - [ts_builtin_sym_end] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2581), - [sym_entity_reference] = ACTIONS(2581), - [sym_numeric_character_reference] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [aux_sym_pandoc_str_token1] = ACTIONS(2583), - [anon_sym_PIPE] = ACTIONS(2581), - [sym__whitespace] = ACTIONS(2581), - [sym__line_ending] = ACTIONS(2581), - [sym__soft_line_ending] = ACTIONS(2581), - [sym__block_quote_start] = ACTIONS(2581), - [sym_atx_h1_marker] = ACTIONS(2581), - [sym_atx_h2_marker] = ACTIONS(2581), - [sym_atx_h3_marker] = ACTIONS(2581), - [sym_atx_h4_marker] = ACTIONS(2581), - [sym_atx_h5_marker] = ACTIONS(2581), - [sym_atx_h6_marker] = ACTIONS(2581), - [sym__thematic_break] = ACTIONS(2581), - [sym__list_marker_minus] = ACTIONS(2581), - [sym__list_marker_plus] = ACTIONS(2581), - [sym__list_marker_star] = ACTIONS(2581), - [sym__list_marker_parenthesis] = ACTIONS(2581), - [sym__list_marker_dot] = ACTIONS(2581), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_example] = ACTIONS(2581), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2581), - [sym__fenced_code_block_start_backtick] = ACTIONS(2581), - [sym_minus_metadata] = ACTIONS(2581), - [sym__pipe_table_start] = ACTIONS(2581), - [sym__fenced_div_start] = ACTIONS(2581), - [sym_ref_id_specifier] = ACTIONS(2581), - [sym__code_span_start] = ACTIONS(2581), - [sym__html_comment] = ACTIONS(2581), - [sym__autolink] = ACTIONS(2581), - [sym__highlight_span_start] = ACTIONS(2581), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2581), - [sym__edit_comment_span_start] = ACTIONS(2581), - [sym__single_quote_span_open] = ACTIONS(2581), - [sym__double_quote_span_open] = ACTIONS(2581), - [sym__shortcode_open_escaped] = ACTIONS(2581), - [sym__shortcode_open] = ACTIONS(2581), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2581), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2581), - [sym__cite_author_in_text] = ACTIONS(2581), - [sym__cite_suppress_author] = ACTIONS(2581), - [sym__strikeout_open] = ACTIONS(2581), - [sym__subscript_open] = ACTIONS(2581), - [sym__superscript_open] = ACTIONS(2581), - [sym__inline_note_start_token] = ACTIONS(2581), - [sym__strong_emphasis_open_star] = ACTIONS(2581), - [sym__strong_emphasis_open_underscore] = ACTIONS(2581), - [sym__emphasis_open_star] = ACTIONS(2581), - [sym__emphasis_open_underscore] = ACTIONS(2581), - [sym_inline_note_reference] = ACTIONS(2581), - [sym_html_element] = ACTIONS(2581), - [sym__pandoc_line_break] = ACTIONS(2581), + [STATE(433)] = { + [ts_builtin_sym_end] = ACTIONS(2845), + [anon_sym_COLON] = ACTIONS(2845), + [sym_entity_reference] = ACTIONS(2845), + [sym_numeric_character_reference] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2845), + [anon_sym_DOLLAR] = ACTIONS(2847), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_pandoc_str_token1] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(2845), + [sym__line_ending] = ACTIONS(2845), + [sym__soft_line_ending] = ACTIONS(2845), + [sym__block_quote_start] = ACTIONS(2845), + [sym_atx_h1_marker] = ACTIONS(2845), + [sym_atx_h2_marker] = ACTIONS(2845), + [sym_atx_h3_marker] = ACTIONS(2845), + [sym_atx_h4_marker] = ACTIONS(2845), + [sym_atx_h5_marker] = ACTIONS(2845), + [sym_atx_h6_marker] = ACTIONS(2845), + [sym__thematic_break] = ACTIONS(2845), + [sym__list_marker_minus] = ACTIONS(2845), + [sym__list_marker_plus] = ACTIONS(2845), + [sym__list_marker_star] = ACTIONS(2845), + [sym__list_marker_parenthesis] = ACTIONS(2845), + [sym__list_marker_dot] = ACTIONS(2845), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_example] = ACTIONS(2845), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2845), + [sym__fenced_code_block_start_backtick] = ACTIONS(2845), + [sym_minus_metadata] = ACTIONS(2845), + [sym__pipe_table_start] = ACTIONS(2845), + [sym__fenced_div_start] = ACTIONS(2845), + [sym_ref_id_specifier] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2845), + [sym__html_comment] = ACTIONS(2845), + [sym__autolink] = ACTIONS(2845), + [sym__highlight_span_start] = ACTIONS(2845), + [sym__insert_span_start] = ACTIONS(2845), + [sym__delete_span_start] = ACTIONS(2845), + [sym__edit_comment_span_start] = ACTIONS(2845), + [sym__single_quote_span_open] = ACTIONS(2845), + [sym__double_quote_span_open] = ACTIONS(2845), + [sym__shortcode_open_escaped] = ACTIONS(2845), + [sym__shortcode_open] = ACTIONS(2845), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2845), + [sym__cite_author_in_text] = ACTIONS(2845), + [sym__cite_suppress_author] = ACTIONS(2845), + [sym__strikeout_open] = ACTIONS(2845), + [sym__subscript_open] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(2845), + [sym__inline_note_start_token] = ACTIONS(2845), + [sym__strong_emphasis_open_star] = ACTIONS(2845), + [sym__strong_emphasis_open_underscore] = ACTIONS(2845), + [sym__emphasis_open_star] = ACTIONS(2845), + [sym__emphasis_open_underscore] = ACTIONS(2845), + [sym_inline_note_reference] = ACTIONS(2845), + [sym_html_element] = ACTIONS(2845), + [sym__pandoc_line_break] = ACTIONS(2845), + [sym_grid_table] = ACTIONS(2845), }, - [STATE(410)] = { - [sym__atx_heading_content] = STATE(3097), - [sym__inlines] = STATE(3097), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(424), - [sym_entity_reference] = ACTIONS(7), + [STATE(434)] = { + [ts_builtin_sym_end] = ACTIONS(2849), + [anon_sym_COLON] = ACTIONS(2849), + [sym_entity_reference] = ACTIONS(2849), + [sym_numeric_character_reference] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_BANG_LBRACK] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2851), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_pandoc_str_token1] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2849), + [sym__whitespace] = ACTIONS(2849), + [sym__line_ending] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2849), + [sym__block_quote_start] = ACTIONS(2849), + [sym_atx_h1_marker] = ACTIONS(2849), + [sym_atx_h2_marker] = ACTIONS(2849), + [sym_atx_h3_marker] = ACTIONS(2849), + [sym_atx_h4_marker] = ACTIONS(2849), + [sym_atx_h5_marker] = ACTIONS(2849), + [sym_atx_h6_marker] = ACTIONS(2849), + [sym__thematic_break] = ACTIONS(2849), + [sym__list_marker_minus] = ACTIONS(2849), + [sym__list_marker_plus] = ACTIONS(2849), + [sym__list_marker_star] = ACTIONS(2849), + [sym__list_marker_parenthesis] = ACTIONS(2849), + [sym__list_marker_dot] = ACTIONS(2849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_example] = ACTIONS(2849), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), + [sym__fenced_code_block_start_backtick] = ACTIONS(2849), + [sym_minus_metadata] = ACTIONS(2849), + [sym__pipe_table_start] = ACTIONS(2849), + [sym__fenced_div_start] = ACTIONS(2849), + [sym_ref_id_specifier] = ACTIONS(2849), + [sym__code_span_start] = ACTIONS(2849), + [sym__html_comment] = ACTIONS(2849), + [sym__autolink] = ACTIONS(2849), + [sym__highlight_span_start] = ACTIONS(2849), + [sym__insert_span_start] = ACTIONS(2849), + [sym__delete_span_start] = ACTIONS(2849), + [sym__edit_comment_span_start] = ACTIONS(2849), + [sym__single_quote_span_open] = ACTIONS(2849), + [sym__double_quote_span_open] = ACTIONS(2849), + [sym__shortcode_open_escaped] = ACTIONS(2849), + [sym__shortcode_open] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), + [sym__cite_author_in_text] = ACTIONS(2849), + [sym__cite_suppress_author] = ACTIONS(2849), + [sym__strikeout_open] = ACTIONS(2849), + [sym__subscript_open] = ACTIONS(2849), + [sym__superscript_open] = ACTIONS(2849), + [sym__inline_note_start_token] = ACTIONS(2849), + [sym__strong_emphasis_open_star] = ACTIONS(2849), + [sym__strong_emphasis_open_underscore] = ACTIONS(2849), + [sym__emphasis_open_star] = ACTIONS(2849), + [sym__emphasis_open_underscore] = ACTIONS(2849), + [sym_inline_note_reference] = ACTIONS(2849), + [sym_html_element] = ACTIONS(2849), + [sym__pandoc_line_break] = ACTIONS(2849), + [sym_grid_table] = ACTIONS(2849), + }, + [STATE(435)] = { + [ts_builtin_sym_end] = ACTIONS(2639), + [anon_sym_COLON] = ACTIONS(2639), + [sym_entity_reference] = ACTIONS(2639), + [sym_numeric_character_reference] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_BANG_LBRACK] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2641), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [aux_sym_pandoc_str_token1] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2639), + [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] = ACTIONS(2639), + [sym__pipe_table_start] = ACTIONS(2639), + [sym__fenced_div_start] = ACTIONS(2639), + [sym_ref_id_specifier] = ACTIONS(2639), + [sym__code_span_start] = ACTIONS(2639), + [sym__html_comment] = ACTIONS(2639), + [sym__autolink] = ACTIONS(2639), + [sym__highlight_span_start] = ACTIONS(2639), + [sym__insert_span_start] = ACTIONS(2639), + [sym__delete_span_start] = ACTIONS(2639), + [sym__edit_comment_span_start] = ACTIONS(2639), + [sym__single_quote_span_open] = ACTIONS(2639), + [sym__double_quote_span_open] = ACTIONS(2639), + [sym__shortcode_open_escaped] = ACTIONS(2639), + [sym__shortcode_open] = ACTIONS(2639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2639), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2639), + [sym__cite_author_in_text] = ACTIONS(2639), + [sym__cite_suppress_author] = ACTIONS(2639), + [sym__strikeout_open] = ACTIONS(2639), + [sym__subscript_open] = ACTIONS(2639), + [sym__superscript_open] = ACTIONS(2639), + [sym__inline_note_start_token] = ACTIONS(2639), + [sym__strong_emphasis_open_star] = ACTIONS(2639), + [sym__strong_emphasis_open_underscore] = ACTIONS(2639), + [sym__emphasis_open_star] = ACTIONS(2639), + [sym__emphasis_open_underscore] = ACTIONS(2639), + [sym_inline_note_reference] = ACTIONS(2639), + [sym_html_element] = ACTIONS(2639), + [sym__pandoc_line_break] = ACTIONS(2639), + [sym_grid_table] = ACTIONS(2639), + }, + [STATE(436)] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), + [sym_grid_table] = ACTIONS(2407), + }, + [STATE(437)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2335), + [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_line_break] = ACTIONS(2335), + [sym_grid_table] = ACTIONS(2335), + }, + [STATE(438)] = { + [ts_builtin_sym_end] = ACTIONS(2411), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + }, + [STATE(439)] = { + [anon_sym_COLON] = ACTIONS(2837), + [sym_entity_reference] = ACTIONS(2837), + [sym_numeric_character_reference] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_BANG_LBRACK] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [aux_sym_pandoc_str_token1] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2837), + [sym__whitespace] = ACTIONS(2837), + [sym__line_ending] = ACTIONS(2837), + [sym__soft_line_ending] = ACTIONS(2837), + [sym__block_close] = ACTIONS(2837), + [sym__block_quote_start] = ACTIONS(2837), + [sym_atx_h1_marker] = ACTIONS(2837), + [sym_atx_h2_marker] = ACTIONS(2837), + [sym_atx_h3_marker] = ACTIONS(2837), + [sym_atx_h4_marker] = ACTIONS(2837), + [sym_atx_h5_marker] = ACTIONS(2837), + [sym_atx_h6_marker] = ACTIONS(2837), + [sym__thematic_break] = ACTIONS(2837), + [sym__list_marker_minus] = ACTIONS(2837), + [sym__list_marker_plus] = ACTIONS(2837), + [sym__list_marker_star] = ACTIONS(2837), + [sym__list_marker_parenthesis] = ACTIONS(2837), + [sym__list_marker_dot] = ACTIONS(2837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_example] = ACTIONS(2837), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2837), + [sym__fenced_code_block_start_backtick] = ACTIONS(2837), + [sym_minus_metadata] = ACTIONS(2837), + [sym__pipe_table_start] = ACTIONS(2837), + [sym__fenced_div_start] = ACTIONS(2837), + [sym_ref_id_specifier] = ACTIONS(2837), + [sym__code_span_start] = ACTIONS(2837), + [sym__html_comment] = ACTIONS(2837), + [sym__autolink] = ACTIONS(2837), + [sym__highlight_span_start] = ACTIONS(2837), + [sym__insert_span_start] = ACTIONS(2837), + [sym__delete_span_start] = ACTIONS(2837), + [sym__edit_comment_span_start] = ACTIONS(2837), + [sym__single_quote_span_open] = ACTIONS(2837), + [sym__double_quote_span_open] = ACTIONS(2837), + [sym__shortcode_open_escaped] = ACTIONS(2837), + [sym__shortcode_open] = ACTIONS(2837), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2837), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2837), + [sym__cite_author_in_text] = ACTIONS(2837), + [sym__cite_suppress_author] = ACTIONS(2837), + [sym__strikeout_open] = ACTIONS(2837), + [sym__subscript_open] = ACTIONS(2837), + [sym__superscript_open] = ACTIONS(2837), + [sym__inline_note_start_token] = ACTIONS(2837), + [sym__strong_emphasis_open_star] = ACTIONS(2837), + [sym__strong_emphasis_open_underscore] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2837), + [sym__emphasis_open_underscore] = ACTIONS(2837), + [sym_inline_note_reference] = ACTIONS(2837), + [sym_html_element] = ACTIONS(2837), + [sym__pandoc_line_break] = ACTIONS(2837), + [sym_grid_table] = ACTIONS(2837), + }, + [STATE(440)] = { + [anon_sym_COLON] = ACTIONS(2841), + [sym_entity_reference] = ACTIONS(2841), + [sym_numeric_character_reference] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [aux_sym_pandoc_str_token1] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2841), + [sym__whitespace] = ACTIONS(2841), + [sym__line_ending] = ACTIONS(2841), + [sym__soft_line_ending] = ACTIONS(2841), + [sym__block_close] = ACTIONS(2841), + [sym__block_quote_start] = ACTIONS(2841), + [sym_atx_h1_marker] = ACTIONS(2841), + [sym_atx_h2_marker] = ACTIONS(2841), + [sym_atx_h3_marker] = ACTIONS(2841), + [sym_atx_h4_marker] = ACTIONS(2841), + [sym_atx_h5_marker] = ACTIONS(2841), + [sym_atx_h6_marker] = ACTIONS(2841), + [sym__thematic_break] = ACTIONS(2841), + [sym__list_marker_minus] = ACTIONS(2841), + [sym__list_marker_plus] = ACTIONS(2841), + [sym__list_marker_star] = ACTIONS(2841), + [sym__list_marker_parenthesis] = ACTIONS(2841), + [sym__list_marker_dot] = ACTIONS(2841), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_example] = ACTIONS(2841), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2841), + [sym__fenced_code_block_start_backtick] = ACTIONS(2841), + [sym_minus_metadata] = ACTIONS(2841), + [sym__pipe_table_start] = ACTIONS(2841), + [sym__fenced_div_start] = ACTIONS(2841), + [sym_ref_id_specifier] = ACTIONS(2841), + [sym__code_span_start] = ACTIONS(2841), + [sym__html_comment] = ACTIONS(2841), + [sym__autolink] = ACTIONS(2841), + [sym__highlight_span_start] = ACTIONS(2841), + [sym__insert_span_start] = ACTIONS(2841), + [sym__delete_span_start] = ACTIONS(2841), + [sym__edit_comment_span_start] = ACTIONS(2841), + [sym__single_quote_span_open] = ACTIONS(2841), + [sym__double_quote_span_open] = ACTIONS(2841), + [sym__shortcode_open_escaped] = ACTIONS(2841), + [sym__shortcode_open] = ACTIONS(2841), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2841), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2841), + [sym__cite_author_in_text] = ACTIONS(2841), + [sym__cite_suppress_author] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(2841), + [sym__subscript_open] = ACTIONS(2841), + [sym__superscript_open] = ACTIONS(2841), + [sym__inline_note_start_token] = ACTIONS(2841), + [sym__strong_emphasis_open_star] = ACTIONS(2841), + [sym__strong_emphasis_open_underscore] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2841), + [sym__emphasis_open_underscore] = ACTIONS(2841), + [sym_inline_note_reference] = ACTIONS(2841), + [sym_html_element] = ACTIONS(2841), + [sym__pandoc_line_break] = ACTIONS(2841), + [sym_grid_table] = ACTIONS(2841), + }, + [STATE(441)] = { + [anon_sym_COLON] = ACTIONS(2845), + [sym_entity_reference] = ACTIONS(2845), + [sym_numeric_character_reference] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2845), + [anon_sym_DOLLAR] = ACTIONS(2847), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_pandoc_str_token1] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(2845), + [sym__line_ending] = ACTIONS(2845), + [sym__soft_line_ending] = ACTIONS(2845), + [sym__block_close] = ACTIONS(2845), + [sym__block_quote_start] = ACTIONS(2845), + [sym_atx_h1_marker] = ACTIONS(2845), + [sym_atx_h2_marker] = ACTIONS(2845), + [sym_atx_h3_marker] = ACTIONS(2845), + [sym_atx_h4_marker] = ACTIONS(2845), + [sym_atx_h5_marker] = ACTIONS(2845), + [sym_atx_h6_marker] = ACTIONS(2845), + [sym__thematic_break] = ACTIONS(2845), + [sym__list_marker_minus] = ACTIONS(2845), + [sym__list_marker_plus] = ACTIONS(2845), + [sym__list_marker_star] = ACTIONS(2845), + [sym__list_marker_parenthesis] = ACTIONS(2845), + [sym__list_marker_dot] = ACTIONS(2845), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_example] = ACTIONS(2845), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2845), + [sym__fenced_code_block_start_backtick] = ACTIONS(2845), + [sym_minus_metadata] = ACTIONS(2845), + [sym__pipe_table_start] = ACTIONS(2845), + [sym__fenced_div_start] = ACTIONS(2845), + [sym_ref_id_specifier] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2845), + [sym__html_comment] = ACTIONS(2845), + [sym__autolink] = ACTIONS(2845), + [sym__highlight_span_start] = ACTIONS(2845), + [sym__insert_span_start] = ACTIONS(2845), + [sym__delete_span_start] = ACTIONS(2845), + [sym__edit_comment_span_start] = ACTIONS(2845), + [sym__single_quote_span_open] = ACTIONS(2845), + [sym__double_quote_span_open] = ACTIONS(2845), + [sym__shortcode_open_escaped] = ACTIONS(2845), + [sym__shortcode_open] = ACTIONS(2845), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2845), + [sym__cite_author_in_text] = ACTIONS(2845), + [sym__cite_suppress_author] = ACTIONS(2845), + [sym__strikeout_open] = ACTIONS(2845), + [sym__subscript_open] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(2845), + [sym__inline_note_start_token] = ACTIONS(2845), + [sym__strong_emphasis_open_star] = ACTIONS(2845), + [sym__strong_emphasis_open_underscore] = ACTIONS(2845), + [sym__emphasis_open_star] = ACTIONS(2845), + [sym__emphasis_open_underscore] = ACTIONS(2845), + [sym_inline_note_reference] = ACTIONS(2845), + [sym_html_element] = ACTIONS(2845), + [sym__pandoc_line_break] = ACTIONS(2845), + [sym_grid_table] = ACTIONS(2845), + }, + [STATE(442)] = { + [anon_sym_COLON] = ACTIONS(2849), + [sym_entity_reference] = ACTIONS(2849), + [sym_numeric_character_reference] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_BANG_LBRACK] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2851), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_pandoc_str_token1] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2849), + [sym__whitespace] = ACTIONS(2849), + [sym__line_ending] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2849), + [sym__block_close] = ACTIONS(2849), + [sym__block_quote_start] = ACTIONS(2849), + [sym_atx_h1_marker] = ACTIONS(2849), + [sym_atx_h2_marker] = ACTIONS(2849), + [sym_atx_h3_marker] = ACTIONS(2849), + [sym_atx_h4_marker] = ACTIONS(2849), + [sym_atx_h5_marker] = ACTIONS(2849), + [sym_atx_h6_marker] = ACTIONS(2849), + [sym__thematic_break] = ACTIONS(2849), + [sym__list_marker_minus] = ACTIONS(2849), + [sym__list_marker_plus] = ACTIONS(2849), + [sym__list_marker_star] = ACTIONS(2849), + [sym__list_marker_parenthesis] = ACTIONS(2849), + [sym__list_marker_dot] = ACTIONS(2849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_example] = ACTIONS(2849), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), + [sym__fenced_code_block_start_backtick] = ACTIONS(2849), + [sym_minus_metadata] = ACTIONS(2849), + [sym__pipe_table_start] = ACTIONS(2849), + [sym__fenced_div_start] = ACTIONS(2849), + [sym_ref_id_specifier] = ACTIONS(2849), + [sym__code_span_start] = ACTIONS(2849), + [sym__html_comment] = ACTIONS(2849), + [sym__autolink] = ACTIONS(2849), + [sym__highlight_span_start] = ACTIONS(2849), + [sym__insert_span_start] = ACTIONS(2849), + [sym__delete_span_start] = ACTIONS(2849), + [sym__edit_comment_span_start] = ACTIONS(2849), + [sym__single_quote_span_open] = ACTIONS(2849), + [sym__double_quote_span_open] = ACTIONS(2849), + [sym__shortcode_open_escaped] = ACTIONS(2849), + [sym__shortcode_open] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), + [sym__cite_author_in_text] = ACTIONS(2849), + [sym__cite_suppress_author] = ACTIONS(2849), + [sym__strikeout_open] = ACTIONS(2849), + [sym__subscript_open] = ACTIONS(2849), + [sym__superscript_open] = ACTIONS(2849), + [sym__inline_note_start_token] = ACTIONS(2849), + [sym__strong_emphasis_open_star] = ACTIONS(2849), + [sym__strong_emphasis_open_underscore] = ACTIONS(2849), + [sym__emphasis_open_star] = ACTIONS(2849), + [sym__emphasis_open_underscore] = ACTIONS(2849), + [sym_inline_note_reference] = ACTIONS(2849), + [sym_html_element] = ACTIONS(2849), + [sym__pandoc_line_break] = ACTIONS(2849), + [sym_grid_table] = ACTIONS(2849), + }, + [STATE(443)] = { + [anon_sym_COLON] = ACTIONS(2639), + [sym_entity_reference] = ACTIONS(2639), + [sym_numeric_character_reference] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_BANG_LBRACK] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2641), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [aux_sym_pandoc_str_token1] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2639), + [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] = ACTIONS(2639), + [sym__pipe_table_start] = ACTIONS(2639), + [sym__fenced_div_start] = ACTIONS(2639), + [sym_ref_id_specifier] = ACTIONS(2639), + [sym__code_span_start] = ACTIONS(2639), + [sym__html_comment] = ACTIONS(2639), + [sym__autolink] = ACTIONS(2639), + [sym__highlight_span_start] = ACTIONS(2639), + [sym__insert_span_start] = ACTIONS(2639), + [sym__delete_span_start] = ACTIONS(2639), + [sym__edit_comment_span_start] = ACTIONS(2639), + [sym__single_quote_span_open] = ACTIONS(2639), + [sym__double_quote_span_open] = ACTIONS(2639), + [sym__shortcode_open_escaped] = ACTIONS(2639), + [sym__shortcode_open] = ACTIONS(2639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2639), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2639), + [sym__cite_author_in_text] = ACTIONS(2639), + [sym__cite_suppress_author] = ACTIONS(2639), + [sym__strikeout_open] = ACTIONS(2639), + [sym__subscript_open] = ACTIONS(2639), + [sym__superscript_open] = ACTIONS(2639), + [sym__inline_note_start_token] = ACTIONS(2639), + [sym__strong_emphasis_open_star] = ACTIONS(2639), + [sym__strong_emphasis_open_underscore] = ACTIONS(2639), + [sym__emphasis_open_star] = ACTIONS(2639), + [sym__emphasis_open_underscore] = ACTIONS(2639), + [sym_inline_note_reference] = ACTIONS(2639), + [sym_html_element] = ACTIONS(2639), + [sym__pandoc_line_break] = ACTIONS(2639), + [sym_grid_table] = ACTIONS(2639), + }, + [STATE(444)] = { + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_close] = ACTIONS(2407), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), + [sym_grid_table] = ACTIONS(2407), + }, + [STATE(445)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + }, + [STATE(446)] = { + [sym_pipe_table_cell] = STATE(2848), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2873), + [sym__line_ending] = ACTIONS(2875), + [sym__eof] = ACTIONS(2875), + [sym__pipe_table_line_ending] = ACTIONS(2875), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2883), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(447)] = { + [sym_pipe_table_cell] = STATE(2854), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(450), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2885), + [sym__line_ending] = ACTIONS(2887), + [sym__eof] = ACTIONS(2887), + [sym__pipe_table_line_ending] = ACTIONS(2887), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(448)] = { + [sym_pipe_table_cell] = STATE(2854), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(469), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2889), + [sym__line_ending] = ACTIONS(2891), + [sym__eof] = ACTIONS(2891), + [sym__pipe_table_line_ending] = ACTIONS(2891), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(449)] = { + [sym_pipe_table_cell] = STATE(2848), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2873), + [sym__line_ending] = ACTIONS(2887), + [sym__eof] = ACTIONS(2887), + [sym__pipe_table_line_ending] = ACTIONS(2887), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2883), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(450)] = { + [sym_pipe_table_cell] = STATE(3401), + [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(3402), + [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(450), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), + [sym_entity_reference] = ACTIONS(2893), + [sym_numeric_character_reference] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_BANG_LBRACK] = ACTIONS(2899), + [anon_sym_DOLLAR] = ACTIONS(2902), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2908), + [aux_sym_pandoc_str_token1] = ACTIONS(2911), + [anon_sym_PIPE] = ACTIONS(2914), + [sym__whitespace] = ACTIONS(2917), + [sym__line_ending] = ACTIONS(2920), + [sym__eof] = ACTIONS(2920), + [sym__pipe_table_line_ending] = ACTIONS(2920), + [sym__code_span_start] = ACTIONS(2922), + [sym__html_comment] = ACTIONS(2893), + [sym__autolink] = ACTIONS(2893), + [sym__highlight_span_start] = ACTIONS(2925), + [sym__insert_span_start] = ACTIONS(2928), + [sym__delete_span_start] = ACTIONS(2931), + [sym__edit_comment_span_start] = ACTIONS(2934), + [sym__single_quote_span_open] = ACTIONS(2937), + [sym__double_quote_span_open] = ACTIONS(2940), + [sym__shortcode_open_escaped] = ACTIONS(2943), + [sym__shortcode_open] = ACTIONS(2946), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2949), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2952), + [sym__cite_author_in_text] = ACTIONS(2955), + [sym__cite_suppress_author] = ACTIONS(2958), + [sym__strikeout_open] = ACTIONS(2961), + [sym__subscript_open] = ACTIONS(2964), + [sym__superscript_open] = ACTIONS(2967), + [sym__inline_note_start_token] = ACTIONS(2970), + [sym__strong_emphasis_open_star] = ACTIONS(2973), + [sym__strong_emphasis_open_underscore] = ACTIONS(2976), + [sym__emphasis_open_star] = ACTIONS(2979), + [sym__emphasis_open_underscore] = ACTIONS(2982), + [sym_inline_note_reference] = ACTIONS(2893), + [sym_html_element] = ACTIONS(2893), + [sym__pandoc_line_break] = ACTIONS(2893), + }, + [STATE(451)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2415), + [sym_grid_table] = ACTIONS(2415), + }, + [STATE(452)] = { + [anon_sym_COLON] = ACTIONS(2317), + [sym_entity_reference] = ACTIONS(2317), + [sym_numeric_character_reference] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_BANG_LBRACK] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [aux_sym_pandoc_str_token1] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2317), + [sym__whitespace] = ACTIONS(2317), + [sym__line_ending] = ACTIONS(2317), + [sym__soft_line_ending] = ACTIONS(2317), + [sym__block_close] = ACTIONS(2317), + [sym__block_quote_start] = ACTIONS(2317), + [sym_atx_h1_marker] = ACTIONS(2317), + [sym_atx_h2_marker] = ACTIONS(2317), + [sym_atx_h3_marker] = ACTIONS(2317), + [sym_atx_h4_marker] = ACTIONS(2317), + [sym_atx_h5_marker] = ACTIONS(2317), + [sym_atx_h6_marker] = ACTIONS(2317), + [sym__thematic_break] = ACTIONS(2317), + [sym__list_marker_minus] = ACTIONS(2317), + [sym__list_marker_plus] = ACTIONS(2317), + [sym__list_marker_star] = ACTIONS(2317), + [sym__list_marker_parenthesis] = ACTIONS(2317), + [sym__list_marker_dot] = ACTIONS(2317), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_example] = ACTIONS(2317), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2317), + [sym__fenced_code_block_start_backtick] = ACTIONS(2317), + [sym_minus_metadata] = ACTIONS(2317), + [sym__pipe_table_start] = ACTIONS(2317), + [sym__fenced_div_start] = ACTIONS(2317), + [sym_ref_id_specifier] = ACTIONS(2317), + [sym__code_span_start] = ACTIONS(2317), + [sym__html_comment] = ACTIONS(2317), + [sym__autolink] = ACTIONS(2317), + [sym__highlight_span_start] = ACTIONS(2317), + [sym__insert_span_start] = ACTIONS(2317), + [sym__delete_span_start] = ACTIONS(2317), + [sym__edit_comment_span_start] = ACTIONS(2317), + [sym__single_quote_span_open] = ACTIONS(2317), + [sym__double_quote_span_open] = ACTIONS(2317), + [sym__shortcode_open_escaped] = ACTIONS(2317), + [sym__shortcode_open] = ACTIONS(2317), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2317), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2317), + [sym__cite_author_in_text] = ACTIONS(2317), + [sym__cite_suppress_author] = ACTIONS(2317), + [sym__strikeout_open] = ACTIONS(2317), + [sym__subscript_open] = ACTIONS(2317), + [sym__superscript_open] = ACTIONS(2317), + [sym__inline_note_start_token] = ACTIONS(2317), + [sym__strong_emphasis_open_star] = ACTIONS(2317), + [sym__strong_emphasis_open_underscore] = ACTIONS(2317), + [sym__emphasis_open_star] = ACTIONS(2317), + [sym__emphasis_open_underscore] = ACTIONS(2317), + [sym_inline_note_reference] = ACTIONS(2317), + [sym_html_element] = ACTIONS(2317), + [sym__pandoc_line_break] = ACTIONS(2317), + [sym_grid_table] = ACTIONS(2317), + }, + [STATE(453)] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2583), + [sym_grid_table] = ACTIONS(2583), + }, + [STATE(454)] = { + [anon_sym_COLON] = ACTIONS(2323), + [sym_entity_reference] = ACTIONS(2323), + [sym_numeric_character_reference] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_BANG_LBRACK] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [aux_sym_pandoc_str_token1] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2323), + [sym__whitespace] = ACTIONS(2323), + [sym__line_ending] = ACTIONS(2323), + [sym__soft_line_ending] = ACTIONS(2323), + [sym__block_close] = ACTIONS(2323), + [sym__block_quote_start] = ACTIONS(2323), + [sym_atx_h1_marker] = ACTIONS(2323), + [sym_atx_h2_marker] = ACTIONS(2323), + [sym_atx_h3_marker] = ACTIONS(2323), + [sym_atx_h4_marker] = ACTIONS(2323), + [sym_atx_h5_marker] = ACTIONS(2323), + [sym_atx_h6_marker] = ACTIONS(2323), + [sym__thematic_break] = ACTIONS(2323), + [sym__list_marker_minus] = ACTIONS(2323), + [sym__list_marker_plus] = ACTIONS(2323), + [sym__list_marker_star] = ACTIONS(2323), + [sym__list_marker_parenthesis] = ACTIONS(2323), + [sym__list_marker_dot] = ACTIONS(2323), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_example] = ACTIONS(2323), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2323), + [sym__fenced_code_block_start_backtick] = ACTIONS(2323), + [sym_minus_metadata] = ACTIONS(2323), + [sym__pipe_table_start] = ACTIONS(2323), + [sym__fenced_div_start] = ACTIONS(2323), + [sym_ref_id_specifier] = ACTIONS(2323), + [sym__code_span_start] = ACTIONS(2323), + [sym__html_comment] = ACTIONS(2323), + [sym__autolink] = ACTIONS(2323), + [sym__highlight_span_start] = ACTIONS(2323), + [sym__insert_span_start] = ACTIONS(2323), + [sym__delete_span_start] = ACTIONS(2323), + [sym__edit_comment_span_start] = ACTIONS(2323), + [sym__single_quote_span_open] = ACTIONS(2323), + [sym__double_quote_span_open] = ACTIONS(2323), + [sym__shortcode_open_escaped] = ACTIONS(2323), + [sym__shortcode_open] = ACTIONS(2323), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2323), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2323), + [sym__cite_author_in_text] = ACTIONS(2323), + [sym__cite_suppress_author] = ACTIONS(2323), + [sym__strikeout_open] = ACTIONS(2323), + [sym__subscript_open] = ACTIONS(2323), + [sym__superscript_open] = ACTIONS(2323), + [sym__inline_note_start_token] = ACTIONS(2323), + [sym__strong_emphasis_open_star] = ACTIONS(2323), + [sym__strong_emphasis_open_underscore] = ACTIONS(2323), + [sym__emphasis_open_star] = ACTIONS(2323), + [sym__emphasis_open_underscore] = ACTIONS(2323), + [sym_inline_note_reference] = ACTIONS(2323), + [sym_html_element] = ACTIONS(2323), + [sym__pandoc_line_break] = ACTIONS(2323), + [sym_grid_table] = ACTIONS(2323), + }, + [STATE(455)] = { + [ts_builtin_sym_end] = ACTIONS(2415), + [anon_sym_COLON] = 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_line_break] = ACTIONS(2415), + [sym_grid_table] = ACTIONS(2415), + }, + [STATE(456)] = { + [anon_sym_COLON] = 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_close] = ACTIONS(2329), + [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_line_break] = ACTIONS(2329), + [sym_grid_table] = ACTIONS(2329), + }, + [STATE(457)] = { + [ts_builtin_sym_end] = ACTIONS(2591), + [anon_sym_COLON] = ACTIONS(2591), + [sym_entity_reference] = ACTIONS(2591), + [sym_numeric_character_reference] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_BANG_LBRACK] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(2593), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [aux_sym_pandoc_str_token1] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2591), + [sym__whitespace] = ACTIONS(2591), + [sym__line_ending] = ACTIONS(2591), + [sym__soft_line_ending] = ACTIONS(2591), + [sym__block_quote_start] = ACTIONS(2591), + [sym_atx_h1_marker] = ACTIONS(2591), + [sym_atx_h2_marker] = ACTIONS(2591), + [sym_atx_h3_marker] = ACTIONS(2591), + [sym_atx_h4_marker] = ACTIONS(2591), + [sym_atx_h5_marker] = ACTIONS(2591), + [sym_atx_h6_marker] = ACTIONS(2591), + [sym__thematic_break] = ACTIONS(2591), + [sym__list_marker_minus] = ACTIONS(2591), + [sym__list_marker_plus] = ACTIONS(2591), + [sym__list_marker_star] = ACTIONS(2591), + [sym__list_marker_parenthesis] = ACTIONS(2591), + [sym__list_marker_dot] = ACTIONS(2591), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2591), + [sym__list_marker_example] = ACTIONS(2591), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2591), + [sym__fenced_code_block_start_backtick] = ACTIONS(2591), + [sym_minus_metadata] = ACTIONS(2591), + [sym__pipe_table_start] = ACTIONS(2591), + [sym__fenced_div_start] = ACTIONS(2591), + [sym_ref_id_specifier] = ACTIONS(2591), + [sym__code_span_start] = ACTIONS(2591), + [sym__html_comment] = ACTIONS(2591), + [sym__autolink] = ACTIONS(2591), + [sym__highlight_span_start] = ACTIONS(2591), + [sym__insert_span_start] = ACTIONS(2591), + [sym__delete_span_start] = ACTIONS(2591), + [sym__edit_comment_span_start] = ACTIONS(2591), + [sym__single_quote_span_open] = ACTIONS(2591), + [sym__double_quote_span_open] = ACTIONS(2591), + [sym__shortcode_open_escaped] = ACTIONS(2591), + [sym__shortcode_open] = ACTIONS(2591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2591), + [sym__cite_author_in_text] = ACTIONS(2591), + [sym__cite_suppress_author] = ACTIONS(2591), + [sym__strikeout_open] = ACTIONS(2591), + [sym__subscript_open] = ACTIONS(2591), + [sym__superscript_open] = ACTIONS(2591), + [sym__inline_note_start_token] = ACTIONS(2591), + [sym__strong_emphasis_open_star] = ACTIONS(2591), + [sym__strong_emphasis_open_underscore] = ACTIONS(2591), + [sym__emphasis_open_star] = ACTIONS(2591), + [sym__emphasis_open_underscore] = ACTIONS(2591), + [sym_inline_note_reference] = ACTIONS(2591), + [sym_html_element] = ACTIONS(2591), + [sym__pandoc_line_break] = ACTIONS(2591), + [sym_grid_table] = ACTIONS(2591), + }, + [STATE(458)] = { + [anon_sym_COLON] = ACTIONS(2183), + [sym_entity_reference] = ACTIONS(2183), + [sym_numeric_character_reference] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_BANG_LBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [aux_sym_pandoc_str_token1] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2183), + [sym__whitespace] = ACTIONS(2183), + [sym__line_ending] = ACTIONS(2183), + [sym__soft_line_ending] = ACTIONS(2183), + [sym__block_close] = ACTIONS(2183), + [sym__block_quote_start] = ACTIONS(2183), + [sym_atx_h1_marker] = ACTIONS(2183), + [sym_atx_h2_marker] = ACTIONS(2183), + [sym_atx_h3_marker] = ACTIONS(2183), + [sym_atx_h4_marker] = ACTIONS(2183), + [sym_atx_h5_marker] = ACTIONS(2183), + [sym_atx_h6_marker] = ACTIONS(2183), + [sym__thematic_break] = ACTIONS(2183), + [sym__list_marker_minus] = ACTIONS(2183), + [sym__list_marker_plus] = ACTIONS(2183), + [sym__list_marker_star] = ACTIONS(2183), + [sym__list_marker_parenthesis] = ACTIONS(2183), + [sym__list_marker_dot] = ACTIONS(2183), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2183), + [sym__list_marker_example] = ACTIONS(2183), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2183), + [sym__fenced_code_block_start_backtick] = ACTIONS(2183), + [sym_minus_metadata] = ACTIONS(2183), + [sym__pipe_table_start] = ACTIONS(2183), + [sym__fenced_div_start] = ACTIONS(2183), + [sym_ref_id_specifier] = ACTIONS(2183), + [sym__code_span_start] = ACTIONS(2183), + [sym__html_comment] = ACTIONS(2183), + [sym__autolink] = ACTIONS(2183), + [sym__highlight_span_start] = ACTIONS(2183), + [sym__insert_span_start] = ACTIONS(2183), + [sym__delete_span_start] = ACTIONS(2183), + [sym__edit_comment_span_start] = ACTIONS(2183), + [sym__single_quote_span_open] = ACTIONS(2183), + [sym__double_quote_span_open] = ACTIONS(2183), + [sym__shortcode_open_escaped] = ACTIONS(2183), + [sym__shortcode_open] = ACTIONS(2183), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2183), + [sym__cite_author_in_text] = ACTIONS(2183), + [sym__cite_suppress_author] = ACTIONS(2183), + [sym__strikeout_open] = ACTIONS(2183), + [sym__subscript_open] = ACTIONS(2183), + [sym__superscript_open] = ACTIONS(2183), + [sym__inline_note_start_token] = ACTIONS(2183), + [sym__strong_emphasis_open_star] = ACTIONS(2183), + [sym__strong_emphasis_open_underscore] = ACTIONS(2183), + [sym__emphasis_open_star] = ACTIONS(2183), + [sym__emphasis_open_underscore] = ACTIONS(2183), + [sym_inline_note_reference] = ACTIONS(2183), + [sym_html_element] = ACTIONS(2183), + [sym__pandoc_line_break] = ACTIONS(2183), + [sym_grid_table] = ACTIONS(2183), + }, + [STATE(459)] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2599), + [sym_grid_table] = ACTIONS(2599), + }, + [STATE(460)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2237), + [sym_grid_table] = ACTIONS(2237), + }, + [STATE(461)] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [anon_sym_COLON] = ACTIONS(2615), + [sym_entity_reference] = ACTIONS(2615), + [sym_numeric_character_reference] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_BANG_LBRACK] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2617), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [aux_sym_pandoc_str_token1] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2615), + [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] = ACTIONS(2615), + [sym__pipe_table_start] = ACTIONS(2615), + [sym__fenced_div_start] = ACTIONS(2615), + [sym_ref_id_specifier] = ACTIONS(2615), + [sym__code_span_start] = ACTIONS(2615), + [sym__html_comment] = ACTIONS(2615), + [sym__autolink] = ACTIONS(2615), + [sym__highlight_span_start] = ACTIONS(2615), + [sym__insert_span_start] = ACTIONS(2615), + [sym__delete_span_start] = ACTIONS(2615), + [sym__edit_comment_span_start] = ACTIONS(2615), + [sym__single_quote_span_open] = ACTIONS(2615), + [sym__double_quote_span_open] = ACTIONS(2615), + [sym__shortcode_open_escaped] = ACTIONS(2615), + [sym__shortcode_open] = ACTIONS(2615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), + [sym__cite_author_in_text] = ACTIONS(2615), + [sym__cite_suppress_author] = ACTIONS(2615), + [sym__strikeout_open] = ACTIONS(2615), + [sym__subscript_open] = ACTIONS(2615), + [sym__superscript_open] = ACTIONS(2615), + [sym__inline_note_start_token] = ACTIONS(2615), + [sym__strong_emphasis_open_star] = ACTIONS(2615), + [sym__strong_emphasis_open_underscore] = ACTIONS(2615), + [sym__emphasis_open_star] = ACTIONS(2615), + [sym__emphasis_open_underscore] = ACTIONS(2615), + [sym_inline_note_reference] = ACTIONS(2615), + [sym_html_element] = ACTIONS(2615), + [sym__pandoc_line_break] = ACTIONS(2615), + [sym_grid_table] = ACTIONS(2615), + }, + [STATE(462)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2243), + [sym_grid_table] = ACTIONS(2243), + }, + [STATE(463)] = { + [anon_sym_COLON] = ACTIONS(2447), + [sym_entity_reference] = ACTIONS(2447), + [sym_numeric_character_reference] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_BANG_LBRACK] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [aux_sym_pandoc_str_token1] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2447), + [sym__whitespace] = ACTIONS(2447), + [sym__line_ending] = ACTIONS(2447), + [sym__soft_line_ending] = ACTIONS(2447), + [sym__block_close] = ACTIONS(2447), + [sym__block_quote_start] = ACTIONS(2447), + [sym_atx_h1_marker] = ACTIONS(2447), + [sym_atx_h2_marker] = ACTIONS(2447), + [sym_atx_h3_marker] = ACTIONS(2447), + [sym_atx_h4_marker] = ACTIONS(2447), + [sym_atx_h5_marker] = ACTIONS(2447), + [sym_atx_h6_marker] = ACTIONS(2447), + [sym__thematic_break] = ACTIONS(2447), + [sym__list_marker_minus] = ACTIONS(2447), + [sym__list_marker_plus] = ACTIONS(2447), + [sym__list_marker_star] = ACTIONS(2447), + [sym__list_marker_parenthesis] = ACTIONS(2447), + [sym__list_marker_dot] = ACTIONS(2447), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_example] = ACTIONS(2447), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2447), + [sym__fenced_code_block_start_backtick] = ACTIONS(2447), + [sym_minus_metadata] = ACTIONS(2447), + [sym__pipe_table_start] = ACTIONS(2447), + [sym__fenced_div_start] = ACTIONS(2447), + [sym_ref_id_specifier] = ACTIONS(2447), + [sym__code_span_start] = ACTIONS(2447), + [sym__html_comment] = ACTIONS(2447), + [sym__autolink] = ACTIONS(2447), + [sym__highlight_span_start] = ACTIONS(2447), + [sym__insert_span_start] = ACTIONS(2447), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2447), + [sym__single_quote_span_open] = ACTIONS(2447), + [sym__double_quote_span_open] = ACTIONS(2447), + [sym__shortcode_open_escaped] = ACTIONS(2447), + [sym__shortcode_open] = ACTIONS(2447), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2447), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2447), + [sym__cite_author_in_text] = ACTIONS(2447), + [sym__cite_suppress_author] = ACTIONS(2447), + [sym__strikeout_open] = ACTIONS(2447), + [sym__subscript_open] = ACTIONS(2447), + [sym__superscript_open] = ACTIONS(2447), + [sym__inline_note_start_token] = ACTIONS(2447), + [sym__strong_emphasis_open_star] = ACTIONS(2447), + [sym__strong_emphasis_open_underscore] = ACTIONS(2447), + [sym__emphasis_open_star] = ACTIONS(2447), + [sym__emphasis_open_underscore] = ACTIONS(2447), + [sym_inline_note_reference] = ACTIONS(2447), + [sym_html_element] = ACTIONS(2447), + [sym__pandoc_line_break] = ACTIONS(2447), + [sym_grid_table] = ACTIONS(2447), + }, + [STATE(464)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2249), + [sym_grid_table] = ACTIONS(2249), + }, + [STATE(465)] = { + [anon_sym_COLON] = 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_close] = 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_line_break] = ACTIONS(2531), + [sym_grid_table] = ACTIONS(2531), + }, + [STATE(466)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2453), + [sym_grid_table] = ACTIONS(2453), + }, + [STATE(467)] = { + [sym_pipe_table_cell] = STATE(2896), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2873), + [sym__line_ending] = ACTIONS(2985), + [sym__eof] = ACTIONS(2985), + [sym__pipe_table_line_ending] = ACTIONS(2985), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2883), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(468)] = { + [sym_pipe_table_cell] = STATE(2896), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2873), + [sym__line_ending] = ACTIONS(2875), + [sym__eof] = ACTIONS(2875), + [sym__pipe_table_line_ending] = ACTIONS(2875), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2883), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(469)] = { + [sym_pipe_table_cell] = STATE(2900), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym_pipe_table_row_repeat1] = STATE(450), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2987), + [sym__line_ending] = ACTIONS(2985), + [sym__eof] = ACTIONS(2985), + [sym__pipe_table_line_ending] = ACTIONS(2985), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(470)] = { + [anon_sym_COLON] = ACTIONS(2457), + [sym_entity_reference] = ACTIONS(2457), + [sym_numeric_character_reference] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_BANG_LBRACK] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [aux_sym_pandoc_str_token1] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2457), + [sym__whitespace] = ACTIONS(2457), + [sym__line_ending] = ACTIONS(2457), + [sym__soft_line_ending] = ACTIONS(2457), + [sym__block_close] = ACTIONS(2457), + [sym__block_quote_start] = ACTIONS(2457), + [sym_atx_h1_marker] = ACTIONS(2457), + [sym_atx_h2_marker] = ACTIONS(2457), + [sym_atx_h3_marker] = ACTIONS(2457), + [sym_atx_h4_marker] = ACTIONS(2457), + [sym_atx_h5_marker] = ACTIONS(2457), + [sym_atx_h6_marker] = ACTIONS(2457), + [sym__thematic_break] = ACTIONS(2457), + [sym__list_marker_minus] = ACTIONS(2457), + [sym__list_marker_plus] = ACTIONS(2457), + [sym__list_marker_star] = ACTIONS(2457), + [sym__list_marker_parenthesis] = ACTIONS(2457), + [sym__list_marker_dot] = ACTIONS(2457), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_example] = ACTIONS(2457), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), + [sym__fenced_code_block_start_backtick] = ACTIONS(2457), + [sym_minus_metadata] = ACTIONS(2457), + [sym__pipe_table_start] = ACTIONS(2457), + [sym__fenced_div_start] = ACTIONS(2457), + [sym_ref_id_specifier] = ACTIONS(2457), + [sym__code_span_start] = ACTIONS(2457), + [sym__html_comment] = ACTIONS(2457), + [sym__autolink] = ACTIONS(2457), + [sym__highlight_span_start] = ACTIONS(2457), + [sym__insert_span_start] = ACTIONS(2457), + [sym__delete_span_start] = ACTIONS(2457), + [sym__edit_comment_span_start] = ACTIONS(2457), + [sym__single_quote_span_open] = ACTIONS(2457), + [sym__double_quote_span_open] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), + [sym__cite_author_in_text] = ACTIONS(2457), + [sym__cite_suppress_author] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(2457), + [sym__subscript_open] = ACTIONS(2457), + [sym__superscript_open] = ACTIONS(2457), + [sym__inline_note_start_token] = ACTIONS(2457), + [sym__strong_emphasis_open_star] = ACTIONS(2457), + [sym__strong_emphasis_open_underscore] = ACTIONS(2457), + [sym__emphasis_open_star] = ACTIONS(2457), + [sym__emphasis_open_underscore] = ACTIONS(2457), + [sym_inline_note_reference] = ACTIONS(2457), + [sym_html_element] = ACTIONS(2457), + [sym__pandoc_line_break] = ACTIONS(2457), + [sym_grid_table] = ACTIONS(2457), + }, + [STATE(471)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2461), + [sym_grid_table] = ACTIONS(2461), + }, + [STATE(472)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), + }, + [STATE(473)] = { + [ts_builtin_sym_end] = ACTIONS(2317), + [anon_sym_COLON] = ACTIONS(2317), + [sym_entity_reference] = ACTIONS(2317), + [sym_numeric_character_reference] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_BANG_LBRACK] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [aux_sym_pandoc_str_token1] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2317), + [sym__whitespace] = ACTIONS(2317), + [sym__line_ending] = ACTIONS(2317), + [sym__soft_line_ending] = ACTIONS(2317), + [sym__block_quote_start] = ACTIONS(2317), + [sym_atx_h1_marker] = ACTIONS(2317), + [sym_atx_h2_marker] = ACTIONS(2317), + [sym_atx_h3_marker] = ACTIONS(2317), + [sym_atx_h4_marker] = ACTIONS(2317), + [sym_atx_h5_marker] = ACTIONS(2317), + [sym_atx_h6_marker] = ACTIONS(2317), + [sym__thematic_break] = ACTIONS(2317), + [sym__list_marker_minus] = ACTIONS(2317), + [sym__list_marker_plus] = ACTIONS(2317), + [sym__list_marker_star] = ACTIONS(2317), + [sym__list_marker_parenthesis] = ACTIONS(2317), + [sym__list_marker_dot] = ACTIONS(2317), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2317), + [sym__list_marker_example] = ACTIONS(2317), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2317), + [sym__fenced_code_block_start_backtick] = ACTIONS(2317), + [sym_minus_metadata] = ACTIONS(2317), + [sym__pipe_table_start] = ACTIONS(2317), + [sym__fenced_div_start] = ACTIONS(2317), + [sym_ref_id_specifier] = ACTIONS(2317), + [sym__code_span_start] = ACTIONS(2317), + [sym__html_comment] = ACTIONS(2317), + [sym__autolink] = ACTIONS(2317), + [sym__highlight_span_start] = ACTIONS(2317), + [sym__insert_span_start] = ACTIONS(2317), + [sym__delete_span_start] = ACTIONS(2317), + [sym__edit_comment_span_start] = ACTIONS(2317), + [sym__single_quote_span_open] = ACTIONS(2317), + [sym__double_quote_span_open] = ACTIONS(2317), + [sym__shortcode_open_escaped] = ACTIONS(2317), + [sym__shortcode_open] = ACTIONS(2317), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2317), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2317), + [sym__cite_author_in_text] = ACTIONS(2317), + [sym__cite_suppress_author] = ACTIONS(2317), + [sym__strikeout_open] = ACTIONS(2317), + [sym__subscript_open] = ACTIONS(2317), + [sym__superscript_open] = ACTIONS(2317), + [sym__inline_note_start_token] = ACTIONS(2317), + [sym__strong_emphasis_open_star] = ACTIONS(2317), + [sym__strong_emphasis_open_underscore] = ACTIONS(2317), + [sym__emphasis_open_star] = ACTIONS(2317), + [sym__emphasis_open_underscore] = ACTIONS(2317), + [sym_inline_note_reference] = ACTIONS(2317), + [sym_html_element] = ACTIONS(2317), + [sym__pandoc_line_break] = ACTIONS(2317), + [sym_grid_table] = ACTIONS(2317), + }, + [STATE(474)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2261), + [sym_grid_table] = ACTIONS(2261), + }, + [STATE(475)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2267), + [sym_grid_table] = ACTIONS(2267), + }, + [STATE(476)] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [anon_sym_COLON] = ACTIONS(2323), + [sym_entity_reference] = ACTIONS(2323), + [sym_numeric_character_reference] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_BANG_LBRACK] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [aux_sym_pandoc_str_token1] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2323), + [sym__whitespace] = ACTIONS(2323), + [sym__line_ending] = ACTIONS(2323), + [sym__soft_line_ending] = ACTIONS(2323), + [sym__block_quote_start] = ACTIONS(2323), + [sym_atx_h1_marker] = ACTIONS(2323), + [sym_atx_h2_marker] = ACTIONS(2323), + [sym_atx_h3_marker] = ACTIONS(2323), + [sym_atx_h4_marker] = ACTIONS(2323), + [sym_atx_h5_marker] = ACTIONS(2323), + [sym_atx_h6_marker] = ACTIONS(2323), + [sym__thematic_break] = ACTIONS(2323), + [sym__list_marker_minus] = ACTIONS(2323), + [sym__list_marker_plus] = ACTIONS(2323), + [sym__list_marker_star] = ACTIONS(2323), + [sym__list_marker_parenthesis] = ACTIONS(2323), + [sym__list_marker_dot] = ACTIONS(2323), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2323), + [sym__list_marker_example] = ACTIONS(2323), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2323), + [sym__fenced_code_block_start_backtick] = ACTIONS(2323), + [sym_minus_metadata] = ACTIONS(2323), + [sym__pipe_table_start] = ACTIONS(2323), + [sym__fenced_div_start] = ACTIONS(2323), + [sym_ref_id_specifier] = ACTIONS(2323), + [sym__code_span_start] = ACTIONS(2323), + [sym__html_comment] = ACTIONS(2323), + [sym__autolink] = ACTIONS(2323), + [sym__highlight_span_start] = ACTIONS(2323), + [sym__insert_span_start] = ACTIONS(2323), + [sym__delete_span_start] = ACTIONS(2323), + [sym__edit_comment_span_start] = ACTIONS(2323), + [sym__single_quote_span_open] = ACTIONS(2323), + [sym__double_quote_span_open] = ACTIONS(2323), + [sym__shortcode_open_escaped] = ACTIONS(2323), + [sym__shortcode_open] = ACTIONS(2323), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2323), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2323), + [sym__cite_author_in_text] = ACTIONS(2323), + [sym__cite_suppress_author] = ACTIONS(2323), + [sym__strikeout_open] = ACTIONS(2323), + [sym__subscript_open] = ACTIONS(2323), + [sym__superscript_open] = ACTIONS(2323), + [sym__inline_note_start_token] = ACTIONS(2323), + [sym__strong_emphasis_open_star] = ACTIONS(2323), + [sym__strong_emphasis_open_underscore] = ACTIONS(2323), + [sym__emphasis_open_star] = ACTIONS(2323), + [sym__emphasis_open_underscore] = ACTIONS(2323), + [sym_inline_note_reference] = ACTIONS(2323), + [sym_html_element] = ACTIONS(2323), + [sym__pandoc_line_break] = ACTIONS(2323), + [sym_grid_table] = ACTIONS(2323), + }, + [STATE(477)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), + }, + [STATE(478)] = { + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2279), + [sym_grid_table] = ACTIONS(2279), + }, + [STATE(479)] = { + [ts_builtin_sym_end] = ACTIONS(2329), + [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2329), + [sym_grid_table] = ACTIONS(2329), + }, + [STATE(480)] = { + [anon_sym_COLON] = ACTIONS(2289), + [sym_entity_reference] = ACTIONS(2289), + [sym_numeric_character_reference] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_BANG_LBRACK] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [aux_sym_pandoc_str_token1] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2289), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym__block_close] = ACTIONS(2289), + [sym__block_quote_start] = ACTIONS(2289), + [sym_atx_h1_marker] = ACTIONS(2289), + [sym_atx_h2_marker] = ACTIONS(2289), + [sym_atx_h3_marker] = ACTIONS(2289), + [sym_atx_h4_marker] = ACTIONS(2289), + [sym_atx_h5_marker] = ACTIONS(2289), + [sym_atx_h6_marker] = ACTIONS(2289), + [sym__thematic_break] = ACTIONS(2289), + [sym__list_marker_minus] = ACTIONS(2289), + [sym__list_marker_plus] = ACTIONS(2289), + [sym__list_marker_star] = ACTIONS(2289), + [sym__list_marker_parenthesis] = ACTIONS(2289), + [sym__list_marker_dot] = ACTIONS(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] = ACTIONS(2289), + [sym__pipe_table_start] = ACTIONS(2289), + [sym__fenced_div_start] = ACTIONS(2289), + [sym_ref_id_specifier] = ACTIONS(2289), + [sym__code_span_start] = ACTIONS(2289), + [sym__html_comment] = ACTIONS(2289), + [sym__autolink] = ACTIONS(2289), + [sym__highlight_span_start] = ACTIONS(2289), + [sym__insert_span_start] = ACTIONS(2289), + [sym__delete_span_start] = ACTIONS(2289), + [sym__edit_comment_span_start] = ACTIONS(2289), + [sym__single_quote_span_open] = ACTIONS(2289), + [sym__double_quote_span_open] = ACTIONS(2289), + [sym__shortcode_open_escaped] = ACTIONS(2289), + [sym__shortcode_open] = ACTIONS(2289), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), + [sym__cite_author_in_text] = ACTIONS(2289), + [sym__cite_suppress_author] = ACTIONS(2289), + [sym__strikeout_open] = ACTIONS(2289), + [sym__subscript_open] = ACTIONS(2289), + [sym__superscript_open] = ACTIONS(2289), + [sym__inline_note_start_token] = ACTIONS(2289), + [sym__strong_emphasis_open_star] = ACTIONS(2289), + [sym__strong_emphasis_open_underscore] = ACTIONS(2289), + [sym__emphasis_open_star] = ACTIONS(2289), + [sym__emphasis_open_underscore] = ACTIONS(2289), + [sym_inline_note_reference] = ACTIONS(2289), + [sym_html_element] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + }, + [STATE(481)] = { + [anon_sym_COLON] = ACTIONS(2483), + [sym_entity_reference] = ACTIONS(2483), + [sym_numeric_character_reference] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_BANG_LBRACK] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [aux_sym_pandoc_str_token1] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2483), + [sym__whitespace] = ACTIONS(2483), + [sym__line_ending] = ACTIONS(2483), + [sym__soft_line_ending] = ACTIONS(2483), + [sym__block_close] = ACTIONS(2483), + [sym__block_quote_start] = ACTIONS(2483), + [sym_atx_h1_marker] = ACTIONS(2483), + [sym_atx_h2_marker] = ACTIONS(2483), + [sym_atx_h3_marker] = ACTIONS(2483), + [sym_atx_h4_marker] = ACTIONS(2483), + [sym_atx_h5_marker] = ACTIONS(2483), + [sym_atx_h6_marker] = ACTIONS(2483), + [sym__thematic_break] = ACTIONS(2483), + [sym__list_marker_minus] = ACTIONS(2483), + [sym__list_marker_plus] = ACTIONS(2483), + [sym__list_marker_star] = ACTIONS(2483), + [sym__list_marker_parenthesis] = ACTIONS(2483), + [sym__list_marker_dot] = ACTIONS(2483), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_example] = ACTIONS(2483), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2483), + [sym__fenced_code_block_start_backtick] = ACTIONS(2483), + [sym_minus_metadata] = ACTIONS(2483), + [sym__pipe_table_start] = ACTIONS(2483), + [sym__fenced_div_start] = ACTIONS(2483), + [sym_ref_id_specifier] = ACTIONS(2483), + [sym__code_span_start] = ACTIONS(2483), + [sym__html_comment] = ACTIONS(2483), + [sym__autolink] = ACTIONS(2483), + [sym__highlight_span_start] = ACTIONS(2483), + [sym__insert_span_start] = ACTIONS(2483), + [sym__delete_span_start] = ACTIONS(2483), + [sym__edit_comment_span_start] = ACTIONS(2483), + [sym__single_quote_span_open] = ACTIONS(2483), + [sym__double_quote_span_open] = ACTIONS(2483), + [sym__shortcode_open_escaped] = ACTIONS(2483), + [sym__shortcode_open] = ACTIONS(2483), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2483), + [sym__cite_author_in_text] = ACTIONS(2483), + [sym__cite_suppress_author] = ACTIONS(2483), + [sym__strikeout_open] = ACTIONS(2483), + [sym__subscript_open] = ACTIONS(2483), + [sym__superscript_open] = ACTIONS(2483), + [sym__inline_note_start_token] = ACTIONS(2483), + [sym__strong_emphasis_open_star] = ACTIONS(2483), + [sym__strong_emphasis_open_underscore] = ACTIONS(2483), + [sym__emphasis_open_star] = ACTIONS(2483), + [sym__emphasis_open_underscore] = ACTIONS(2483), + [sym_inline_note_reference] = ACTIONS(2483), + [sym_html_element] = ACTIONS(2483), + [sym__pandoc_line_break] = ACTIONS(2483), + [sym_grid_table] = ACTIONS(2483), + }, + [STATE(482)] = { + [anon_sym_COLON] = ACTIONS(2487), + [sym_entity_reference] = ACTIONS(2487), + [sym_numeric_character_reference] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_BANG_LBRACK] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [aux_sym_pandoc_str_token1] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2487), + [sym__whitespace] = ACTIONS(2487), + [sym__line_ending] = ACTIONS(2487), + [sym__soft_line_ending] = ACTIONS(2487), + [sym__block_close] = ACTIONS(2487), + [sym__block_quote_start] = ACTIONS(2487), + [sym_atx_h1_marker] = ACTIONS(2487), + [sym_atx_h2_marker] = ACTIONS(2487), + [sym_atx_h3_marker] = ACTIONS(2487), + [sym_atx_h4_marker] = ACTIONS(2487), + [sym_atx_h5_marker] = ACTIONS(2487), + [sym_atx_h6_marker] = ACTIONS(2487), + [sym__thematic_break] = ACTIONS(2487), + [sym__list_marker_minus] = ACTIONS(2487), + [sym__list_marker_plus] = ACTIONS(2487), + [sym__list_marker_star] = ACTIONS(2487), + [sym__list_marker_parenthesis] = ACTIONS(2487), + [sym__list_marker_dot] = ACTIONS(2487), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_example] = ACTIONS(2487), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2487), + [sym__fenced_code_block_start_backtick] = ACTIONS(2487), + [sym_minus_metadata] = ACTIONS(2487), + [sym__pipe_table_start] = ACTIONS(2487), + [sym__fenced_div_start] = ACTIONS(2487), + [sym_ref_id_specifier] = ACTIONS(2487), + [sym__code_span_start] = ACTIONS(2487), + [sym__html_comment] = ACTIONS(2487), + [sym__autolink] = ACTIONS(2487), + [sym__highlight_span_start] = ACTIONS(2487), + [sym__insert_span_start] = ACTIONS(2487), + [sym__delete_span_start] = ACTIONS(2487), + [sym__edit_comment_span_start] = ACTIONS(2487), + [sym__single_quote_span_open] = ACTIONS(2487), + [sym__double_quote_span_open] = ACTIONS(2487), + [sym__shortcode_open_escaped] = ACTIONS(2487), + [sym__shortcode_open] = ACTIONS(2487), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2487), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), + [sym__cite_author_in_text] = ACTIONS(2487), + [sym__cite_suppress_author] = ACTIONS(2487), + [sym__strikeout_open] = ACTIONS(2487), + [sym__subscript_open] = ACTIONS(2487), + [sym__superscript_open] = ACTIONS(2487), + [sym__inline_note_start_token] = ACTIONS(2487), + [sym__strong_emphasis_open_star] = ACTIONS(2487), + [sym__strong_emphasis_open_underscore] = ACTIONS(2487), + [sym__emphasis_open_star] = ACTIONS(2487), + [sym__emphasis_open_underscore] = ACTIONS(2487), + [sym_inline_note_reference] = ACTIONS(2487), + [sym_html_element] = ACTIONS(2487), + [sym__pandoc_line_break] = ACTIONS(2487), + [sym_grid_table] = ACTIONS(2487), + }, + [STATE(483)] = { + [sym_pipe_table_cell] = STATE(2827), + [sym_pandoc_span] = STATE(586), + [sym_pandoc_image] = STATE(586), + [sym_pandoc_math] = STATE(586), + [sym_pandoc_display_math] = STATE(586), + [sym_pandoc_code_span] = STATE(586), + [sym_pandoc_single_quote] = STATE(586), + [sym_pandoc_double_quote] = STATE(586), + [sym_insert] = STATE(586), + [sym_delete] = STATE(586), + [sym_edit_comment] = STATE(586), + [sym_highlight] = STATE(586), + [sym__pandoc_attr_specifier] = STATE(586), + [sym__line_with_maybe_spaces] = STATE(2766), + [sym__inline_element] = STATE(586), + [sym_shortcode_escaped] = STATE(586), + [sym_shortcode] = STATE(586), + [sym_citation] = STATE(586), + [sym_inline_note] = STATE(586), + [sym_pandoc_superscript] = STATE(586), + [sym_pandoc_subscript] = STATE(586), + [sym_pandoc_strikeout] = STATE(586), + [sym_pandoc_emph] = STATE(586), + [sym_pandoc_strong] = STATE(586), + [sym_pandoc_str] = STATE(586), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(586), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_BANG_LBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [aux_sym_pandoc_str_token1] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2121), + [sym__whitespace] = ACTIONS(2873), + [sym__line_ending] = ACTIONS(2989), + [sym__eof] = ACTIONS(2989), + [sym__pipe_table_line_ending] = ACTIONS(2989), + [sym__code_span_start] = ACTIONS(2127), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2129), + [sym__insert_span_start] = ACTIONS(2131), + [sym__delete_span_start] = ACTIONS(2133), + [sym__edit_comment_span_start] = ACTIONS(2135), + [sym__single_quote_span_open] = ACTIONS(2137), + [sym__double_quote_span_open] = ACTIONS(2139), + [sym__shortcode_open_escaped] = ACTIONS(2141), + [sym__shortcode_open] = ACTIONS(2143), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2145), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2147), + [sym__cite_author_in_text] = ACTIONS(2149), + [sym__cite_suppress_author] = ACTIONS(2151), + [sym__strikeout_open] = ACTIONS(2153), + [sym__subscript_open] = ACTIONS(2155), + [sym__superscript_open] = ACTIONS(2157), + [sym__inline_note_start_token] = ACTIONS(2159), + [sym__strong_emphasis_open_star] = ACTIONS(2161), + [sym__strong_emphasis_open_underscore] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2165), + [sym__emphasis_open_underscore] = ACTIONS(2167), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pipe_table_delimiter] = ACTIONS(2883), + [sym__pandoc_line_break] = ACTIONS(2107), + }, + [STATE(484)] = { + [anon_sym_COLON] = ACTIONS(2491), + [sym_entity_reference] = ACTIONS(2491), + [sym_numeric_character_reference] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_BANG_LBRACK] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2493), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [aux_sym_pandoc_str_token1] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2491), + [sym__whitespace] = ACTIONS(2491), + [sym__line_ending] = ACTIONS(2491), + [sym__soft_line_ending] = ACTIONS(2491), + [sym__block_close] = ACTIONS(2491), + [sym__block_quote_start] = ACTIONS(2491), + [sym_atx_h1_marker] = ACTIONS(2491), + [sym_atx_h2_marker] = ACTIONS(2491), + [sym_atx_h3_marker] = ACTIONS(2491), + [sym_atx_h4_marker] = ACTIONS(2491), + [sym_atx_h5_marker] = ACTIONS(2491), + [sym_atx_h6_marker] = ACTIONS(2491), + [sym__thematic_break] = ACTIONS(2491), + [sym__list_marker_minus] = ACTIONS(2491), + [sym__list_marker_plus] = ACTIONS(2491), + [sym__list_marker_star] = ACTIONS(2491), + [sym__list_marker_parenthesis] = ACTIONS(2491), + [sym__list_marker_dot] = ACTIONS(2491), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2491), + [sym__list_marker_example] = ACTIONS(2491), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2491), + [sym__fenced_code_block_start_backtick] = ACTIONS(2491), + [sym_minus_metadata] = ACTIONS(2491), + [sym__pipe_table_start] = ACTIONS(2491), + [sym__fenced_div_start] = ACTIONS(2491), + [sym_ref_id_specifier] = ACTIONS(2491), + [sym__code_span_start] = ACTIONS(2491), + [sym__html_comment] = ACTIONS(2491), + [sym__autolink] = ACTIONS(2491), + [sym__highlight_span_start] = ACTIONS(2491), + [sym__insert_span_start] = ACTIONS(2491), + [sym__delete_span_start] = ACTIONS(2491), + [sym__edit_comment_span_start] = ACTIONS(2491), + [sym__single_quote_span_open] = ACTIONS(2491), + [sym__double_quote_span_open] = ACTIONS(2491), + [sym__shortcode_open_escaped] = ACTIONS(2491), + [sym__shortcode_open] = ACTIONS(2491), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2491), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2491), + [sym__cite_author_in_text] = ACTIONS(2491), + [sym__cite_suppress_author] = ACTIONS(2491), + [sym__strikeout_open] = ACTIONS(2491), + [sym__subscript_open] = ACTIONS(2491), + [sym__superscript_open] = ACTIONS(2491), + [sym__inline_note_start_token] = ACTIONS(2491), + [sym__strong_emphasis_open_star] = ACTIONS(2491), + [sym__strong_emphasis_open_underscore] = ACTIONS(2491), + [sym__emphasis_open_star] = ACTIONS(2491), + [sym__emphasis_open_underscore] = ACTIONS(2491), + [sym_inline_note_reference] = ACTIONS(2491), + [sym_html_element] = ACTIONS(2491), + [sym__pandoc_line_break] = ACTIONS(2491), + [sym_grid_table] = ACTIONS(2491), + }, + [STATE(485)] = { + [anon_sym_COLON] = ACTIONS(2495), + [sym_entity_reference] = ACTIONS(2495), + [sym_numeric_character_reference] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_BANG_LBRACK] = ACTIONS(2495), + [anon_sym_DOLLAR] = ACTIONS(2497), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [aux_sym_pandoc_str_token1] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2495), + [sym__whitespace] = ACTIONS(2495), + [sym__line_ending] = ACTIONS(2495), + [sym__soft_line_ending] = ACTIONS(2495), + [sym__block_close] = ACTIONS(2495), + [sym__block_quote_start] = ACTIONS(2495), + [sym_atx_h1_marker] = ACTIONS(2495), + [sym_atx_h2_marker] = ACTIONS(2495), + [sym_atx_h3_marker] = ACTIONS(2495), + [sym_atx_h4_marker] = ACTIONS(2495), + [sym_atx_h5_marker] = ACTIONS(2495), + [sym_atx_h6_marker] = ACTIONS(2495), + [sym__thematic_break] = ACTIONS(2495), + [sym__list_marker_minus] = ACTIONS(2495), + [sym__list_marker_plus] = ACTIONS(2495), + [sym__list_marker_star] = ACTIONS(2495), + [sym__list_marker_parenthesis] = ACTIONS(2495), + [sym__list_marker_dot] = ACTIONS(2495), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2495), + [sym__list_marker_example] = ACTIONS(2495), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2495), + [sym__fenced_code_block_start_backtick] = ACTIONS(2495), + [sym_minus_metadata] = ACTIONS(2495), + [sym__pipe_table_start] = ACTIONS(2495), + [sym__fenced_div_start] = ACTIONS(2495), + [sym_ref_id_specifier] = ACTIONS(2495), + [sym__code_span_start] = ACTIONS(2495), + [sym__html_comment] = ACTIONS(2495), + [sym__autolink] = ACTIONS(2495), + [sym__highlight_span_start] = ACTIONS(2495), + [sym__insert_span_start] = ACTIONS(2495), + [sym__delete_span_start] = ACTIONS(2495), + [sym__edit_comment_span_start] = ACTIONS(2495), + [sym__single_quote_span_open] = ACTIONS(2495), + [sym__double_quote_span_open] = ACTIONS(2495), + [sym__shortcode_open_escaped] = ACTIONS(2495), + [sym__shortcode_open] = ACTIONS(2495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2495), + [sym__cite_author_in_text] = ACTIONS(2495), + [sym__cite_suppress_author] = ACTIONS(2495), + [sym__strikeout_open] = ACTIONS(2495), + [sym__subscript_open] = ACTIONS(2495), + [sym__superscript_open] = ACTIONS(2495), + [sym__inline_note_start_token] = ACTIONS(2495), + [sym__strong_emphasis_open_star] = ACTIONS(2495), + [sym__strong_emphasis_open_underscore] = ACTIONS(2495), + [sym__emphasis_open_star] = ACTIONS(2495), + [sym__emphasis_open_underscore] = ACTIONS(2495), + [sym_inline_note_reference] = ACTIONS(2495), + [sym_html_element] = ACTIONS(2495), + [sym__pandoc_line_break] = ACTIONS(2495), + [sym_grid_table] = ACTIONS(2495), + }, + [STATE(486)] = { + [anon_sym_COLON] = ACTIONS(2499), + [sym_entity_reference] = ACTIONS(2499), + [sym_numeric_character_reference] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_BANG_LBRACK] = ACTIONS(2499), + [anon_sym_DOLLAR] = ACTIONS(2501), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [aux_sym_pandoc_str_token1] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2499), + [sym__whitespace] = ACTIONS(2499), + [sym__line_ending] = ACTIONS(2499), + [sym__soft_line_ending] = ACTIONS(2499), + [sym__block_close] = ACTIONS(2499), + [sym__block_quote_start] = ACTIONS(2499), + [sym_atx_h1_marker] = ACTIONS(2499), + [sym_atx_h2_marker] = ACTIONS(2499), + [sym_atx_h3_marker] = ACTIONS(2499), + [sym_atx_h4_marker] = ACTIONS(2499), + [sym_atx_h5_marker] = ACTIONS(2499), + [sym_atx_h6_marker] = ACTIONS(2499), + [sym__thematic_break] = ACTIONS(2499), + [sym__list_marker_minus] = ACTIONS(2499), + [sym__list_marker_plus] = ACTIONS(2499), + [sym__list_marker_star] = ACTIONS(2499), + [sym__list_marker_parenthesis] = ACTIONS(2499), + [sym__list_marker_dot] = ACTIONS(2499), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2499), + [sym__list_marker_example] = ACTIONS(2499), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2499), + [sym__fenced_code_block_start_backtick] = ACTIONS(2499), + [sym_minus_metadata] = ACTIONS(2499), + [sym__pipe_table_start] = ACTIONS(2499), + [sym__fenced_div_start] = ACTIONS(2499), + [sym_ref_id_specifier] = ACTIONS(2499), + [sym__code_span_start] = ACTIONS(2499), + [sym__html_comment] = ACTIONS(2499), + [sym__autolink] = ACTIONS(2499), + [sym__highlight_span_start] = ACTIONS(2499), + [sym__insert_span_start] = ACTIONS(2499), + [sym__delete_span_start] = ACTIONS(2499), + [sym__edit_comment_span_start] = ACTIONS(2499), + [sym__single_quote_span_open] = ACTIONS(2499), + [sym__double_quote_span_open] = ACTIONS(2499), + [sym__shortcode_open_escaped] = ACTIONS(2499), + [sym__shortcode_open] = ACTIONS(2499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2499), + [sym__cite_author_in_text] = ACTIONS(2499), + [sym__cite_suppress_author] = ACTIONS(2499), + [sym__strikeout_open] = ACTIONS(2499), + [sym__subscript_open] = ACTIONS(2499), + [sym__superscript_open] = ACTIONS(2499), + [sym__inline_note_start_token] = ACTIONS(2499), + [sym__strong_emphasis_open_star] = ACTIONS(2499), + [sym__strong_emphasis_open_underscore] = ACTIONS(2499), + [sym__emphasis_open_star] = ACTIONS(2499), + [sym__emphasis_open_underscore] = ACTIONS(2499), + [sym_inline_note_reference] = ACTIONS(2499), + [sym_html_element] = ACTIONS(2499), + [sym__pandoc_line_break] = ACTIONS(2499), + [sym_grid_table] = ACTIONS(2499), + }, + [STATE(487)] = { + [anon_sym_COLON] = ACTIONS(2503), + [sym_entity_reference] = ACTIONS(2503), + [sym_numeric_character_reference] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_BANG_LBRACK] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [aux_sym_pandoc_str_token1] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2503), + [sym__whitespace] = ACTIONS(2503), + [sym__line_ending] = ACTIONS(2503), + [sym__soft_line_ending] = ACTIONS(2503), + [sym__block_close] = ACTIONS(2503), + [sym__block_quote_start] = ACTIONS(2503), + [sym_atx_h1_marker] = ACTIONS(2503), + [sym_atx_h2_marker] = ACTIONS(2503), + [sym_atx_h3_marker] = ACTIONS(2503), + [sym_atx_h4_marker] = ACTIONS(2503), + [sym_atx_h5_marker] = ACTIONS(2503), + [sym_atx_h6_marker] = ACTIONS(2503), + [sym__thematic_break] = ACTIONS(2503), + [sym__list_marker_minus] = ACTIONS(2503), + [sym__list_marker_plus] = ACTIONS(2503), + [sym__list_marker_star] = ACTIONS(2503), + [sym__list_marker_parenthesis] = ACTIONS(2503), + [sym__list_marker_dot] = ACTIONS(2503), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2503), + [sym__list_marker_example] = ACTIONS(2503), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2503), + [sym__fenced_code_block_start_backtick] = ACTIONS(2503), + [sym_minus_metadata] = ACTIONS(2503), + [sym__pipe_table_start] = ACTIONS(2503), + [sym__fenced_div_start] = ACTIONS(2503), + [sym_ref_id_specifier] = ACTIONS(2503), + [sym__code_span_start] = ACTIONS(2503), + [sym__html_comment] = ACTIONS(2503), + [sym__autolink] = ACTIONS(2503), + [sym__highlight_span_start] = ACTIONS(2503), + [sym__insert_span_start] = ACTIONS(2503), + [sym__delete_span_start] = ACTIONS(2503), + [sym__edit_comment_span_start] = ACTIONS(2503), + [sym__single_quote_span_open] = ACTIONS(2503), + [sym__double_quote_span_open] = ACTIONS(2503), + [sym__shortcode_open_escaped] = ACTIONS(2503), + [sym__shortcode_open] = ACTIONS(2503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2503), + [sym__cite_author_in_text] = ACTIONS(2503), + [sym__cite_suppress_author] = ACTIONS(2503), + [sym__strikeout_open] = ACTIONS(2503), + [sym__subscript_open] = ACTIONS(2503), + [sym__superscript_open] = ACTIONS(2503), + [sym__inline_note_start_token] = ACTIONS(2503), + [sym__strong_emphasis_open_star] = ACTIONS(2503), + [sym__strong_emphasis_open_underscore] = ACTIONS(2503), + [sym__emphasis_open_star] = ACTIONS(2503), + [sym__emphasis_open_underscore] = ACTIONS(2503), + [sym_inline_note_reference] = ACTIONS(2503), + [sym_html_element] = ACTIONS(2503), + [sym__pandoc_line_break] = ACTIONS(2503), + [sym_grid_table] = ACTIONS(2503), + }, + [STATE(488)] = { + [anon_sym_COLON] = ACTIONS(2507), + [sym_entity_reference] = ACTIONS(2507), + [sym_numeric_character_reference] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_BANG_LBRACK] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [aux_sym_pandoc_str_token1] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2507), + [sym__whitespace] = ACTIONS(2507), + [sym__line_ending] = ACTIONS(2507), + [sym__soft_line_ending] = ACTIONS(2507), + [sym__block_close] = ACTIONS(2507), + [sym__block_quote_start] = ACTIONS(2507), + [sym_atx_h1_marker] = ACTIONS(2507), + [sym_atx_h2_marker] = ACTIONS(2507), + [sym_atx_h3_marker] = ACTIONS(2507), + [sym_atx_h4_marker] = ACTIONS(2507), + [sym_atx_h5_marker] = ACTIONS(2507), + [sym_atx_h6_marker] = ACTIONS(2507), + [sym__thematic_break] = ACTIONS(2507), + [sym__list_marker_minus] = ACTIONS(2507), + [sym__list_marker_plus] = ACTIONS(2507), + [sym__list_marker_star] = ACTIONS(2507), + [sym__list_marker_parenthesis] = ACTIONS(2507), + [sym__list_marker_dot] = ACTIONS(2507), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2507), + [sym__list_marker_example] = ACTIONS(2507), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2507), + [sym__fenced_code_block_start_backtick] = ACTIONS(2507), + [sym_minus_metadata] = ACTIONS(2507), + [sym__pipe_table_start] = ACTIONS(2507), + [sym__fenced_div_start] = ACTIONS(2507), + [sym_ref_id_specifier] = ACTIONS(2507), + [sym__code_span_start] = ACTIONS(2507), + [sym__html_comment] = ACTIONS(2507), + [sym__autolink] = ACTIONS(2507), + [sym__highlight_span_start] = ACTIONS(2507), + [sym__insert_span_start] = ACTIONS(2507), + [sym__delete_span_start] = ACTIONS(2507), + [sym__edit_comment_span_start] = ACTIONS(2507), + [sym__single_quote_span_open] = ACTIONS(2507), + [sym__double_quote_span_open] = ACTIONS(2507), + [sym__shortcode_open_escaped] = ACTIONS(2507), + [sym__shortcode_open] = ACTIONS(2507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2507), + [sym__cite_author_in_text] = ACTIONS(2507), + [sym__cite_suppress_author] = ACTIONS(2507), + [sym__strikeout_open] = ACTIONS(2507), + [sym__subscript_open] = ACTIONS(2507), + [sym__superscript_open] = ACTIONS(2507), + [sym__inline_note_start_token] = ACTIONS(2507), + [sym__strong_emphasis_open_star] = ACTIONS(2507), + [sym__strong_emphasis_open_underscore] = ACTIONS(2507), + [sym__emphasis_open_star] = ACTIONS(2507), + [sym__emphasis_open_underscore] = ACTIONS(2507), + [sym_inline_note_reference] = ACTIONS(2507), + [sym_html_element] = ACTIONS(2507), + [sym__pandoc_line_break] = ACTIONS(2507), + [sym_grid_table] = ACTIONS(2507), + }, + [STATE(489)] = { + [anon_sym_COLON] = ACTIONS(2511), + [sym_entity_reference] = ACTIONS(2511), + [sym_numeric_character_reference] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_BANG_LBRACK] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2513), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [aux_sym_pandoc_str_token1] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2511), + [sym__whitespace] = ACTIONS(2511), + [sym__line_ending] = ACTIONS(2511), + [sym__soft_line_ending] = ACTIONS(2511), + [sym__block_close] = ACTIONS(2511), + [sym__block_quote_start] = ACTIONS(2511), + [sym_atx_h1_marker] = ACTIONS(2511), + [sym_atx_h2_marker] = ACTIONS(2511), + [sym_atx_h3_marker] = ACTIONS(2511), + [sym_atx_h4_marker] = ACTIONS(2511), + [sym_atx_h5_marker] = ACTIONS(2511), + [sym_atx_h6_marker] = ACTIONS(2511), + [sym__thematic_break] = ACTIONS(2511), + [sym__list_marker_minus] = ACTIONS(2511), + [sym__list_marker_plus] = ACTIONS(2511), + [sym__list_marker_star] = ACTIONS(2511), + [sym__list_marker_parenthesis] = ACTIONS(2511), + [sym__list_marker_dot] = ACTIONS(2511), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2511), + [sym__list_marker_example] = ACTIONS(2511), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2511), + [sym__fenced_code_block_start_backtick] = ACTIONS(2511), + [sym_minus_metadata] = ACTIONS(2511), + [sym__pipe_table_start] = ACTIONS(2511), + [sym__fenced_div_start] = ACTIONS(2511), + [sym_ref_id_specifier] = ACTIONS(2511), + [sym__code_span_start] = ACTIONS(2511), + [sym__html_comment] = ACTIONS(2511), + [sym__autolink] = ACTIONS(2511), + [sym__highlight_span_start] = ACTIONS(2511), + [sym__insert_span_start] = ACTIONS(2511), + [sym__delete_span_start] = ACTIONS(2511), + [sym__edit_comment_span_start] = ACTIONS(2511), + [sym__single_quote_span_open] = ACTIONS(2511), + [sym__double_quote_span_open] = ACTIONS(2511), + [sym__shortcode_open_escaped] = ACTIONS(2511), + [sym__shortcode_open] = ACTIONS(2511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2511), + [sym__cite_author_in_text] = ACTIONS(2511), + [sym__cite_suppress_author] = ACTIONS(2511), + [sym__strikeout_open] = ACTIONS(2511), + [sym__subscript_open] = ACTIONS(2511), + [sym__superscript_open] = ACTIONS(2511), + [sym__inline_note_start_token] = ACTIONS(2511), + [sym__strong_emphasis_open_star] = ACTIONS(2511), + [sym__strong_emphasis_open_underscore] = ACTIONS(2511), + [sym__emphasis_open_star] = ACTIONS(2511), + [sym__emphasis_open_underscore] = ACTIONS(2511), + [sym_inline_note_reference] = ACTIONS(2511), + [sym_html_element] = ACTIONS(2511), + [sym__pandoc_line_break] = ACTIONS(2511), + [sym_grid_table] = ACTIONS(2511), + }, + [STATE(490)] = { + [anon_sym_COLON] = ACTIONS(2515), + [sym_entity_reference] = ACTIONS(2515), + [sym_numeric_character_reference] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_BANG_LBRACK] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [aux_sym_pandoc_str_token1] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2515), + [sym__whitespace] = ACTIONS(2515), + [sym__line_ending] = ACTIONS(2515), + [sym__soft_line_ending] = ACTIONS(2515), + [sym__block_close] = ACTIONS(2515), + [sym__block_quote_start] = ACTIONS(2515), + [sym_atx_h1_marker] = ACTIONS(2515), + [sym_atx_h2_marker] = ACTIONS(2515), + [sym_atx_h3_marker] = ACTIONS(2515), + [sym_atx_h4_marker] = ACTIONS(2515), + [sym_atx_h5_marker] = ACTIONS(2515), + [sym_atx_h6_marker] = ACTIONS(2515), + [sym__thematic_break] = ACTIONS(2515), + [sym__list_marker_minus] = ACTIONS(2515), + [sym__list_marker_plus] = ACTIONS(2515), + [sym__list_marker_star] = ACTIONS(2515), + [sym__list_marker_parenthesis] = ACTIONS(2515), + [sym__list_marker_dot] = ACTIONS(2515), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2515), + [sym__list_marker_example] = ACTIONS(2515), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2515), + [sym__fenced_code_block_start_backtick] = ACTIONS(2515), + [sym_minus_metadata] = ACTIONS(2515), + [sym__pipe_table_start] = ACTIONS(2515), + [sym__fenced_div_start] = ACTIONS(2515), + [sym_ref_id_specifier] = ACTIONS(2515), + [sym__code_span_start] = ACTIONS(2515), + [sym__html_comment] = ACTIONS(2515), + [sym__autolink] = ACTIONS(2515), + [sym__highlight_span_start] = ACTIONS(2515), + [sym__insert_span_start] = ACTIONS(2515), + [sym__delete_span_start] = ACTIONS(2515), + [sym__edit_comment_span_start] = ACTIONS(2515), + [sym__single_quote_span_open] = ACTIONS(2515), + [sym__double_quote_span_open] = ACTIONS(2515), + [sym__shortcode_open_escaped] = ACTIONS(2515), + [sym__shortcode_open] = ACTIONS(2515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2515), + [sym__cite_author_in_text] = ACTIONS(2515), + [sym__cite_suppress_author] = ACTIONS(2515), + [sym__strikeout_open] = ACTIONS(2515), + [sym__subscript_open] = ACTIONS(2515), + [sym__superscript_open] = ACTIONS(2515), + [sym__inline_note_start_token] = ACTIONS(2515), + [sym__strong_emphasis_open_star] = ACTIONS(2515), + [sym__strong_emphasis_open_underscore] = ACTIONS(2515), + [sym__emphasis_open_star] = ACTIONS(2515), + [sym__emphasis_open_underscore] = ACTIONS(2515), + [sym_inline_note_reference] = ACTIONS(2515), + [sym_html_element] = ACTIONS(2515), + [sym__pandoc_line_break] = ACTIONS(2515), + [sym_grid_table] = ACTIONS(2515), + }, + [STATE(491)] = { + [anon_sym_COLON] = ACTIONS(2519), + [sym_entity_reference] = ACTIONS(2519), + [sym_numeric_character_reference] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_BANG_LBRACK] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [aux_sym_pandoc_str_token1] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2519), + [sym__whitespace] = ACTIONS(2519), + [sym__line_ending] = ACTIONS(2519), + [sym__soft_line_ending] = ACTIONS(2519), + [sym__block_close] = ACTIONS(2519), + [sym__block_quote_start] = ACTIONS(2519), + [sym_atx_h1_marker] = ACTIONS(2519), + [sym_atx_h2_marker] = ACTIONS(2519), + [sym_atx_h3_marker] = ACTIONS(2519), + [sym_atx_h4_marker] = ACTIONS(2519), + [sym_atx_h5_marker] = ACTIONS(2519), + [sym_atx_h6_marker] = ACTIONS(2519), + [sym__thematic_break] = ACTIONS(2519), + [sym__list_marker_minus] = ACTIONS(2519), + [sym__list_marker_plus] = ACTIONS(2519), + [sym__list_marker_star] = ACTIONS(2519), + [sym__list_marker_parenthesis] = ACTIONS(2519), + [sym__list_marker_dot] = ACTIONS(2519), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2519), + [sym__list_marker_example] = ACTIONS(2519), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2519), + [sym__fenced_code_block_start_backtick] = ACTIONS(2519), + [sym_minus_metadata] = ACTIONS(2519), + [sym__pipe_table_start] = ACTIONS(2519), + [sym__fenced_div_start] = ACTIONS(2519), + [sym_ref_id_specifier] = ACTIONS(2519), + [sym__code_span_start] = ACTIONS(2519), + [sym__html_comment] = ACTIONS(2519), + [sym__autolink] = ACTIONS(2519), + [sym__highlight_span_start] = ACTIONS(2519), + [sym__insert_span_start] = ACTIONS(2519), + [sym__delete_span_start] = ACTIONS(2519), + [sym__edit_comment_span_start] = ACTIONS(2519), + [sym__single_quote_span_open] = ACTIONS(2519), + [sym__double_quote_span_open] = ACTIONS(2519), + [sym__shortcode_open_escaped] = ACTIONS(2519), + [sym__shortcode_open] = ACTIONS(2519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2519), + [sym__cite_author_in_text] = ACTIONS(2519), + [sym__cite_suppress_author] = ACTIONS(2519), + [sym__strikeout_open] = ACTIONS(2519), + [sym__subscript_open] = ACTIONS(2519), + [sym__superscript_open] = ACTIONS(2519), + [sym__inline_note_start_token] = ACTIONS(2519), + [sym__strong_emphasis_open_star] = ACTIONS(2519), + [sym__strong_emphasis_open_underscore] = ACTIONS(2519), + [sym__emphasis_open_star] = ACTIONS(2519), + [sym__emphasis_open_underscore] = ACTIONS(2519), + [sym_inline_note_reference] = ACTIONS(2519), + [sym_html_element] = ACTIONS(2519), + [sym__pandoc_line_break] = ACTIONS(2519), + [sym_grid_table] = ACTIONS(2519), + }, + [STATE(492)] = { + [anon_sym_COLON] = ACTIONS(2523), + [sym_entity_reference] = ACTIONS(2523), + [sym_numeric_character_reference] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_BANG_LBRACK] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [aux_sym_pandoc_str_token1] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2523), + [sym__whitespace] = ACTIONS(2523), + [sym__line_ending] = ACTIONS(2523), + [sym__soft_line_ending] = ACTIONS(2523), + [sym__block_close] = ACTIONS(2523), + [sym__block_quote_start] = ACTIONS(2523), + [sym_atx_h1_marker] = ACTIONS(2523), + [sym_atx_h2_marker] = ACTIONS(2523), + [sym_atx_h3_marker] = ACTIONS(2523), + [sym_atx_h4_marker] = ACTIONS(2523), + [sym_atx_h5_marker] = ACTIONS(2523), + [sym_atx_h6_marker] = ACTIONS(2523), + [sym__thematic_break] = ACTIONS(2523), + [sym__list_marker_minus] = ACTIONS(2523), + [sym__list_marker_plus] = ACTIONS(2523), + [sym__list_marker_star] = ACTIONS(2523), + [sym__list_marker_parenthesis] = ACTIONS(2523), + [sym__list_marker_dot] = ACTIONS(2523), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2523), + [sym__list_marker_example] = ACTIONS(2523), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2523), + [sym__fenced_code_block_start_backtick] = ACTIONS(2523), + [sym_minus_metadata] = ACTIONS(2523), + [sym__pipe_table_start] = ACTIONS(2523), + [sym__fenced_div_start] = ACTIONS(2523), + [sym_ref_id_specifier] = ACTIONS(2523), + [sym__code_span_start] = ACTIONS(2523), + [sym__html_comment] = ACTIONS(2523), + [sym__autolink] = ACTIONS(2523), + [sym__highlight_span_start] = ACTIONS(2523), + [sym__insert_span_start] = ACTIONS(2523), + [sym__delete_span_start] = ACTIONS(2523), + [sym__edit_comment_span_start] = ACTIONS(2523), + [sym__single_quote_span_open] = ACTIONS(2523), + [sym__double_quote_span_open] = ACTIONS(2523), + [sym__shortcode_open_escaped] = ACTIONS(2523), + [sym__shortcode_open] = ACTIONS(2523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2523), + [sym__cite_author_in_text] = ACTIONS(2523), + [sym__cite_suppress_author] = ACTIONS(2523), + [sym__strikeout_open] = ACTIONS(2523), + [sym__subscript_open] = ACTIONS(2523), + [sym__superscript_open] = ACTIONS(2523), + [sym__inline_note_start_token] = ACTIONS(2523), + [sym__strong_emphasis_open_star] = ACTIONS(2523), + [sym__strong_emphasis_open_underscore] = ACTIONS(2523), + [sym__emphasis_open_star] = ACTIONS(2523), + [sym__emphasis_open_underscore] = ACTIONS(2523), + [sym_inline_note_reference] = ACTIONS(2523), + [sym_html_element] = ACTIONS(2523), + [sym__pandoc_line_break] = ACTIONS(2523), + [sym_grid_table] = ACTIONS(2523), + }, + [STATE(493)] = { + [anon_sym_COLON] = ACTIONS(2527), + [sym_entity_reference] = ACTIONS(2527), + [sym_numeric_character_reference] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_BANG_LBRACK] = ACTIONS(2527), + [anon_sym_DOLLAR] = ACTIONS(2529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [aux_sym_pandoc_str_token1] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2527), + [sym__whitespace] = ACTIONS(2527), + [sym__line_ending] = ACTIONS(2527), + [sym__soft_line_ending] = ACTIONS(2527), + [sym__block_close] = ACTIONS(2527), + [sym__block_quote_start] = ACTIONS(2527), + [sym_atx_h1_marker] = ACTIONS(2527), + [sym_atx_h2_marker] = ACTIONS(2527), + [sym_atx_h3_marker] = ACTIONS(2527), + [sym_atx_h4_marker] = ACTIONS(2527), + [sym_atx_h5_marker] = ACTIONS(2527), + [sym_atx_h6_marker] = ACTIONS(2527), + [sym__thematic_break] = ACTIONS(2527), + [sym__list_marker_minus] = ACTIONS(2527), + [sym__list_marker_plus] = ACTIONS(2527), + [sym__list_marker_star] = ACTIONS(2527), + [sym__list_marker_parenthesis] = ACTIONS(2527), + [sym__list_marker_dot] = ACTIONS(2527), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2527), + [sym__list_marker_example] = ACTIONS(2527), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2527), + [sym__fenced_code_block_start_backtick] = ACTIONS(2527), + [sym_minus_metadata] = ACTIONS(2527), + [sym__pipe_table_start] = ACTIONS(2527), + [sym__fenced_div_start] = ACTIONS(2527), + [sym_ref_id_specifier] = ACTIONS(2527), + [sym__code_span_start] = ACTIONS(2527), + [sym__html_comment] = ACTIONS(2527), + [sym__autolink] = ACTIONS(2527), + [sym__highlight_span_start] = ACTIONS(2527), + [sym__insert_span_start] = ACTIONS(2527), + [sym__delete_span_start] = ACTIONS(2527), + [sym__edit_comment_span_start] = ACTIONS(2527), + [sym__single_quote_span_open] = ACTIONS(2527), + [sym__double_quote_span_open] = ACTIONS(2527), + [sym__shortcode_open_escaped] = ACTIONS(2527), + [sym__shortcode_open] = ACTIONS(2527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), + [sym__cite_author_in_text] = ACTIONS(2527), + [sym__cite_suppress_author] = ACTIONS(2527), + [sym__strikeout_open] = ACTIONS(2527), + [sym__subscript_open] = ACTIONS(2527), + [sym__superscript_open] = ACTIONS(2527), + [sym__inline_note_start_token] = ACTIONS(2527), + [sym__strong_emphasis_open_star] = ACTIONS(2527), + [sym__strong_emphasis_open_underscore] = ACTIONS(2527), + [sym__emphasis_open_star] = ACTIONS(2527), + [sym__emphasis_open_underscore] = ACTIONS(2527), + [sym_inline_note_reference] = ACTIONS(2527), + [sym_html_element] = ACTIONS(2527), + [sym__pandoc_line_break] = ACTIONS(2527), + [sym_grid_table] = ACTIONS(2527), + }, + [STATE(494)] = { + [ts_builtin_sym_end] = ACTIONS(2705), + [anon_sym_COLON] = ACTIONS(2705), + [sym_entity_reference] = ACTIONS(2705), + [sym_numeric_character_reference] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_BANG_LBRACK] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(2707), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [aux_sym_pandoc_str_token1] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2705), + [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] = ACTIONS(2705), + [sym__pipe_table_start] = ACTIONS(2705), + [sym__fenced_div_start] = ACTIONS(2705), + [sym_ref_id_specifier] = ACTIONS(2705), + [sym__code_span_start] = ACTIONS(2705), + [sym__html_comment] = ACTIONS(2705), + [sym__autolink] = ACTIONS(2705), + [sym__highlight_span_start] = ACTIONS(2705), + [sym__insert_span_start] = ACTIONS(2705), + [sym__delete_span_start] = ACTIONS(2705), + [sym__edit_comment_span_start] = ACTIONS(2705), + [sym__single_quote_span_open] = ACTIONS(2705), + [sym__double_quote_span_open] = ACTIONS(2705), + [sym__shortcode_open_escaped] = ACTIONS(2705), + [sym__shortcode_open] = ACTIONS(2705), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2705), + [sym__cite_author_in_text] = ACTIONS(2705), + [sym__cite_suppress_author] = ACTIONS(2705), + [sym__strikeout_open] = ACTIONS(2705), + [sym__subscript_open] = ACTIONS(2705), + [sym__superscript_open] = ACTIONS(2705), + [sym__inline_note_start_token] = ACTIONS(2705), + [sym__strong_emphasis_open_star] = ACTIONS(2705), + [sym__strong_emphasis_open_underscore] = ACTIONS(2705), + [sym__emphasis_open_star] = ACTIONS(2705), + [sym__emphasis_open_underscore] = ACTIONS(2705), + [sym_inline_note_reference] = ACTIONS(2705), + [sym_html_element] = ACTIONS(2705), + [sym__pandoc_line_break] = ACTIONS(2705), + [sym_grid_table] = ACTIONS(2705), + }, + [STATE(495)] = { + [sym__inlines] = STATE(4144), + [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(2931), + [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(753), + [sym__inline_whitespace] = STATE(753), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3009), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), + }, + [STATE(496)] = { + [sym__atx_heading_content] = STATE(3253), + [sym__inlines] = STATE(3253), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(453), + [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), [anon_sym_BANG_LBRACK] = ACTIONS(11), @@ -58810,9 +65024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(3071), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3057), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -58840,34 +65054,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(411)] = { - [sym__atx_heading_content] = STATE(3099), - [sym__inlines] = STATE(3099), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(497)] = { + [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(2931), + [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(691), + [sym__inline_whitespace] = STATE(691), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3061), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), + }, + [STATE(498)] = { + [sym__inlines] = STATE(3757), + [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(2931), + [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(695), + [sym__inline_whitespace] = STATE(695), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3065), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), + }, + [STATE(499)] = { + [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(2931), + [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(700), + [sym__inline_whitespace] = STATE(700), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3067), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3069), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), + }, + [STATE(500)] = { + [sym__inlines] = STATE(3761), + [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(2931), + [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(703), + [sym__inline_whitespace] = STATE(703), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3073), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), + }, + [STATE(501)] = { + [sym__atx_heading_content] = STATE(3080), + [sym__inlines] = STATE(3080), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(425), + [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), + [sym__newline] = STATE(268), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -58877,9 +65359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(3073), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(231), + [sym__eof] = ACTIONS(3075), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -58907,34 +65389,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(412)] = { - [sym__atx_heading_content] = STATE(3102), - [sym__inlines] = STATE(3102), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(502)] = { + [sym__atx_heading_content] = STATE(3097), + [sym__inlines] = STATE(3097), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(426), + [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), + [sym__newline] = STATE(410), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -58944,9 +65426,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(3075), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(115), + [sym__eof] = ACTIONS(3077), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -58974,34 +65456,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(413)] = { - [sym__atx_heading_content] = STATE(3104), - [sym__inlines] = STATE(3104), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(503)] = { + [sym__atx_heading_content] = STATE(3099), + [sym__inlines] = STATE(3099), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(427), + [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), + [sym__newline] = STATE(411), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -59011,9 +65493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(3077), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(115), + [sym__eof] = ACTIONS(3079), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -59041,34 +65523,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(414)] = { - [sym__atx_heading_content] = STATE(3106), - [sym__inlines] = STATE(3106), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(504)] = { + [sym_pandoc_paragraph] = STATE(451), + [sym__inlines] = STATE(3287), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(428), + [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), + [sym__soft_line_break] = STATE(810), + [sym__inline_whitespace] = STATE(810), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -59078,9 +65561,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(3079), + [sym__whitespace] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(3011), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -59108,34 +65590,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(415)] = { - [sym__atx_heading_content] = STATE(3122), - [sym__inlines] = STATE(3122), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(505)] = { + [sym__atx_heading_content] = STATE(3102), + [sym__inlines] = STATE(3102), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(429), + [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), + [sym__newline] = STATE(412), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -59145,8 +65627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(113), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(115), [sym__eof] = ACTIONS(3081), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), @@ -59175,1441 +65657,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(416)] = { - [anon_sym_COLON] = ACTIONS(2891), - [sym_entity_reference] = ACTIONS(2891), - [sym_numeric_character_reference] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_BANG_LBRACK] = ACTIONS(2891), - [anon_sym_DOLLAR] = ACTIONS(2893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [aux_sym_pandoc_str_token1] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [sym__whitespace] = ACTIONS(2891), - [sym__line_ending] = ACTIONS(2891), - [sym__soft_line_ending] = ACTIONS(2891), - [sym__block_close] = ACTIONS(2891), - [sym__block_quote_start] = ACTIONS(2891), - [sym_atx_h1_marker] = ACTIONS(2891), - [sym_atx_h2_marker] = ACTIONS(2891), - [sym_atx_h3_marker] = ACTIONS(2891), - [sym_atx_h4_marker] = ACTIONS(2891), - [sym_atx_h5_marker] = ACTIONS(2891), - [sym_atx_h6_marker] = ACTIONS(2891), - [sym__thematic_break] = ACTIONS(2891), - [sym__list_marker_minus] = ACTIONS(2891), - [sym__list_marker_plus] = ACTIONS(2891), - [sym__list_marker_star] = ACTIONS(2891), - [sym__list_marker_parenthesis] = ACTIONS(2891), - [sym__list_marker_dot] = ACTIONS(2891), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_example] = ACTIONS(2891), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2891), - [sym__fenced_code_block_start_backtick] = ACTIONS(2891), - [sym_minus_metadata] = ACTIONS(2891), - [sym__pipe_table_start] = ACTIONS(2891), - [sym__fenced_div_start] = ACTIONS(2891), - [sym_ref_id_specifier] = ACTIONS(2891), - [sym__code_span_start] = ACTIONS(2891), - [sym__html_comment] = ACTIONS(2891), - [sym__autolink] = ACTIONS(2891), - [sym__highlight_span_start] = ACTIONS(2891), - [sym__insert_span_start] = ACTIONS(2891), - [sym__delete_span_start] = ACTIONS(2891), - [sym__edit_comment_span_start] = ACTIONS(2891), - [sym__single_quote_span_open] = ACTIONS(2891), - [sym__double_quote_span_open] = ACTIONS(2891), - [sym__shortcode_open_escaped] = ACTIONS(2891), - [sym__shortcode_open] = ACTIONS(2891), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2891), - [sym__cite_author_in_text] = ACTIONS(2891), - [sym__cite_suppress_author] = ACTIONS(2891), - [sym__strikeout_open] = ACTIONS(2891), - [sym__subscript_open] = ACTIONS(2891), - [sym__superscript_open] = ACTIONS(2891), - [sym__inline_note_start_token] = ACTIONS(2891), - [sym__strong_emphasis_open_star] = ACTIONS(2891), - [sym__strong_emphasis_open_underscore] = ACTIONS(2891), - [sym__emphasis_open_star] = ACTIONS(2891), - [sym__emphasis_open_underscore] = ACTIONS(2891), - [sym_inline_note_reference] = ACTIONS(2891), - [sym_html_element] = ACTIONS(2891), - [sym__pandoc_line_break] = ACTIONS(2891), - }, - [STATE(417)] = { - [anon_sym_COLON] = ACTIONS(2895), - [sym_entity_reference] = ACTIONS(2895), - [sym_numeric_character_reference] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_BANG_LBRACK] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [aux_sym_pandoc_str_token1] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2895), - [sym__whitespace] = ACTIONS(2895), - [sym__line_ending] = ACTIONS(2895), - [sym__soft_line_ending] = ACTIONS(2895), - [sym__block_close] = ACTIONS(2895), - [sym__block_quote_start] = ACTIONS(2895), - [sym_atx_h1_marker] = ACTIONS(2895), - [sym_atx_h2_marker] = ACTIONS(2895), - [sym_atx_h3_marker] = ACTIONS(2895), - [sym_atx_h4_marker] = ACTIONS(2895), - [sym_atx_h5_marker] = ACTIONS(2895), - [sym_atx_h6_marker] = ACTIONS(2895), - [sym__thematic_break] = ACTIONS(2895), - [sym__list_marker_minus] = ACTIONS(2895), - [sym__list_marker_plus] = ACTIONS(2895), - [sym__list_marker_star] = ACTIONS(2895), - [sym__list_marker_parenthesis] = ACTIONS(2895), - [sym__list_marker_dot] = ACTIONS(2895), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2895), - [sym__list_marker_example] = ACTIONS(2895), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2895), - [sym__fenced_code_block_start_backtick] = ACTIONS(2895), - [sym_minus_metadata] = ACTIONS(2895), - [sym__pipe_table_start] = ACTIONS(2895), - [sym__fenced_div_start] = ACTIONS(2895), - [sym_ref_id_specifier] = ACTIONS(2895), - [sym__code_span_start] = ACTIONS(2895), - [sym__html_comment] = ACTIONS(2895), - [sym__autolink] = ACTIONS(2895), - [sym__highlight_span_start] = ACTIONS(2895), - [sym__insert_span_start] = ACTIONS(2895), - [sym__delete_span_start] = ACTIONS(2895), - [sym__edit_comment_span_start] = ACTIONS(2895), - [sym__single_quote_span_open] = ACTIONS(2895), - [sym__double_quote_span_open] = ACTIONS(2895), - [sym__shortcode_open_escaped] = ACTIONS(2895), - [sym__shortcode_open] = ACTIONS(2895), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2895), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2895), - [sym__cite_author_in_text] = ACTIONS(2895), - [sym__cite_suppress_author] = ACTIONS(2895), - [sym__strikeout_open] = ACTIONS(2895), - [sym__subscript_open] = ACTIONS(2895), - [sym__superscript_open] = ACTIONS(2895), - [sym__inline_note_start_token] = ACTIONS(2895), - [sym__strong_emphasis_open_star] = ACTIONS(2895), - [sym__strong_emphasis_open_underscore] = ACTIONS(2895), - [sym__emphasis_open_star] = ACTIONS(2895), - [sym__emphasis_open_underscore] = ACTIONS(2895), - [sym_inline_note_reference] = ACTIONS(2895), - [sym_html_element] = ACTIONS(2895), - [sym__pandoc_line_break] = ACTIONS(2895), - }, - [STATE(418)] = { - [sym__inlines] = STATE(3857), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(722), - [sym__inline_whitespace] = STATE(722), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3101), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(419)] = { - [sym__inlines] = STATE(3993), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(695), - [sym__inline_whitespace] = STATE(695), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3149), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(420)] = { - [sym__inlines] = STATE(4018), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(786), - [sym__inline_whitespace] = STATE(786), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3153), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(421)] = { - [anon_sym_COLON] = ACTIONS(2973), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_BANG_LBRACK] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [aux_sym_pandoc_str_token1] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2973), - [sym__whitespace] = ACTIONS(2973), - [sym__line_ending] = ACTIONS(2973), - [sym__soft_line_ending] = ACTIONS(2973), - [sym__block_close] = ACTIONS(2973), - [sym__block_quote_start] = ACTIONS(2973), - [sym_atx_h1_marker] = ACTIONS(2973), - [sym_atx_h2_marker] = ACTIONS(2973), - [sym_atx_h3_marker] = ACTIONS(2973), - [sym_atx_h4_marker] = ACTIONS(2973), - [sym_atx_h5_marker] = ACTIONS(2973), - [sym_atx_h6_marker] = ACTIONS(2973), - [sym__thematic_break] = ACTIONS(2973), - [sym__list_marker_minus] = ACTIONS(2973), - [sym__list_marker_plus] = ACTIONS(2973), - [sym__list_marker_star] = ACTIONS(2973), - [sym__list_marker_parenthesis] = ACTIONS(2973), - [sym__list_marker_dot] = ACTIONS(2973), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_example] = ACTIONS(2973), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2973), - [sym__fenced_code_block_start_backtick] = ACTIONS(2973), - [sym_minus_metadata] = ACTIONS(2973), - [sym__pipe_table_start] = ACTIONS(2973), - [sym__fenced_div_start] = ACTIONS(2973), - [sym_ref_id_specifier] = ACTIONS(2973), - [sym__code_span_start] = ACTIONS(2973), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2973), - [sym__insert_span_start] = ACTIONS(2973), - [sym__delete_span_start] = ACTIONS(2973), - [sym__edit_comment_span_start] = ACTIONS(2973), - [sym__single_quote_span_open] = ACTIONS(2973), - [sym__double_quote_span_open] = ACTIONS(2973), - [sym__shortcode_open_escaped] = ACTIONS(2973), - [sym__shortcode_open] = ACTIONS(2973), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2973), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2973), - [sym__cite_author_in_text] = ACTIONS(2973), - [sym__cite_suppress_author] = ACTIONS(2973), - [sym__strikeout_open] = ACTIONS(2973), - [sym__subscript_open] = ACTIONS(2973), - [sym__superscript_open] = ACTIONS(2973), - [sym__inline_note_start_token] = ACTIONS(2973), - [sym__strong_emphasis_open_star] = ACTIONS(2973), - [sym__strong_emphasis_open_underscore] = ACTIONS(2973), - [sym__emphasis_open_star] = ACTIONS(2973), - [sym__emphasis_open_underscore] = ACTIONS(2973), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pandoc_line_break] = ACTIONS(2973), - }, - [STATE(422)] = { - [anon_sym_COLON] = ACTIONS(2703), - [sym_entity_reference] = ACTIONS(2703), - [sym_numeric_character_reference] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_BANG_LBRACK] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2705), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2703), - [aux_sym_pandoc_str_token1] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2703), - [sym__whitespace] = ACTIONS(2703), - [sym__line_ending] = ACTIONS(2703), - [sym__soft_line_ending] = ACTIONS(2703), - [sym__block_close] = ACTIONS(2703), - [sym__block_quote_start] = ACTIONS(2703), - [sym_atx_h1_marker] = ACTIONS(2703), - [sym_atx_h2_marker] = ACTIONS(2703), - [sym_atx_h3_marker] = ACTIONS(2703), - [sym_atx_h4_marker] = ACTIONS(2703), - [sym_atx_h5_marker] = ACTIONS(2703), - [sym_atx_h6_marker] = ACTIONS(2703), - [sym__thematic_break] = ACTIONS(2703), - [sym__list_marker_minus] = ACTIONS(2703), - [sym__list_marker_plus] = ACTIONS(2703), - [sym__list_marker_star] = ACTIONS(2703), - [sym__list_marker_parenthesis] = ACTIONS(2703), - [sym__list_marker_dot] = ACTIONS(2703), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_example] = ACTIONS(2703), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2703), - [sym__fenced_code_block_start_backtick] = ACTIONS(2703), - [sym_minus_metadata] = ACTIONS(2703), - [sym__pipe_table_start] = ACTIONS(2703), - [sym__fenced_div_start] = ACTIONS(2703), - [sym_ref_id_specifier] = ACTIONS(2703), - [sym__code_span_start] = ACTIONS(2703), - [sym__html_comment] = ACTIONS(2703), - [sym__autolink] = ACTIONS(2703), - [sym__highlight_span_start] = ACTIONS(2703), - [sym__insert_span_start] = ACTIONS(2703), - [sym__delete_span_start] = ACTIONS(2703), - [sym__edit_comment_span_start] = ACTIONS(2703), - [sym__single_quote_span_open] = ACTIONS(2703), - [sym__double_quote_span_open] = ACTIONS(2703), - [sym__shortcode_open_escaped] = ACTIONS(2703), - [sym__shortcode_open] = ACTIONS(2703), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2703), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2703), - [sym__cite_author_in_text] = ACTIONS(2703), - [sym__cite_suppress_author] = ACTIONS(2703), - [sym__strikeout_open] = ACTIONS(2703), - [sym__subscript_open] = ACTIONS(2703), - [sym__superscript_open] = ACTIONS(2703), - [sym__inline_note_start_token] = ACTIONS(2703), - [sym__strong_emphasis_open_star] = ACTIONS(2703), - [sym__strong_emphasis_open_underscore] = ACTIONS(2703), - [sym__emphasis_open_star] = ACTIONS(2703), - [sym__emphasis_open_underscore] = ACTIONS(2703), - [sym_inline_note_reference] = ACTIONS(2703), - [sym_html_element] = ACTIONS(2703), - [sym__pandoc_line_break] = ACTIONS(2703), - }, - [STATE(423)] = { - [anon_sym_COLON] = ACTIONS(2711), - [sym_entity_reference] = ACTIONS(2711), - [sym_numeric_character_reference] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_BANG_LBRACK] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2713), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2711), - [aux_sym_pandoc_str_token1] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2711), - [sym__whitespace] = ACTIONS(2711), - [sym__line_ending] = ACTIONS(2711), - [sym__soft_line_ending] = ACTIONS(2711), - [sym__block_close] = ACTIONS(2711), - [sym__block_quote_start] = ACTIONS(2711), - [sym_atx_h1_marker] = ACTIONS(2711), - [sym_atx_h2_marker] = ACTIONS(2711), - [sym_atx_h3_marker] = ACTIONS(2711), - [sym_atx_h4_marker] = ACTIONS(2711), - [sym_atx_h5_marker] = ACTIONS(2711), - [sym_atx_h6_marker] = ACTIONS(2711), - [sym__thematic_break] = ACTIONS(2711), - [sym__list_marker_minus] = ACTIONS(2711), - [sym__list_marker_plus] = ACTIONS(2711), - [sym__list_marker_star] = ACTIONS(2711), - [sym__list_marker_parenthesis] = ACTIONS(2711), - [sym__list_marker_dot] = ACTIONS(2711), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_example] = ACTIONS(2711), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2711), - [sym__fenced_code_block_start_backtick] = ACTIONS(2711), - [sym_minus_metadata] = ACTIONS(2711), - [sym__pipe_table_start] = ACTIONS(2711), - [sym__fenced_div_start] = ACTIONS(2711), - [sym_ref_id_specifier] = ACTIONS(2711), - [sym__code_span_start] = ACTIONS(2711), - [sym__html_comment] = ACTIONS(2711), - [sym__autolink] = ACTIONS(2711), - [sym__highlight_span_start] = ACTIONS(2711), - [sym__insert_span_start] = ACTIONS(2711), - [sym__delete_span_start] = ACTIONS(2711), - [sym__edit_comment_span_start] = ACTIONS(2711), - [sym__single_quote_span_open] = ACTIONS(2711), - [sym__double_quote_span_open] = ACTIONS(2711), - [sym__shortcode_open_escaped] = ACTIONS(2711), - [sym__shortcode_open] = ACTIONS(2711), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2711), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2711), - [sym__cite_author_in_text] = ACTIONS(2711), - [sym__cite_suppress_author] = ACTIONS(2711), - [sym__strikeout_open] = ACTIONS(2711), - [sym__subscript_open] = ACTIONS(2711), - [sym__superscript_open] = ACTIONS(2711), - [sym__inline_note_start_token] = ACTIONS(2711), - [sym__strong_emphasis_open_star] = ACTIONS(2711), - [sym__strong_emphasis_open_underscore] = ACTIONS(2711), - [sym__emphasis_open_star] = ACTIONS(2711), - [sym__emphasis_open_underscore] = ACTIONS(2711), - [sym_inline_note_reference] = ACTIONS(2711), - [sym_html_element] = ACTIONS(2711), - [sym__pandoc_line_break] = ACTIONS(2711), - }, - [STATE(424)] = { - [anon_sym_COLON] = ACTIONS(2585), - [sym_entity_reference] = ACTIONS(2585), - [sym_numeric_character_reference] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_BANG_LBRACK] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [aux_sym_pandoc_str_token1] = ACTIONS(2587), - [anon_sym_PIPE] = ACTIONS(2585), - [sym__whitespace] = ACTIONS(2585), - [sym__line_ending] = ACTIONS(2585), - [sym__soft_line_ending] = ACTIONS(2585), - [sym__block_close] = ACTIONS(2585), - [sym__block_quote_start] = ACTIONS(2585), - [sym_atx_h1_marker] = ACTIONS(2585), - [sym_atx_h2_marker] = ACTIONS(2585), - [sym_atx_h3_marker] = ACTIONS(2585), - [sym_atx_h4_marker] = ACTIONS(2585), - [sym_atx_h5_marker] = ACTIONS(2585), - [sym_atx_h6_marker] = ACTIONS(2585), - [sym__thematic_break] = ACTIONS(2585), - [sym__list_marker_minus] = ACTIONS(2585), - [sym__list_marker_plus] = ACTIONS(2585), - [sym__list_marker_star] = ACTIONS(2585), - [sym__list_marker_parenthesis] = ACTIONS(2585), - [sym__list_marker_dot] = ACTIONS(2585), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_example] = ACTIONS(2585), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2585), - [sym__fenced_code_block_start_backtick] = ACTIONS(2585), - [sym_minus_metadata] = ACTIONS(2585), - [sym__pipe_table_start] = ACTIONS(2585), - [sym__fenced_div_start] = ACTIONS(2585), - [sym_ref_id_specifier] = ACTIONS(2585), - [sym__code_span_start] = ACTIONS(2585), - [sym__html_comment] = ACTIONS(2585), - [sym__autolink] = ACTIONS(2585), - [sym__highlight_span_start] = ACTIONS(2585), - [sym__insert_span_start] = ACTIONS(2585), - [sym__delete_span_start] = ACTIONS(2585), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2585), - [sym__double_quote_span_open] = ACTIONS(2585), - [sym__shortcode_open_escaped] = ACTIONS(2585), - [sym__shortcode_open] = ACTIONS(2585), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2585), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2585), - [sym__cite_author_in_text] = ACTIONS(2585), - [sym__cite_suppress_author] = ACTIONS(2585), - [sym__strikeout_open] = ACTIONS(2585), - [sym__subscript_open] = ACTIONS(2585), - [sym__superscript_open] = ACTIONS(2585), - [sym__inline_note_start_token] = ACTIONS(2585), - [sym__strong_emphasis_open_star] = ACTIONS(2585), - [sym__strong_emphasis_open_underscore] = ACTIONS(2585), - [sym__emphasis_open_star] = ACTIONS(2585), - [sym__emphasis_open_underscore] = ACTIONS(2585), - [sym_inline_note_reference] = ACTIONS(2585), - [sym_html_element] = ACTIONS(2585), - [sym__pandoc_line_break] = ACTIONS(2585), - }, - [STATE(425)] = { - [anon_sym_COLON] = ACTIONS(2589), - [sym_entity_reference] = ACTIONS(2589), - [sym_numeric_character_reference] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_BANG_LBRACK] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [aux_sym_pandoc_str_token1] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2589), - [sym__whitespace] = ACTIONS(2589), - [sym__line_ending] = ACTIONS(2589), - [sym__soft_line_ending] = ACTIONS(2589), - [sym__block_close] = ACTIONS(2589), - [sym__block_quote_start] = ACTIONS(2589), - [sym_atx_h1_marker] = ACTIONS(2589), - [sym_atx_h2_marker] = ACTIONS(2589), - [sym_atx_h3_marker] = ACTIONS(2589), - [sym_atx_h4_marker] = ACTIONS(2589), - [sym_atx_h5_marker] = ACTIONS(2589), - [sym_atx_h6_marker] = ACTIONS(2589), - [sym__thematic_break] = ACTIONS(2589), - [sym__list_marker_minus] = ACTIONS(2589), - [sym__list_marker_plus] = ACTIONS(2589), - [sym__list_marker_star] = ACTIONS(2589), - [sym__list_marker_parenthesis] = ACTIONS(2589), - [sym__list_marker_dot] = ACTIONS(2589), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2589), - [sym__list_marker_example] = ACTIONS(2589), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2589), - [sym__fenced_code_block_start_backtick] = ACTIONS(2589), - [sym_minus_metadata] = ACTIONS(2589), - [sym__pipe_table_start] = ACTIONS(2589), - [sym__fenced_div_start] = ACTIONS(2589), - [sym_ref_id_specifier] = ACTIONS(2589), - [sym__code_span_start] = ACTIONS(2589), - [sym__html_comment] = ACTIONS(2589), - [sym__autolink] = ACTIONS(2589), - [sym__highlight_span_start] = ACTIONS(2589), - [sym__insert_span_start] = ACTIONS(2589), - [sym__delete_span_start] = ACTIONS(2589), - [sym__edit_comment_span_start] = ACTIONS(2589), - [sym__single_quote_span_open] = ACTIONS(2589), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2589), - [sym__shortcode_open] = ACTIONS(2589), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2589), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2589), - [sym__cite_author_in_text] = ACTIONS(2589), - [sym__cite_suppress_author] = ACTIONS(2589), - [sym__strikeout_open] = ACTIONS(2589), - [sym__subscript_open] = ACTIONS(2589), - [sym__superscript_open] = ACTIONS(2589), - [sym__inline_note_start_token] = ACTIONS(2589), - [sym__strong_emphasis_open_star] = ACTIONS(2589), - [sym__strong_emphasis_open_underscore] = ACTIONS(2589), - [sym__emphasis_open_star] = ACTIONS(2589), - [sym__emphasis_open_underscore] = ACTIONS(2589), - [sym_inline_note_reference] = ACTIONS(2589), - [sym_html_element] = ACTIONS(2589), - [sym__pandoc_line_break] = ACTIONS(2589), - }, - [STATE(426)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2593), - }, - [STATE(427)] = { - [anon_sym_COLON] = ACTIONS(2597), - [sym_entity_reference] = ACTIONS(2597), - [sym_numeric_character_reference] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_BANG_LBRACK] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2599), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [aux_sym_pandoc_str_token1] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2597), - [sym__whitespace] = ACTIONS(2597), - [sym__line_ending] = ACTIONS(2597), - [sym__soft_line_ending] = ACTIONS(2597), - [sym__block_close] = ACTIONS(2597), - [sym__block_quote_start] = ACTIONS(2597), - [sym_atx_h1_marker] = ACTIONS(2597), - [sym_atx_h2_marker] = ACTIONS(2597), - [sym_atx_h3_marker] = ACTIONS(2597), - [sym_atx_h4_marker] = ACTIONS(2597), - [sym_atx_h5_marker] = ACTIONS(2597), - [sym_atx_h6_marker] = ACTIONS(2597), - [sym__thematic_break] = ACTIONS(2597), - [sym__list_marker_minus] = ACTIONS(2597), - [sym__list_marker_plus] = ACTIONS(2597), - [sym__list_marker_star] = ACTIONS(2597), - [sym__list_marker_parenthesis] = ACTIONS(2597), - [sym__list_marker_dot] = ACTIONS(2597), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_example] = ACTIONS(2597), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2597), - [sym__fenced_code_block_start_backtick] = ACTIONS(2597), - [sym_minus_metadata] = ACTIONS(2597), - [sym__pipe_table_start] = ACTIONS(2597), - [sym__fenced_div_start] = ACTIONS(2597), - [sym_ref_id_specifier] = ACTIONS(2597), - [sym__code_span_start] = ACTIONS(2597), - [sym__html_comment] = ACTIONS(2597), - [sym__autolink] = ACTIONS(2597), - [sym__highlight_span_start] = ACTIONS(2597), - [sym__insert_span_start] = ACTIONS(2597), - [sym__delete_span_start] = ACTIONS(2597), - [sym__edit_comment_span_start] = ACTIONS(2597), - [sym__single_quote_span_open] = ACTIONS(2597), - [sym__double_quote_span_open] = ACTIONS(2597), - [sym__shortcode_open_escaped] = ACTIONS(2597), - [sym__shortcode_open] = ACTIONS(2597), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2597), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2597), - [sym__cite_suppress_author] = ACTIONS(2597), - [sym__strikeout_open] = ACTIONS(2597), - [sym__subscript_open] = ACTIONS(2597), - [sym__superscript_open] = ACTIONS(2597), - [sym__inline_note_start_token] = ACTIONS(2597), - [sym__strong_emphasis_open_star] = ACTIONS(2597), - [sym__strong_emphasis_open_underscore] = ACTIONS(2597), - [sym__emphasis_open_star] = ACTIONS(2597), - [sym__emphasis_open_underscore] = ACTIONS(2597), - [sym_inline_note_reference] = ACTIONS(2597), - [sym_html_element] = ACTIONS(2597), - [sym__pandoc_line_break] = ACTIONS(2597), - }, - [STATE(428)] = { - [anon_sym_COLON] = ACTIONS(2699), - [sym_entity_reference] = ACTIONS(2699), - [sym_numeric_character_reference] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_BANG_LBRACK] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2699), - [aux_sym_pandoc_str_token1] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2699), - [sym__whitespace] = ACTIONS(2699), - [sym__line_ending] = ACTIONS(2699), - [sym__soft_line_ending] = ACTIONS(2699), - [sym__block_close] = ACTIONS(2699), - [sym__block_quote_start] = ACTIONS(2699), - [sym_atx_h1_marker] = ACTIONS(2699), - [sym_atx_h2_marker] = ACTIONS(2699), - [sym_atx_h3_marker] = ACTIONS(2699), - [sym_atx_h4_marker] = ACTIONS(2699), - [sym_atx_h5_marker] = ACTIONS(2699), - [sym_atx_h6_marker] = ACTIONS(2699), - [sym__thematic_break] = ACTIONS(2699), - [sym__list_marker_minus] = ACTIONS(2699), - [sym__list_marker_plus] = ACTIONS(2699), - [sym__list_marker_star] = ACTIONS(2699), - [sym__list_marker_parenthesis] = ACTIONS(2699), - [sym__list_marker_dot] = ACTIONS(2699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_example] = ACTIONS(2699), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2699), - [sym__fenced_code_block_start_backtick] = ACTIONS(2699), - [sym_minus_metadata] = ACTIONS(2699), - [sym__pipe_table_start] = ACTIONS(2699), - [sym__fenced_div_start] = ACTIONS(2699), - [sym_ref_id_specifier] = ACTIONS(2699), - [sym__code_span_start] = ACTIONS(2699), - [sym__html_comment] = ACTIONS(2699), - [sym__autolink] = ACTIONS(2699), - [sym__highlight_span_start] = ACTIONS(2699), - [sym__insert_span_start] = ACTIONS(2699), - [sym__delete_span_start] = ACTIONS(2699), - [sym__edit_comment_span_start] = ACTIONS(2699), - [sym__single_quote_span_open] = ACTIONS(2699), - [sym__double_quote_span_open] = ACTIONS(2699), - [sym__shortcode_open_escaped] = ACTIONS(2699), - [sym__shortcode_open] = ACTIONS(2699), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2699), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2699), - [sym__cite_author_in_text] = ACTIONS(2699), - [sym__cite_suppress_author] = ACTIONS(2699), - [sym__strikeout_open] = ACTIONS(2699), - [sym__subscript_open] = ACTIONS(2699), - [sym__superscript_open] = ACTIONS(2699), - [sym__inline_note_start_token] = ACTIONS(2699), - [sym__strong_emphasis_open_star] = ACTIONS(2699), - [sym__strong_emphasis_open_underscore] = ACTIONS(2699), - [sym__emphasis_open_star] = ACTIONS(2699), - [sym__emphasis_open_underscore] = ACTIONS(2699), - [sym_inline_note_reference] = ACTIONS(2699), - [sym_html_element] = ACTIONS(2699), - [sym__pandoc_line_break] = ACTIONS(2699), - }, - [STATE(429)] = { - [anon_sym_COLON] = ACTIONS(2707), - [sym_entity_reference] = ACTIONS(2707), - [sym_numeric_character_reference] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_BANG_LBRACK] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(2709), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [aux_sym_pandoc_str_token1] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [sym__whitespace] = ACTIONS(2707), - [sym__line_ending] = ACTIONS(2707), - [sym__soft_line_ending] = ACTIONS(2707), - [sym__block_close] = ACTIONS(2707), - [sym__block_quote_start] = ACTIONS(2707), - [sym_atx_h1_marker] = ACTIONS(2707), - [sym_atx_h2_marker] = ACTIONS(2707), - [sym_atx_h3_marker] = ACTIONS(2707), - [sym_atx_h4_marker] = ACTIONS(2707), - [sym_atx_h5_marker] = ACTIONS(2707), - [sym_atx_h6_marker] = ACTIONS(2707), - [sym__thematic_break] = ACTIONS(2707), - [sym__list_marker_minus] = ACTIONS(2707), - [sym__list_marker_plus] = ACTIONS(2707), - [sym__list_marker_star] = ACTIONS(2707), - [sym__list_marker_parenthesis] = ACTIONS(2707), - [sym__list_marker_dot] = ACTIONS(2707), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_example] = ACTIONS(2707), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2707), - [sym__fenced_code_block_start_backtick] = ACTIONS(2707), - [sym_minus_metadata] = ACTIONS(2707), - [sym__pipe_table_start] = ACTIONS(2707), - [sym__fenced_div_start] = ACTIONS(2707), - [sym_ref_id_specifier] = ACTIONS(2707), - [sym__code_span_start] = ACTIONS(2707), - [sym__html_comment] = ACTIONS(2707), - [sym__autolink] = ACTIONS(2707), - [sym__highlight_span_start] = ACTIONS(2707), - [sym__insert_span_start] = ACTIONS(2707), - [sym__delete_span_start] = ACTIONS(2707), - [sym__edit_comment_span_start] = ACTIONS(2707), - [sym__single_quote_span_open] = ACTIONS(2707), - [sym__double_quote_span_open] = ACTIONS(2707), - [sym__shortcode_open_escaped] = ACTIONS(2707), - [sym__shortcode_open] = ACTIONS(2707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2707), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2707), - [sym__cite_author_in_text] = ACTIONS(2707), - [sym__cite_suppress_author] = ACTIONS(2707), - [sym__strikeout_open] = ACTIONS(2707), - [sym__subscript_open] = ACTIONS(2707), - [sym__superscript_open] = ACTIONS(2707), - [sym__inline_note_start_token] = ACTIONS(2707), - [sym__strong_emphasis_open_star] = ACTIONS(2707), - [sym__strong_emphasis_open_underscore] = ACTIONS(2707), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2707), - [sym_inline_note_reference] = ACTIONS(2707), - [sym_html_element] = ACTIONS(2707), - [sym__pandoc_line_break] = ACTIONS(2707), - }, - [STATE(430)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2717), - }, - [STATE(431)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2721), - }, - [STATE(432)] = { - [anon_sym_COLON] = ACTIONS(2901), - [sym_entity_reference] = ACTIONS(2901), - [sym_numeric_character_reference] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [aux_sym_pandoc_str_token1] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2901), - [sym__whitespace] = ACTIONS(2901), - [sym__line_ending] = ACTIONS(2901), - [sym__soft_line_ending] = ACTIONS(2901), - [sym__block_close] = ACTIONS(2901), - [sym__block_quote_start] = ACTIONS(2901), - [sym_atx_h1_marker] = ACTIONS(2901), - [sym_atx_h2_marker] = ACTIONS(2901), - [sym_atx_h3_marker] = ACTIONS(2901), - [sym_atx_h4_marker] = ACTIONS(2901), - [sym_atx_h5_marker] = ACTIONS(2901), - [sym_atx_h6_marker] = ACTIONS(2901), - [sym__thematic_break] = ACTIONS(2901), - [sym__list_marker_minus] = ACTIONS(2901), - [sym__list_marker_plus] = ACTIONS(2901), - [sym__list_marker_star] = ACTIONS(2901), - [sym__list_marker_parenthesis] = ACTIONS(2901), - [sym__list_marker_dot] = ACTIONS(2901), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2901), - [sym__list_marker_example] = ACTIONS(2901), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2901), - [sym__fenced_code_block_start_backtick] = ACTIONS(2901), - [sym_minus_metadata] = ACTIONS(2901), - [sym__pipe_table_start] = ACTIONS(2901), - [sym__fenced_div_start] = ACTIONS(2901), - [sym_ref_id_specifier] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(2901), - [sym__html_comment] = ACTIONS(2901), - [sym__autolink] = ACTIONS(2901), - [sym__highlight_span_start] = ACTIONS(2901), - [sym__insert_span_start] = ACTIONS(2901), - [sym__delete_span_start] = ACTIONS(2901), - [sym__edit_comment_span_start] = ACTIONS(2901), - [sym__single_quote_span_open] = ACTIONS(2901), - [sym__double_quote_span_open] = ACTIONS(2901), - [sym__shortcode_open_escaped] = ACTIONS(2901), - [sym__shortcode_open] = ACTIONS(2901), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2901), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2901), - [sym__cite_author_in_text] = ACTIONS(2901), - [sym__cite_suppress_author] = ACTIONS(2901), - [sym__strikeout_open] = ACTIONS(2901), - [sym__subscript_open] = ACTIONS(2901), - [sym__superscript_open] = ACTIONS(2901), - [sym__inline_note_start_token] = ACTIONS(2901), - [sym__strong_emphasis_open_star] = ACTIONS(2901), - [sym__strong_emphasis_open_underscore] = ACTIONS(2901), - [sym__emphasis_open_star] = ACTIONS(2901), - [sym__emphasis_open_underscore] = ACTIONS(2901), - [sym_inline_note_reference] = ACTIONS(2901), - [sym_html_element] = ACTIONS(2901), - [sym__pandoc_line_break] = ACTIONS(2901), - }, - [STATE(433)] = { - [ts_builtin_sym_end] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2703), - [sym_entity_reference] = ACTIONS(2703), - [sym_numeric_character_reference] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_BANG_LBRACK] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2705), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2703), - [aux_sym_pandoc_str_token1] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2703), - [sym__whitespace] = ACTIONS(2703), - [sym__line_ending] = ACTIONS(2703), - [sym__soft_line_ending] = ACTIONS(2703), - [sym__block_quote_start] = ACTIONS(2703), - [sym_atx_h1_marker] = ACTIONS(2703), - [sym_atx_h2_marker] = ACTIONS(2703), - [sym_atx_h3_marker] = ACTIONS(2703), - [sym_atx_h4_marker] = ACTIONS(2703), - [sym_atx_h5_marker] = ACTIONS(2703), - [sym_atx_h6_marker] = ACTIONS(2703), - [sym__thematic_break] = ACTIONS(2703), - [sym__list_marker_minus] = ACTIONS(2703), - [sym__list_marker_plus] = ACTIONS(2703), - [sym__list_marker_star] = ACTIONS(2703), - [sym__list_marker_parenthesis] = ACTIONS(2703), - [sym__list_marker_dot] = ACTIONS(2703), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2703), - [sym__list_marker_example] = ACTIONS(2703), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2703), - [sym__fenced_code_block_start_backtick] = ACTIONS(2703), - [sym_minus_metadata] = ACTIONS(2703), - [sym__pipe_table_start] = ACTIONS(2703), - [sym__fenced_div_start] = ACTIONS(2703), - [sym_ref_id_specifier] = ACTIONS(2703), - [sym__code_span_start] = ACTIONS(2703), - [sym__html_comment] = ACTIONS(2703), - [sym__autolink] = ACTIONS(2703), - [sym__highlight_span_start] = ACTIONS(2703), - [sym__insert_span_start] = ACTIONS(2703), - [sym__delete_span_start] = ACTIONS(2703), - [sym__edit_comment_span_start] = ACTIONS(2703), - [sym__single_quote_span_open] = ACTIONS(2703), - [sym__double_quote_span_open] = ACTIONS(2703), - [sym__shortcode_open_escaped] = ACTIONS(2703), - [sym__shortcode_open] = ACTIONS(2703), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2703), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2703), - [sym__cite_author_in_text] = ACTIONS(2703), - [sym__cite_suppress_author] = ACTIONS(2703), - [sym__strikeout_open] = ACTIONS(2703), - [sym__subscript_open] = ACTIONS(2703), - [sym__superscript_open] = ACTIONS(2703), - [sym__inline_note_start_token] = ACTIONS(2703), - [sym__strong_emphasis_open_star] = ACTIONS(2703), - [sym__strong_emphasis_open_underscore] = ACTIONS(2703), - [sym__emphasis_open_star] = ACTIONS(2703), - [sym__emphasis_open_underscore] = ACTIONS(2703), - [sym_inline_note_reference] = ACTIONS(2703), - [sym_html_element] = ACTIONS(2703), - [sym__pandoc_line_break] = ACTIONS(2703), - }, - [STATE(434)] = { - [anon_sym_COLON] = ACTIONS(2949), - [sym_entity_reference] = ACTIONS(2949), - [sym_numeric_character_reference] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_BANG_LBRACK] = ACTIONS(2949), - [anon_sym_DOLLAR] = ACTIONS(2951), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [aux_sym_pandoc_str_token1] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2949), - [sym__whitespace] = ACTIONS(2949), - [sym__line_ending] = ACTIONS(2949), - [sym__soft_line_ending] = ACTIONS(2949), - [sym__block_close] = ACTIONS(2949), - [sym__block_quote_start] = ACTIONS(2949), - [sym_atx_h1_marker] = ACTIONS(2949), - [sym_atx_h2_marker] = ACTIONS(2949), - [sym_atx_h3_marker] = ACTIONS(2949), - [sym_atx_h4_marker] = ACTIONS(2949), - [sym_atx_h5_marker] = ACTIONS(2949), - [sym_atx_h6_marker] = ACTIONS(2949), - [sym__thematic_break] = ACTIONS(2949), - [sym__list_marker_minus] = ACTIONS(2949), - [sym__list_marker_plus] = ACTIONS(2949), - [sym__list_marker_star] = ACTIONS(2949), - [sym__list_marker_parenthesis] = ACTIONS(2949), - [sym__list_marker_dot] = ACTIONS(2949), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2949), - [sym__list_marker_example] = ACTIONS(2949), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2949), - [sym__fenced_code_block_start_backtick] = ACTIONS(2949), - [sym_minus_metadata] = ACTIONS(2949), - [sym__pipe_table_start] = ACTIONS(2949), - [sym__fenced_div_start] = ACTIONS(2949), - [sym_ref_id_specifier] = ACTIONS(2949), - [sym__code_span_start] = ACTIONS(2949), - [sym__html_comment] = ACTIONS(2949), - [sym__autolink] = ACTIONS(2949), - [sym__highlight_span_start] = ACTIONS(2949), - [sym__insert_span_start] = ACTIONS(2949), - [sym__delete_span_start] = ACTIONS(2949), - [sym__edit_comment_span_start] = ACTIONS(2949), - [sym__single_quote_span_open] = ACTIONS(2949), - [sym__double_quote_span_open] = ACTIONS(2949), - [sym__shortcode_open_escaped] = ACTIONS(2949), - [sym__shortcode_open] = ACTIONS(2949), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2949), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2949), - [sym__cite_author_in_text] = ACTIONS(2949), - [sym__cite_suppress_author] = ACTIONS(2949), - [sym__strikeout_open] = ACTIONS(2949), - [sym__subscript_open] = ACTIONS(2949), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2949), - [sym__strong_emphasis_open_star] = ACTIONS(2949), - [sym__strong_emphasis_open_underscore] = ACTIONS(2949), - [sym__emphasis_open_star] = ACTIONS(2949), - [sym__emphasis_open_underscore] = ACTIONS(2949), - [sym_inline_note_reference] = ACTIONS(2949), - [sym_html_element] = ACTIONS(2949), - [sym__pandoc_line_break] = ACTIONS(2949), - }, - [STATE(435)] = { - [ts_builtin_sym_end] = ACTIONS(2711), - [anon_sym_COLON] = ACTIONS(2711), - [sym_entity_reference] = ACTIONS(2711), - [sym_numeric_character_reference] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_BANG_LBRACK] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2713), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2711), - [aux_sym_pandoc_str_token1] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2711), - [sym__whitespace] = ACTIONS(2711), - [sym__line_ending] = ACTIONS(2711), - [sym__soft_line_ending] = ACTIONS(2711), - [sym__block_quote_start] = ACTIONS(2711), - [sym_atx_h1_marker] = ACTIONS(2711), - [sym_atx_h2_marker] = ACTIONS(2711), - [sym_atx_h3_marker] = ACTIONS(2711), - [sym_atx_h4_marker] = ACTIONS(2711), - [sym_atx_h5_marker] = ACTIONS(2711), - [sym_atx_h6_marker] = ACTIONS(2711), - [sym__thematic_break] = ACTIONS(2711), - [sym__list_marker_minus] = ACTIONS(2711), - [sym__list_marker_plus] = ACTIONS(2711), - [sym__list_marker_star] = ACTIONS(2711), - [sym__list_marker_parenthesis] = ACTIONS(2711), - [sym__list_marker_dot] = ACTIONS(2711), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2711), - [sym__list_marker_example] = ACTIONS(2711), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2711), - [sym__fenced_code_block_start_backtick] = ACTIONS(2711), - [sym_minus_metadata] = ACTIONS(2711), - [sym__pipe_table_start] = ACTIONS(2711), - [sym__fenced_div_start] = ACTIONS(2711), - [sym_ref_id_specifier] = ACTIONS(2711), - [sym__code_span_start] = ACTIONS(2711), - [sym__html_comment] = ACTIONS(2711), - [sym__autolink] = ACTIONS(2711), - [sym__highlight_span_start] = ACTIONS(2711), - [sym__insert_span_start] = ACTIONS(2711), - [sym__delete_span_start] = ACTIONS(2711), - [sym__edit_comment_span_start] = ACTIONS(2711), - [sym__single_quote_span_open] = ACTIONS(2711), - [sym__double_quote_span_open] = ACTIONS(2711), - [sym__shortcode_open_escaped] = ACTIONS(2711), - [sym__shortcode_open] = ACTIONS(2711), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2711), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2711), - [sym__cite_author_in_text] = ACTIONS(2711), - [sym__cite_suppress_author] = ACTIONS(2711), - [sym__strikeout_open] = ACTIONS(2711), - [sym__subscript_open] = ACTIONS(2711), - [sym__superscript_open] = ACTIONS(2711), - [sym__inline_note_start_token] = ACTIONS(2711), - [sym__strong_emphasis_open_star] = ACTIONS(2711), - [sym__strong_emphasis_open_underscore] = ACTIONS(2711), - [sym__emphasis_open_star] = ACTIONS(2711), - [sym__emphasis_open_underscore] = ACTIONS(2711), - [sym_inline_note_reference] = ACTIONS(2711), - [sym_html_element] = ACTIONS(2711), - [sym__pandoc_line_break] = ACTIONS(2711), - }, - [STATE(436)] = { - [anon_sym_COLON] = ACTIONS(2957), - [sym_entity_reference] = ACTIONS(2957), - [sym_numeric_character_reference] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_BANG_LBRACK] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [aux_sym_pandoc_str_token1] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2957), - [sym__whitespace] = ACTIONS(2957), - [sym__line_ending] = ACTIONS(2957), - [sym__soft_line_ending] = ACTIONS(2957), - [sym__block_close] = ACTIONS(2957), - [sym__block_quote_start] = ACTIONS(2957), - [sym_atx_h1_marker] = ACTIONS(2957), - [sym_atx_h2_marker] = ACTIONS(2957), - [sym_atx_h3_marker] = ACTIONS(2957), - [sym_atx_h4_marker] = ACTIONS(2957), - [sym_atx_h5_marker] = ACTIONS(2957), - [sym_atx_h6_marker] = ACTIONS(2957), - [sym__thematic_break] = ACTIONS(2957), - [sym__list_marker_minus] = ACTIONS(2957), - [sym__list_marker_plus] = ACTIONS(2957), - [sym__list_marker_star] = ACTIONS(2957), - [sym__list_marker_parenthesis] = ACTIONS(2957), - [sym__list_marker_dot] = ACTIONS(2957), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2957), - [sym__list_marker_example] = ACTIONS(2957), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2957), - [sym__fenced_code_block_start_backtick] = ACTIONS(2957), - [sym_minus_metadata] = ACTIONS(2957), - [sym__pipe_table_start] = ACTIONS(2957), - [sym__fenced_div_start] = ACTIONS(2957), - [sym_ref_id_specifier] = ACTIONS(2957), - [sym__code_span_start] = ACTIONS(2957), - [sym__html_comment] = ACTIONS(2957), - [sym__autolink] = ACTIONS(2957), - [sym__highlight_span_start] = ACTIONS(2957), - [sym__insert_span_start] = ACTIONS(2957), - [sym__delete_span_start] = ACTIONS(2957), - [sym__edit_comment_span_start] = ACTIONS(2957), - [sym__single_quote_span_open] = ACTIONS(2957), - [sym__double_quote_span_open] = ACTIONS(2957), - [sym__shortcode_open_escaped] = ACTIONS(2957), - [sym__shortcode_open] = ACTIONS(2957), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2957), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2957), - [sym__cite_author_in_text] = ACTIONS(2957), - [sym__cite_suppress_author] = ACTIONS(2957), - [sym__strikeout_open] = ACTIONS(2957), - [sym__subscript_open] = ACTIONS(2957), - [sym__superscript_open] = ACTIONS(2957), - [sym__inline_note_start_token] = ACTIONS(2957), - [sym__strong_emphasis_open_star] = ACTIONS(2957), - [sym__strong_emphasis_open_underscore] = ACTIONS(2957), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2957), - [sym_inline_note_reference] = ACTIONS(2957), - [sym_html_element] = ACTIONS(2957), - [sym__pandoc_line_break] = ACTIONS(2957), - }, - [STATE(437)] = { - [sym__atx_heading_content] = STATE(3275), - [sym__inlines] = STATE(3275), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(506)] = { + [sym__atx_heading_content] = STATE(3104), + [sym__inlines] = STATE(3104), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(358), + [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), + [sym__newline] = STATE(413), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -60619,9 +65694,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(3155), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(115), + [sym__eof] = ACTIONS(3083), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -60649,101 +65724,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(438)] = { - [anon_sym_COLON] = ACTIONS(2977), - [sym_entity_reference] = ACTIONS(2977), - [sym_numeric_character_reference] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_BANG_LBRACK] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [aux_sym_pandoc_str_token1] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2977), - [sym__whitespace] = ACTIONS(2977), - [sym__line_ending] = ACTIONS(2977), - [sym__soft_line_ending] = ACTIONS(2977), - [sym__block_close] = ACTIONS(2977), - [sym__block_quote_start] = ACTIONS(2977), - [sym_atx_h1_marker] = ACTIONS(2977), - [sym_atx_h2_marker] = ACTIONS(2977), - [sym_atx_h3_marker] = ACTIONS(2977), - [sym_atx_h4_marker] = ACTIONS(2977), - [sym_atx_h5_marker] = ACTIONS(2977), - [sym_atx_h6_marker] = ACTIONS(2977), - [sym__thematic_break] = ACTIONS(2977), - [sym__list_marker_minus] = ACTIONS(2977), - [sym__list_marker_plus] = ACTIONS(2977), - [sym__list_marker_star] = ACTIONS(2977), - [sym__list_marker_parenthesis] = ACTIONS(2977), - [sym__list_marker_dot] = ACTIONS(2977), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_example] = ACTIONS(2977), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2977), - [sym__fenced_code_block_start_backtick] = ACTIONS(2977), - [sym_minus_metadata] = ACTIONS(2977), - [sym__pipe_table_start] = ACTIONS(2977), - [sym__fenced_div_start] = ACTIONS(2977), - [sym_ref_id_specifier] = ACTIONS(2977), - [sym__code_span_start] = ACTIONS(2977), - [sym__html_comment] = ACTIONS(2977), - [sym__autolink] = ACTIONS(2977), - [sym__highlight_span_start] = ACTIONS(2977), - [sym__insert_span_start] = ACTIONS(2977), - [sym__delete_span_start] = ACTIONS(2977), - [sym__edit_comment_span_start] = ACTIONS(2977), - [sym__single_quote_span_open] = ACTIONS(2977), - [sym__double_quote_span_open] = ACTIONS(2977), - [sym__shortcode_open_escaped] = ACTIONS(2977), - [sym__shortcode_open] = ACTIONS(2977), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2977), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2977), - [sym__cite_author_in_text] = ACTIONS(2977), - [sym__cite_suppress_author] = ACTIONS(2977), - [sym__strikeout_open] = ACTIONS(2977), - [sym__subscript_open] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(2977), - [sym__inline_note_start_token] = ACTIONS(2977), - [sym__strong_emphasis_open_star] = ACTIONS(2977), - [sym__strong_emphasis_open_underscore] = ACTIONS(2977), - [sym__emphasis_open_star] = ACTIONS(2977), - [sym__emphasis_open_underscore] = ACTIONS(2977), - [sym_inline_note_reference] = ACTIONS(2977), - [sym_html_element] = ACTIONS(2977), - [sym__pandoc_line_break] = ACTIONS(2977), - }, - [STATE(439)] = { - [sym__atx_heading_content] = STATE(3071), - [sym__inlines] = STATE(3071), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(507)] = { + [sym__atx_heading_content] = STATE(3106), + [sym__inlines] = STATE(3106), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(445), + [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), + [sym__newline] = STATE(414), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -60753,9 +65761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(3157), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(115), + [sym__eof] = ACTIONS(3085), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -60783,302 +65791,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(440)] = { - [ts_builtin_sym_end] = ACTIONS(2891), - [anon_sym_COLON] = ACTIONS(2891), - [sym_entity_reference] = ACTIONS(2891), - [sym_numeric_character_reference] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_BANG_LBRACK] = ACTIONS(2891), - [anon_sym_DOLLAR] = ACTIONS(2893), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [aux_sym_pandoc_str_token1] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [sym__whitespace] = ACTIONS(2891), - [sym__line_ending] = ACTIONS(2891), - [sym__soft_line_ending] = ACTIONS(2891), - [sym__block_quote_start] = ACTIONS(2891), - [sym_atx_h1_marker] = ACTIONS(2891), - [sym_atx_h2_marker] = ACTIONS(2891), - [sym_atx_h3_marker] = ACTIONS(2891), - [sym_atx_h4_marker] = ACTIONS(2891), - [sym_atx_h5_marker] = ACTIONS(2891), - [sym_atx_h6_marker] = ACTIONS(2891), - [sym__thematic_break] = ACTIONS(2891), - [sym__list_marker_minus] = ACTIONS(2891), - [sym__list_marker_plus] = ACTIONS(2891), - [sym__list_marker_star] = ACTIONS(2891), - [sym__list_marker_parenthesis] = ACTIONS(2891), - [sym__list_marker_dot] = ACTIONS(2891), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2891), - [sym__list_marker_example] = ACTIONS(2891), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2891), - [sym__fenced_code_block_start_backtick] = ACTIONS(2891), - [sym_minus_metadata] = ACTIONS(2891), - [sym__pipe_table_start] = ACTIONS(2891), - [sym__fenced_div_start] = ACTIONS(2891), - [sym_ref_id_specifier] = ACTIONS(2891), - [sym__code_span_start] = ACTIONS(2891), - [sym__html_comment] = ACTIONS(2891), - [sym__autolink] = ACTIONS(2891), - [sym__highlight_span_start] = ACTIONS(2891), - [sym__insert_span_start] = ACTIONS(2891), - [sym__delete_span_start] = ACTIONS(2891), - [sym__edit_comment_span_start] = ACTIONS(2891), - [sym__single_quote_span_open] = ACTIONS(2891), - [sym__double_quote_span_open] = ACTIONS(2891), - [sym__shortcode_open_escaped] = ACTIONS(2891), - [sym__shortcode_open] = ACTIONS(2891), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2891), - [sym__cite_author_in_text] = ACTIONS(2891), - [sym__cite_suppress_author] = ACTIONS(2891), - [sym__strikeout_open] = ACTIONS(2891), - [sym__subscript_open] = ACTIONS(2891), - [sym__superscript_open] = ACTIONS(2891), - [sym__inline_note_start_token] = ACTIONS(2891), - [sym__strong_emphasis_open_star] = ACTIONS(2891), - [sym__strong_emphasis_open_underscore] = ACTIONS(2891), - [sym__emphasis_open_star] = ACTIONS(2891), - [sym__emphasis_open_underscore] = ACTIONS(2891), - [sym_inline_note_reference] = ACTIONS(2891), - [sym_html_element] = ACTIONS(2891), - [sym__pandoc_line_break] = ACTIONS(2891), - }, - [STATE(441)] = { - [anon_sym_COLON] = ACTIONS(2581), - [sym_entity_reference] = ACTIONS(2581), - [sym_numeric_character_reference] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_BANG_LBRACK] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [aux_sym_pandoc_str_token1] = ACTIONS(2583), - [anon_sym_PIPE] = ACTIONS(2581), - [sym__whitespace] = ACTIONS(2581), - [sym__line_ending] = ACTIONS(2581), - [sym__soft_line_ending] = ACTIONS(2581), - [sym__block_close] = ACTIONS(2581), - [sym__block_quote_start] = ACTIONS(2581), - [sym_atx_h1_marker] = ACTIONS(2581), - [sym_atx_h2_marker] = ACTIONS(2581), - [sym_atx_h3_marker] = ACTIONS(2581), - [sym_atx_h4_marker] = ACTIONS(2581), - [sym_atx_h5_marker] = ACTIONS(2581), - [sym_atx_h6_marker] = ACTIONS(2581), - [sym__thematic_break] = ACTIONS(2581), - [sym__list_marker_minus] = ACTIONS(2581), - [sym__list_marker_plus] = ACTIONS(2581), - [sym__list_marker_star] = ACTIONS(2581), - [sym__list_marker_parenthesis] = ACTIONS(2581), - [sym__list_marker_dot] = ACTIONS(2581), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2581), - [sym__list_marker_example] = ACTIONS(2581), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2581), - [sym__fenced_code_block_start_backtick] = ACTIONS(2581), - [sym_minus_metadata] = ACTIONS(2581), - [sym__pipe_table_start] = ACTIONS(2581), - [sym__fenced_div_start] = ACTIONS(2581), - [sym_ref_id_specifier] = ACTIONS(2581), - [sym__code_span_start] = ACTIONS(2581), - [sym__html_comment] = ACTIONS(2581), - [sym__autolink] = ACTIONS(2581), - [sym__highlight_span_start] = ACTIONS(2581), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2581), - [sym__edit_comment_span_start] = ACTIONS(2581), - [sym__single_quote_span_open] = ACTIONS(2581), - [sym__double_quote_span_open] = ACTIONS(2581), - [sym__shortcode_open_escaped] = ACTIONS(2581), - [sym__shortcode_open] = ACTIONS(2581), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2581), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2581), - [sym__cite_author_in_text] = ACTIONS(2581), - [sym__cite_suppress_author] = ACTIONS(2581), - [sym__strikeout_open] = ACTIONS(2581), - [sym__subscript_open] = ACTIONS(2581), - [sym__superscript_open] = ACTIONS(2581), - [sym__inline_note_start_token] = ACTIONS(2581), - [sym__strong_emphasis_open_star] = ACTIONS(2581), - [sym__strong_emphasis_open_underscore] = ACTIONS(2581), - [sym__emphasis_open_star] = ACTIONS(2581), - [sym__emphasis_open_underscore] = ACTIONS(2581), - [sym_inline_note_reference] = ACTIONS(2581), - [sym_html_element] = ACTIONS(2581), - [sym__pandoc_line_break] = ACTIONS(2581), - }, - [STATE(442)] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2585), - [sym_entity_reference] = ACTIONS(2585), - [sym_numeric_character_reference] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_BANG_LBRACK] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [aux_sym_pandoc_str_token1] = ACTIONS(2587), - [anon_sym_PIPE] = ACTIONS(2585), - [sym__whitespace] = ACTIONS(2585), - [sym__line_ending] = ACTIONS(2585), - [sym__soft_line_ending] = ACTIONS(2585), - [sym__block_quote_start] = ACTIONS(2585), - [sym_atx_h1_marker] = ACTIONS(2585), - [sym_atx_h2_marker] = ACTIONS(2585), - [sym_atx_h3_marker] = ACTIONS(2585), - [sym_atx_h4_marker] = ACTIONS(2585), - [sym_atx_h5_marker] = ACTIONS(2585), - [sym_atx_h6_marker] = ACTIONS(2585), - [sym__thematic_break] = ACTIONS(2585), - [sym__list_marker_minus] = ACTIONS(2585), - [sym__list_marker_plus] = ACTIONS(2585), - [sym__list_marker_star] = ACTIONS(2585), - [sym__list_marker_parenthesis] = ACTIONS(2585), - [sym__list_marker_dot] = ACTIONS(2585), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2585), - [sym__list_marker_example] = ACTIONS(2585), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2585), - [sym__fenced_code_block_start_backtick] = ACTIONS(2585), - [sym_minus_metadata] = ACTIONS(2585), - [sym__pipe_table_start] = ACTIONS(2585), - [sym__fenced_div_start] = ACTIONS(2585), - [sym_ref_id_specifier] = ACTIONS(2585), - [sym__code_span_start] = ACTIONS(2585), - [sym__html_comment] = ACTIONS(2585), - [sym__autolink] = ACTIONS(2585), - [sym__highlight_span_start] = ACTIONS(2585), - [sym__insert_span_start] = ACTIONS(2585), - [sym__delete_span_start] = ACTIONS(2585), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2585), - [sym__double_quote_span_open] = ACTIONS(2585), - [sym__shortcode_open_escaped] = ACTIONS(2585), - [sym__shortcode_open] = ACTIONS(2585), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2585), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2585), - [sym__cite_author_in_text] = ACTIONS(2585), - [sym__cite_suppress_author] = ACTIONS(2585), - [sym__strikeout_open] = ACTIONS(2585), - [sym__subscript_open] = ACTIONS(2585), - [sym__superscript_open] = ACTIONS(2585), - [sym__inline_note_start_token] = ACTIONS(2585), - [sym__strong_emphasis_open_star] = ACTIONS(2585), - [sym__strong_emphasis_open_underscore] = ACTIONS(2585), - [sym__emphasis_open_star] = ACTIONS(2585), - [sym__emphasis_open_underscore] = ACTIONS(2585), - [sym_inline_note_reference] = ACTIONS(2585), - [sym_html_element] = ACTIONS(2585), - [sym__pandoc_line_break] = ACTIONS(2585), - }, - [STATE(443)] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2293), - [sym_entity_reference] = ACTIONS(2293), - [sym_numeric_character_reference] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [aux_sym_pandoc_str_token1] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2293), - [sym__whitespace] = ACTIONS(2293), - [sym__line_ending] = ACTIONS(2293), - [sym__soft_line_ending] = ACTIONS(2293), - [sym__block_quote_start] = ACTIONS(2293), - [sym_atx_h1_marker] = ACTIONS(2293), - [sym_atx_h2_marker] = ACTIONS(2293), - [sym_atx_h3_marker] = ACTIONS(2293), - [sym_atx_h4_marker] = ACTIONS(2293), - [sym_atx_h5_marker] = ACTIONS(2293), - [sym_atx_h6_marker] = ACTIONS(2293), - [sym__thematic_break] = ACTIONS(2293), - [sym__list_marker_minus] = ACTIONS(2293), - [sym__list_marker_plus] = ACTIONS(2293), - [sym__list_marker_star] = ACTIONS(2293), - [sym__list_marker_parenthesis] = ACTIONS(2293), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2293), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2293), - [sym__fenced_code_block_start_backtick] = ACTIONS(2293), - [sym_minus_metadata] = ACTIONS(2293), - [sym__pipe_table_start] = ACTIONS(2293), - [sym__fenced_div_start] = ACTIONS(2293), - [sym_ref_id_specifier] = ACTIONS(2293), - [sym__code_span_start] = ACTIONS(2293), - [sym__html_comment] = ACTIONS(2293), - [sym__autolink] = ACTIONS(2293), - [sym__highlight_span_start] = ACTIONS(2293), - [sym__insert_span_start] = ACTIONS(2293), - [sym__delete_span_start] = ACTIONS(2293), - [sym__edit_comment_span_start] = ACTIONS(2293), - [sym__single_quote_span_open] = ACTIONS(2293), - [sym__double_quote_span_open] = ACTIONS(2293), - [sym__shortcode_open_escaped] = ACTIONS(2293), - [sym__shortcode_open] = ACTIONS(2293), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2293), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2293), - [sym__cite_author_in_text] = ACTIONS(2293), - [sym__cite_suppress_author] = ACTIONS(2293), - [sym__strikeout_open] = ACTIONS(2293), - [sym__subscript_open] = ACTIONS(2293), - [sym__superscript_open] = ACTIONS(2293), - [sym__inline_note_start_token] = ACTIONS(2293), - [sym__strong_emphasis_open_star] = ACTIONS(2293), - [sym__strong_emphasis_open_underscore] = ACTIONS(2293), - [sym__emphasis_open_star] = ACTIONS(2293), - [sym__emphasis_open_underscore] = ACTIONS(2293), - [sym_inline_note_reference] = ACTIONS(2293), - [sym_html_element] = ACTIONS(2293), - [sym__pandoc_line_break] = ACTIONS(2293), - }, - [STATE(444)] = { - [sym__atx_heading_content] = STATE(3253), - [sym__inlines] = STATE(3253), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(508)] = { + [sym__atx_heading_content] = STATE(3122), + [sym__inlines] = STATE(3122), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(465), + [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), + [sym__newline] = STATE(415), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -61088,9 +65828,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(3159), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(115), + [sym__eof] = ACTIONS(3087), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -61118,1843 +65858,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(445)] = { - [ts_builtin_sym_end] = ACTIONS(2593), - [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2593), - }, - [STATE(446)] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [anon_sym_COLON] = ACTIONS(2905), - [sym_entity_reference] = ACTIONS(2905), - [sym_numeric_character_reference] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_BANG_LBRACK] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2907), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2905), - [aux_sym_pandoc_str_token1] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [sym__whitespace] = ACTIONS(2905), - [sym__line_ending] = ACTIONS(2905), - [sym__soft_line_ending] = ACTIONS(2905), - [sym__block_quote_start] = ACTIONS(2905), - [sym_atx_h1_marker] = ACTIONS(2905), - [sym_atx_h2_marker] = ACTIONS(2905), - [sym_atx_h3_marker] = ACTIONS(2905), - [sym_atx_h4_marker] = ACTIONS(2905), - [sym_atx_h5_marker] = ACTIONS(2905), - [sym_atx_h6_marker] = ACTIONS(2905), - [sym__thematic_break] = ACTIONS(2905), - [sym__list_marker_minus] = ACTIONS(2905), - [sym__list_marker_plus] = ACTIONS(2905), - [sym__list_marker_star] = ACTIONS(2905), - [sym__list_marker_parenthesis] = ACTIONS(2905), - [sym__list_marker_dot] = ACTIONS(2905), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_example] = ACTIONS(2905), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2905), - [sym__fenced_code_block_start_backtick] = ACTIONS(2905), - [sym_minus_metadata] = ACTIONS(2905), - [sym__pipe_table_start] = ACTIONS(2905), - [sym__fenced_div_start] = ACTIONS(2905), - [sym_ref_id_specifier] = ACTIONS(2905), - [sym__code_span_start] = ACTIONS(2905), - [sym__html_comment] = ACTIONS(2905), - [sym__autolink] = ACTIONS(2905), - [sym__highlight_span_start] = ACTIONS(2905), - [sym__insert_span_start] = ACTIONS(2905), - [sym__delete_span_start] = ACTIONS(2905), - [sym__edit_comment_span_start] = ACTIONS(2905), - [sym__single_quote_span_open] = ACTIONS(2905), - [sym__double_quote_span_open] = ACTIONS(2905), - [sym__shortcode_open_escaped] = ACTIONS(2905), - [sym__shortcode_open] = ACTIONS(2905), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2905), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2905), - [sym__cite_author_in_text] = ACTIONS(2905), - [sym__cite_suppress_author] = ACTIONS(2905), - [sym__strikeout_open] = ACTIONS(2905), - [sym__subscript_open] = ACTIONS(2905), - [sym__superscript_open] = ACTIONS(2905), - [sym__inline_note_start_token] = ACTIONS(2905), - [sym__strong_emphasis_open_star] = ACTIONS(2905), - [sym__strong_emphasis_open_underscore] = ACTIONS(2905), - [sym__emphasis_open_star] = ACTIONS(2905), - [sym__emphasis_open_underscore] = ACTIONS(2905), - [sym_inline_note_reference] = ACTIONS(2905), - [sym_html_element] = ACTIONS(2905), - [sym__pandoc_line_break] = ACTIONS(2905), + [STATE(509)] = { + [sym_pipe_table_row] = STATE(3404), + [sym_pipe_table_cell] = STATE(3192), + [sym_pandoc_span] = STATE(681), + [sym_pandoc_image] = STATE(681), + [sym_pandoc_math] = STATE(681), + [sym_pandoc_display_math] = STATE(681), + [sym_pandoc_code_span] = STATE(681), + [sym_pandoc_single_quote] = STATE(681), + [sym_pandoc_double_quote] = STATE(681), + [sym_insert] = STATE(681), + [sym_delete] = STATE(681), + [sym_edit_comment] = STATE(681), + [sym_highlight] = STATE(681), + [sym__pandoc_attr_specifier] = STATE(681), + [sym__line_with_maybe_spaces] = STATE(3193), + [sym__inline_element] = STATE(681), + [sym_shortcode_escaped] = STATE(681), + [sym_shortcode] = STATE(681), + [sym_citation] = STATE(681), + [sym_inline_note] = STATE(681), + [sym_pandoc_superscript] = STATE(681), + [sym_pandoc_subscript] = STATE(681), + [sym_pandoc_strikeout] = STATE(681), + [sym_pandoc_emph] = STATE(681), + [sym_pandoc_strong] = STATE(681), + [sym_pandoc_str] = STATE(681), + [aux_sym_pipe_table_row_repeat1] = STATE(594), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(681), + [sym_entity_reference] = ACTIONS(3089), + [sym_numeric_character_reference] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_BANG_LBRACK] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [aux_sym_pandoc_str_token1] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3103), + [sym__whitespace] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3089), + [sym__autolink] = ACTIONS(3089), + [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(3089), + [sym_html_element] = ACTIONS(3089), + [sym__pipe_table_delimiter] = ACTIONS(3149), + [sym__pandoc_line_break] = ACTIONS(3089), }, - [STATE(447)] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(2909), - [sym_entity_reference] = ACTIONS(2909), - [sym_numeric_character_reference] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_BANG_LBRACK] = ACTIONS(2909), - [anon_sym_DOLLAR] = ACTIONS(2911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [aux_sym_pandoc_str_token1] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [sym__whitespace] = ACTIONS(2909), - [sym__line_ending] = ACTIONS(2909), - [sym__soft_line_ending] = ACTIONS(2909), - [sym__block_quote_start] = ACTIONS(2909), - [sym_atx_h1_marker] = ACTIONS(2909), - [sym_atx_h2_marker] = ACTIONS(2909), - [sym_atx_h3_marker] = ACTIONS(2909), - [sym_atx_h4_marker] = ACTIONS(2909), - [sym_atx_h5_marker] = ACTIONS(2909), - [sym_atx_h6_marker] = ACTIONS(2909), - [sym__thematic_break] = ACTIONS(2909), - [sym__list_marker_minus] = ACTIONS(2909), - [sym__list_marker_plus] = ACTIONS(2909), - [sym__list_marker_star] = ACTIONS(2909), - [sym__list_marker_parenthesis] = ACTIONS(2909), - [sym__list_marker_dot] = ACTIONS(2909), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_example] = ACTIONS(2909), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2909), - [sym__fenced_code_block_start_backtick] = ACTIONS(2909), - [sym_minus_metadata] = ACTIONS(2909), - [sym__pipe_table_start] = ACTIONS(2909), - [sym__fenced_div_start] = ACTIONS(2909), - [sym_ref_id_specifier] = ACTIONS(2909), - [sym__code_span_start] = ACTIONS(2909), - [sym__html_comment] = ACTIONS(2909), - [sym__autolink] = ACTIONS(2909), - [sym__highlight_span_start] = ACTIONS(2909), - [sym__insert_span_start] = ACTIONS(2909), - [sym__delete_span_start] = ACTIONS(2909), - [sym__edit_comment_span_start] = ACTIONS(2909), - [sym__single_quote_span_open] = ACTIONS(2909), - [sym__double_quote_span_open] = ACTIONS(2909), - [sym__shortcode_open_escaped] = ACTIONS(2909), - [sym__shortcode_open] = ACTIONS(2909), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2909), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2909), - [sym__cite_author_in_text] = ACTIONS(2909), - [sym__cite_suppress_author] = ACTIONS(2909), - [sym__strikeout_open] = ACTIONS(2909), - [sym__subscript_open] = ACTIONS(2909), - [sym__superscript_open] = ACTIONS(2909), - [sym__inline_note_start_token] = ACTIONS(2909), - [sym__strong_emphasis_open_star] = ACTIONS(2909), - [sym__strong_emphasis_open_underscore] = ACTIONS(2909), - [sym__emphasis_open_star] = ACTIONS(2909), - [sym__emphasis_open_underscore] = ACTIONS(2909), - [sym_inline_note_reference] = ACTIONS(2909), - [sym_html_element] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2909), + [STATE(510)] = { + [sym__inlines] = STATE(3857), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3153), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(448)] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [anon_sym_COLON] = ACTIONS(2913), - [sym_entity_reference] = ACTIONS(2913), - [sym_numeric_character_reference] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_BANG_LBRACK] = ACTIONS(2913), - [anon_sym_DOLLAR] = ACTIONS(2915), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [aux_sym_pandoc_str_token1] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [sym__whitespace] = ACTIONS(2913), - [sym__line_ending] = ACTIONS(2913), - [sym__soft_line_ending] = ACTIONS(2913), - [sym__block_quote_start] = ACTIONS(2913), - [sym_atx_h1_marker] = ACTIONS(2913), - [sym_atx_h2_marker] = ACTIONS(2913), - [sym_atx_h3_marker] = ACTIONS(2913), - [sym_atx_h4_marker] = ACTIONS(2913), - [sym_atx_h5_marker] = ACTIONS(2913), - [sym_atx_h6_marker] = ACTIONS(2913), - [sym__thematic_break] = ACTIONS(2913), - [sym__list_marker_minus] = ACTIONS(2913), - [sym__list_marker_plus] = ACTIONS(2913), - [sym__list_marker_star] = ACTIONS(2913), - [sym__list_marker_parenthesis] = ACTIONS(2913), - [sym__list_marker_dot] = ACTIONS(2913), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_example] = ACTIONS(2913), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2913), - [sym__fenced_code_block_start_backtick] = ACTIONS(2913), - [sym_minus_metadata] = ACTIONS(2913), - [sym__pipe_table_start] = ACTIONS(2913), - [sym__fenced_div_start] = ACTIONS(2913), - [sym_ref_id_specifier] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(2913), - [sym__html_comment] = ACTIONS(2913), - [sym__autolink] = ACTIONS(2913), - [sym__highlight_span_start] = ACTIONS(2913), - [sym__insert_span_start] = ACTIONS(2913), - [sym__delete_span_start] = ACTIONS(2913), - [sym__edit_comment_span_start] = ACTIONS(2913), - [sym__single_quote_span_open] = ACTIONS(2913), - [sym__double_quote_span_open] = ACTIONS(2913), - [sym__shortcode_open_escaped] = ACTIONS(2913), - [sym__shortcode_open] = ACTIONS(2913), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2913), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2913), - [sym__cite_author_in_text] = ACTIONS(2913), - [sym__cite_suppress_author] = ACTIONS(2913), - [sym__strikeout_open] = ACTIONS(2913), - [sym__subscript_open] = ACTIONS(2913), - [sym__superscript_open] = ACTIONS(2913), - [sym__inline_note_start_token] = ACTIONS(2913), - [sym__strong_emphasis_open_star] = ACTIONS(2913), - [sym__strong_emphasis_open_underscore] = ACTIONS(2913), - [sym__emphasis_open_star] = ACTIONS(2913), - [sym__emphasis_open_underscore] = ACTIONS(2913), - [sym_inline_note_reference] = ACTIONS(2913), - [sym_html_element] = ACTIONS(2913), - [sym__pandoc_line_break] = ACTIONS(2913), + [STATE(511)] = { + [sym__inlines] = STATE(3993), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3157), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(449)] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [anon_sym_COLON] = ACTIONS(2917), - [sym_entity_reference] = ACTIONS(2917), - [sym_numeric_character_reference] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_BANG_LBRACK] = ACTIONS(2917), - [anon_sym_DOLLAR] = ACTIONS(2919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [aux_sym_pandoc_str_token1] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2917), - [sym__whitespace] = ACTIONS(2917), - [sym__line_ending] = ACTIONS(2917), - [sym__soft_line_ending] = ACTIONS(2917), - [sym__block_quote_start] = ACTIONS(2917), - [sym_atx_h1_marker] = ACTIONS(2917), - [sym_atx_h2_marker] = ACTIONS(2917), - [sym_atx_h3_marker] = ACTIONS(2917), - [sym_atx_h4_marker] = ACTIONS(2917), - [sym_atx_h5_marker] = ACTIONS(2917), - [sym_atx_h6_marker] = ACTIONS(2917), - [sym__thematic_break] = ACTIONS(2917), - [sym__list_marker_minus] = ACTIONS(2917), - [sym__list_marker_plus] = ACTIONS(2917), - [sym__list_marker_star] = ACTIONS(2917), - [sym__list_marker_parenthesis] = ACTIONS(2917), - [sym__list_marker_dot] = ACTIONS(2917), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_example] = ACTIONS(2917), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2917), - [sym__fenced_code_block_start_backtick] = ACTIONS(2917), - [sym_minus_metadata] = ACTIONS(2917), - [sym__pipe_table_start] = ACTIONS(2917), - [sym__fenced_div_start] = ACTIONS(2917), - [sym_ref_id_specifier] = ACTIONS(2917), - [sym__code_span_start] = ACTIONS(2917), - [sym__html_comment] = ACTIONS(2917), - [sym__autolink] = ACTIONS(2917), - [sym__highlight_span_start] = ACTIONS(2917), - [sym__insert_span_start] = ACTIONS(2917), - [sym__delete_span_start] = ACTIONS(2917), - [sym__edit_comment_span_start] = ACTIONS(2917), - [sym__single_quote_span_open] = ACTIONS(2917), - [sym__double_quote_span_open] = ACTIONS(2917), - [sym__shortcode_open_escaped] = ACTIONS(2917), - [sym__shortcode_open] = ACTIONS(2917), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2917), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2917), - [sym__cite_author_in_text] = ACTIONS(2917), - [sym__cite_suppress_author] = ACTIONS(2917), - [sym__strikeout_open] = ACTIONS(2917), - [sym__subscript_open] = ACTIONS(2917), - [sym__superscript_open] = ACTIONS(2917), - [sym__inline_note_start_token] = ACTIONS(2917), - [sym__strong_emphasis_open_star] = ACTIONS(2917), - [sym__strong_emphasis_open_underscore] = ACTIONS(2917), - [sym__emphasis_open_star] = ACTIONS(2917), - [sym__emphasis_open_underscore] = ACTIONS(2917), - [sym_inline_note_reference] = ACTIONS(2917), - [sym_html_element] = ACTIONS(2917), - [sym__pandoc_line_break] = ACTIONS(2917), + [STATE(512)] = { + [sym__inlines] = STATE(3525), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3161), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(450)] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [anon_sym_COLON] = ACTIONS(2921), - [sym_entity_reference] = ACTIONS(2921), - [sym_numeric_character_reference] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_BANG_LBRACK] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [aux_sym_pandoc_str_token1] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2921), - [sym__whitespace] = ACTIONS(2921), - [sym__line_ending] = ACTIONS(2921), - [sym__soft_line_ending] = ACTIONS(2921), - [sym__block_quote_start] = ACTIONS(2921), - [sym_atx_h1_marker] = ACTIONS(2921), - [sym_atx_h2_marker] = ACTIONS(2921), - [sym_atx_h3_marker] = ACTIONS(2921), - [sym_atx_h4_marker] = ACTIONS(2921), - [sym_atx_h5_marker] = ACTIONS(2921), - [sym_atx_h6_marker] = ACTIONS(2921), - [sym__thematic_break] = ACTIONS(2921), - [sym__list_marker_minus] = ACTIONS(2921), - [sym__list_marker_plus] = ACTIONS(2921), - [sym__list_marker_star] = ACTIONS(2921), - [sym__list_marker_parenthesis] = ACTIONS(2921), - [sym__list_marker_dot] = ACTIONS(2921), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_example] = ACTIONS(2921), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2921), - [sym__fenced_code_block_start_backtick] = ACTIONS(2921), - [sym_minus_metadata] = ACTIONS(2921), - [sym__pipe_table_start] = ACTIONS(2921), - [sym__fenced_div_start] = ACTIONS(2921), - [sym_ref_id_specifier] = ACTIONS(2921), - [sym__code_span_start] = ACTIONS(2921), - [sym__html_comment] = ACTIONS(2921), - [sym__autolink] = ACTIONS(2921), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2921), - [sym__delete_span_start] = ACTIONS(2921), - [sym__edit_comment_span_start] = ACTIONS(2921), - [sym__single_quote_span_open] = ACTIONS(2921), - [sym__double_quote_span_open] = ACTIONS(2921), - [sym__shortcode_open_escaped] = ACTIONS(2921), - [sym__shortcode_open] = ACTIONS(2921), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2921), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2921), - [sym__cite_author_in_text] = ACTIONS(2921), - [sym__cite_suppress_author] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(2921), - [sym__subscript_open] = ACTIONS(2921), - [sym__superscript_open] = ACTIONS(2921), - [sym__inline_note_start_token] = ACTIONS(2921), - [sym__strong_emphasis_open_star] = ACTIONS(2921), - [sym__strong_emphasis_open_underscore] = ACTIONS(2921), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym_inline_note_reference] = ACTIONS(2921), - [sym_html_element] = ACTIONS(2921), - [sym__pandoc_line_break] = ACTIONS(2921), + [STATE(513)] = { + [sym__inlines] = STATE(3628), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3165), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(451)] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [anon_sym_COLON] = ACTIONS(2925), - [sym_entity_reference] = ACTIONS(2925), - [sym_numeric_character_reference] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_BANG_LBRACK] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [aux_sym_pandoc_str_token1] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2925), - [sym__whitespace] = ACTIONS(2925), - [sym__line_ending] = ACTIONS(2925), - [sym__soft_line_ending] = ACTIONS(2925), - [sym__block_quote_start] = ACTIONS(2925), - [sym_atx_h1_marker] = ACTIONS(2925), - [sym_atx_h2_marker] = ACTIONS(2925), - [sym_atx_h3_marker] = ACTIONS(2925), - [sym_atx_h4_marker] = ACTIONS(2925), - [sym_atx_h5_marker] = ACTIONS(2925), - [sym_atx_h6_marker] = ACTIONS(2925), - [sym__thematic_break] = ACTIONS(2925), - [sym__list_marker_minus] = ACTIONS(2925), - [sym__list_marker_plus] = ACTIONS(2925), - [sym__list_marker_star] = ACTIONS(2925), - [sym__list_marker_parenthesis] = ACTIONS(2925), - [sym__list_marker_dot] = ACTIONS(2925), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_example] = ACTIONS(2925), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2925), - [sym__fenced_code_block_start_backtick] = ACTIONS(2925), - [sym_minus_metadata] = ACTIONS(2925), - [sym__pipe_table_start] = ACTIONS(2925), - [sym__fenced_div_start] = ACTIONS(2925), - [sym_ref_id_specifier] = ACTIONS(2925), - [sym__code_span_start] = ACTIONS(2925), - [sym__html_comment] = ACTIONS(2925), - [sym__autolink] = ACTIONS(2925), - [sym__highlight_span_start] = ACTIONS(2925), - [sym__insert_span_start] = ACTIONS(2925), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2925), - [sym__single_quote_span_open] = ACTIONS(2925), - [sym__double_quote_span_open] = ACTIONS(2925), - [sym__shortcode_open_escaped] = ACTIONS(2925), - [sym__shortcode_open] = ACTIONS(2925), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2925), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2925), - [sym__cite_author_in_text] = ACTIONS(2925), - [sym__cite_suppress_author] = ACTIONS(2925), - [sym__strikeout_open] = ACTIONS(2925), - [sym__subscript_open] = ACTIONS(2925), - [sym__superscript_open] = ACTIONS(2925), - [sym__inline_note_start_token] = ACTIONS(2925), - [sym__strong_emphasis_open_star] = ACTIONS(2925), - [sym__strong_emphasis_open_underscore] = ACTIONS(2925), - [sym__emphasis_open_star] = ACTIONS(2925), - [sym__emphasis_open_underscore] = ACTIONS(2925), - [sym_inline_note_reference] = ACTIONS(2925), - [sym_html_element] = ACTIONS(2925), - [sym__pandoc_line_break] = ACTIONS(2925), - }, - [STATE(452)] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [anon_sym_COLON] = ACTIONS(2929), - [sym_entity_reference] = ACTIONS(2929), - [sym_numeric_character_reference] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_BANG_LBRACK] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2931), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2929), - [aux_sym_pandoc_str_token1] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2929), - [sym__whitespace] = ACTIONS(2929), - [sym__line_ending] = ACTIONS(2929), - [sym__soft_line_ending] = ACTIONS(2929), - [sym__block_quote_start] = ACTIONS(2929), - [sym_atx_h1_marker] = ACTIONS(2929), - [sym_atx_h2_marker] = ACTIONS(2929), - [sym_atx_h3_marker] = ACTIONS(2929), - [sym_atx_h4_marker] = ACTIONS(2929), - [sym_atx_h5_marker] = ACTIONS(2929), - [sym_atx_h6_marker] = ACTIONS(2929), - [sym__thematic_break] = ACTIONS(2929), - [sym__list_marker_minus] = ACTIONS(2929), - [sym__list_marker_plus] = ACTIONS(2929), - [sym__list_marker_star] = ACTIONS(2929), - [sym__list_marker_parenthesis] = ACTIONS(2929), - [sym__list_marker_dot] = ACTIONS(2929), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_example] = ACTIONS(2929), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2929), - [sym__fenced_code_block_start_backtick] = ACTIONS(2929), - [sym_minus_metadata] = ACTIONS(2929), - [sym__pipe_table_start] = ACTIONS(2929), - [sym__fenced_div_start] = ACTIONS(2929), - [sym_ref_id_specifier] = ACTIONS(2929), - [sym__code_span_start] = ACTIONS(2929), - [sym__html_comment] = ACTIONS(2929), - [sym__autolink] = ACTIONS(2929), - [sym__highlight_span_start] = ACTIONS(2929), - [sym__insert_span_start] = ACTIONS(2929), - [sym__delete_span_start] = ACTIONS(2929), - [sym__edit_comment_span_start] = ACTIONS(2929), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2929), - [sym__shortcode_open_escaped] = ACTIONS(2929), - [sym__shortcode_open] = ACTIONS(2929), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2929), - [sym__cite_author_in_text] = ACTIONS(2929), - [sym__cite_suppress_author] = ACTIONS(2929), - [sym__strikeout_open] = ACTIONS(2929), - [sym__subscript_open] = ACTIONS(2929), - [sym__superscript_open] = ACTIONS(2929), - [sym__inline_note_start_token] = ACTIONS(2929), - [sym__strong_emphasis_open_star] = ACTIONS(2929), - [sym__strong_emphasis_open_underscore] = ACTIONS(2929), - [sym__emphasis_open_star] = ACTIONS(2929), - [sym__emphasis_open_underscore] = ACTIONS(2929), - [sym_inline_note_reference] = ACTIONS(2929), - [sym_html_element] = ACTIONS(2929), - [sym__pandoc_line_break] = ACTIONS(2929), - }, - [STATE(453)] = { - [anon_sym_COLON] = ACTIONS(2293), - [sym_entity_reference] = ACTIONS(2293), - [sym_numeric_character_reference] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [aux_sym_pandoc_str_token1] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2293), - [sym__whitespace] = ACTIONS(2293), - [sym__line_ending] = ACTIONS(2293), - [sym__soft_line_ending] = ACTIONS(2293), - [sym__block_close] = ACTIONS(2293), - [sym__block_quote_start] = ACTIONS(2293), - [sym_atx_h1_marker] = ACTIONS(2293), - [sym_atx_h2_marker] = ACTIONS(2293), - [sym_atx_h3_marker] = ACTIONS(2293), - [sym_atx_h4_marker] = ACTIONS(2293), - [sym_atx_h5_marker] = ACTIONS(2293), - [sym_atx_h6_marker] = ACTIONS(2293), - [sym__thematic_break] = ACTIONS(2293), - [sym__list_marker_minus] = ACTIONS(2293), - [sym__list_marker_plus] = ACTIONS(2293), - [sym__list_marker_star] = ACTIONS(2293), - [sym__list_marker_parenthesis] = ACTIONS(2293), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2293), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2293), - [sym__fenced_code_block_start_backtick] = ACTIONS(2293), - [sym_minus_metadata] = ACTIONS(2293), - [sym__pipe_table_start] = ACTIONS(2293), - [sym__fenced_div_start] = ACTIONS(2293), - [sym_ref_id_specifier] = ACTIONS(2293), - [sym__code_span_start] = ACTIONS(2293), - [sym__html_comment] = ACTIONS(2293), - [sym__autolink] = ACTIONS(2293), - [sym__highlight_span_start] = ACTIONS(2293), - [sym__insert_span_start] = ACTIONS(2293), - [sym__delete_span_start] = ACTIONS(2293), - [sym__edit_comment_span_start] = ACTIONS(2293), - [sym__single_quote_span_open] = ACTIONS(2293), - [sym__double_quote_span_open] = ACTIONS(2293), - [sym__shortcode_open_escaped] = ACTIONS(2293), - [sym__shortcode_open] = ACTIONS(2293), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2293), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2293), - [sym__cite_author_in_text] = ACTIONS(2293), - [sym__cite_suppress_author] = ACTIONS(2293), - [sym__strikeout_open] = ACTIONS(2293), - [sym__subscript_open] = ACTIONS(2293), - [sym__superscript_open] = ACTIONS(2293), - [sym__inline_note_start_token] = ACTIONS(2293), - [sym__strong_emphasis_open_star] = ACTIONS(2293), - [sym__strong_emphasis_open_underscore] = ACTIONS(2293), - [sym__emphasis_open_star] = ACTIONS(2293), - [sym__emphasis_open_underscore] = ACTIONS(2293), - [sym_inline_note_reference] = ACTIONS(2293), - [sym_html_element] = ACTIONS(2293), - [sym__pandoc_line_break] = ACTIONS(2293), - }, - [STATE(454)] = { - [anon_sym_COLON] = ACTIONS(2905), - [sym_entity_reference] = ACTIONS(2905), - [sym_numeric_character_reference] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_BANG_LBRACK] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2907), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2905), - [aux_sym_pandoc_str_token1] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [sym__whitespace] = ACTIONS(2905), - [sym__line_ending] = ACTIONS(2905), - [sym__soft_line_ending] = ACTIONS(2905), - [sym__block_close] = ACTIONS(2905), - [sym__block_quote_start] = ACTIONS(2905), - [sym_atx_h1_marker] = ACTIONS(2905), - [sym_atx_h2_marker] = ACTIONS(2905), - [sym_atx_h3_marker] = ACTIONS(2905), - [sym_atx_h4_marker] = ACTIONS(2905), - [sym_atx_h5_marker] = ACTIONS(2905), - [sym_atx_h6_marker] = ACTIONS(2905), - [sym__thematic_break] = ACTIONS(2905), - [sym__list_marker_minus] = ACTIONS(2905), - [sym__list_marker_plus] = ACTIONS(2905), - [sym__list_marker_star] = ACTIONS(2905), - [sym__list_marker_parenthesis] = ACTIONS(2905), - [sym__list_marker_dot] = ACTIONS(2905), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2905), - [sym__list_marker_example] = ACTIONS(2905), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2905), - [sym__fenced_code_block_start_backtick] = ACTIONS(2905), - [sym_minus_metadata] = ACTIONS(2905), - [sym__pipe_table_start] = ACTIONS(2905), - [sym__fenced_div_start] = ACTIONS(2905), - [sym_ref_id_specifier] = ACTIONS(2905), - [sym__code_span_start] = ACTIONS(2905), - [sym__html_comment] = ACTIONS(2905), - [sym__autolink] = ACTIONS(2905), - [sym__highlight_span_start] = ACTIONS(2905), - [sym__insert_span_start] = ACTIONS(2905), - [sym__delete_span_start] = ACTIONS(2905), - [sym__edit_comment_span_start] = ACTIONS(2905), - [sym__single_quote_span_open] = ACTIONS(2905), - [sym__double_quote_span_open] = ACTIONS(2905), - [sym__shortcode_open_escaped] = ACTIONS(2905), - [sym__shortcode_open] = ACTIONS(2905), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2905), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2905), - [sym__cite_author_in_text] = ACTIONS(2905), - [sym__cite_suppress_author] = ACTIONS(2905), - [sym__strikeout_open] = ACTIONS(2905), - [sym__subscript_open] = ACTIONS(2905), - [sym__superscript_open] = ACTIONS(2905), - [sym__inline_note_start_token] = ACTIONS(2905), - [sym__strong_emphasis_open_star] = ACTIONS(2905), - [sym__strong_emphasis_open_underscore] = ACTIONS(2905), - [sym__emphasis_open_star] = ACTIONS(2905), - [sym__emphasis_open_underscore] = ACTIONS(2905), - [sym_inline_note_reference] = ACTIONS(2905), - [sym_html_element] = ACTIONS(2905), - [sym__pandoc_line_break] = ACTIONS(2905), - }, - [STATE(455)] = { - [sym__inlines] = STATE(3748), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(716), - [sym__inline_whitespace] = STATE(716), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3163), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(456)] = { - [sym__inlines] = STATE(3757), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(514)] = { + [sym__inlines] = STATE(3672), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3167), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3169), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(457)] = { - [sym__inlines] = STATE(3759), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(515)] = { + [sym__inlines] = STATE(3783), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3171), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3173), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(458)] = { - [sym__inlines] = STATE(3761), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(516)] = { + [sym__inlines] = STATE(4018), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(725), - [sym__inline_whitespace] = STATE(725), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3175), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(459)] = { - [anon_sym_COLON] = ACTIONS(2909), - [sym_entity_reference] = ACTIONS(2909), - [sym_numeric_character_reference] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_BANG_LBRACK] = ACTIONS(2909), - [anon_sym_DOLLAR] = ACTIONS(2911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [aux_sym_pandoc_str_token1] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [sym__whitespace] = ACTIONS(2909), - [sym__line_ending] = ACTIONS(2909), - [sym__soft_line_ending] = ACTIONS(2909), - [sym__block_close] = ACTIONS(2909), - [sym__block_quote_start] = ACTIONS(2909), - [sym_atx_h1_marker] = ACTIONS(2909), - [sym_atx_h2_marker] = ACTIONS(2909), - [sym_atx_h3_marker] = ACTIONS(2909), - [sym_atx_h4_marker] = ACTIONS(2909), - [sym_atx_h5_marker] = ACTIONS(2909), - [sym_atx_h6_marker] = ACTIONS(2909), - [sym__thematic_break] = ACTIONS(2909), - [sym__list_marker_minus] = ACTIONS(2909), - [sym__list_marker_plus] = ACTIONS(2909), - [sym__list_marker_star] = ACTIONS(2909), - [sym__list_marker_parenthesis] = ACTIONS(2909), - [sym__list_marker_dot] = ACTIONS(2909), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2909), - [sym__list_marker_example] = ACTIONS(2909), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2909), - [sym__fenced_code_block_start_backtick] = ACTIONS(2909), - [sym_minus_metadata] = ACTIONS(2909), - [sym__pipe_table_start] = ACTIONS(2909), - [sym__fenced_div_start] = ACTIONS(2909), - [sym_ref_id_specifier] = ACTIONS(2909), - [sym__code_span_start] = ACTIONS(2909), - [sym__html_comment] = ACTIONS(2909), - [sym__autolink] = ACTIONS(2909), - [sym__highlight_span_start] = ACTIONS(2909), - [sym__insert_span_start] = ACTIONS(2909), - [sym__delete_span_start] = ACTIONS(2909), - [sym__edit_comment_span_start] = ACTIONS(2909), - [sym__single_quote_span_open] = ACTIONS(2909), - [sym__double_quote_span_open] = ACTIONS(2909), - [sym__shortcode_open_escaped] = ACTIONS(2909), - [sym__shortcode_open] = ACTIONS(2909), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2909), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2909), - [sym__cite_author_in_text] = ACTIONS(2909), - [sym__cite_suppress_author] = ACTIONS(2909), - [sym__strikeout_open] = ACTIONS(2909), - [sym__subscript_open] = ACTIONS(2909), - [sym__superscript_open] = ACTIONS(2909), - [sym__inline_note_start_token] = ACTIONS(2909), - [sym__strong_emphasis_open_star] = ACTIONS(2909), - [sym__strong_emphasis_open_underscore] = ACTIONS(2909), - [sym__emphasis_open_star] = ACTIONS(2909), - [sym__emphasis_open_underscore] = ACTIONS(2909), - [sym_inline_note_reference] = ACTIONS(2909), - [sym_html_element] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2909), - }, - [STATE(460)] = { - [anon_sym_COLON] = ACTIONS(2913), - [sym_entity_reference] = ACTIONS(2913), - [sym_numeric_character_reference] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_BANG_LBRACK] = ACTIONS(2913), - [anon_sym_DOLLAR] = ACTIONS(2915), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [aux_sym_pandoc_str_token1] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [sym__whitespace] = ACTIONS(2913), - [sym__line_ending] = ACTIONS(2913), - [sym__soft_line_ending] = ACTIONS(2913), - [sym__block_close] = ACTIONS(2913), - [sym__block_quote_start] = ACTIONS(2913), - [sym_atx_h1_marker] = ACTIONS(2913), - [sym_atx_h2_marker] = ACTIONS(2913), - [sym_atx_h3_marker] = ACTIONS(2913), - [sym_atx_h4_marker] = ACTIONS(2913), - [sym_atx_h5_marker] = ACTIONS(2913), - [sym_atx_h6_marker] = ACTIONS(2913), - [sym__thematic_break] = ACTIONS(2913), - [sym__list_marker_minus] = ACTIONS(2913), - [sym__list_marker_plus] = ACTIONS(2913), - [sym__list_marker_star] = ACTIONS(2913), - [sym__list_marker_parenthesis] = ACTIONS(2913), - [sym__list_marker_dot] = ACTIONS(2913), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2913), - [sym__list_marker_example] = ACTIONS(2913), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2913), - [sym__fenced_code_block_start_backtick] = ACTIONS(2913), - [sym_minus_metadata] = ACTIONS(2913), - [sym__pipe_table_start] = ACTIONS(2913), - [sym__fenced_div_start] = ACTIONS(2913), - [sym_ref_id_specifier] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(2913), - [sym__html_comment] = ACTIONS(2913), - [sym__autolink] = ACTIONS(2913), - [sym__highlight_span_start] = ACTIONS(2913), - [sym__insert_span_start] = ACTIONS(2913), - [sym__delete_span_start] = ACTIONS(2913), - [sym__edit_comment_span_start] = ACTIONS(2913), - [sym__single_quote_span_open] = ACTIONS(2913), - [sym__double_quote_span_open] = ACTIONS(2913), - [sym__shortcode_open_escaped] = ACTIONS(2913), - [sym__shortcode_open] = ACTIONS(2913), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2913), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2913), - [sym__cite_author_in_text] = ACTIONS(2913), - [sym__cite_suppress_author] = ACTIONS(2913), - [sym__strikeout_open] = ACTIONS(2913), - [sym__subscript_open] = ACTIONS(2913), - [sym__superscript_open] = ACTIONS(2913), - [sym__inline_note_start_token] = ACTIONS(2913), - [sym__strong_emphasis_open_star] = ACTIONS(2913), - [sym__strong_emphasis_open_underscore] = ACTIONS(2913), - [sym__emphasis_open_star] = ACTIONS(2913), - [sym__emphasis_open_underscore] = ACTIONS(2913), - [sym_inline_note_reference] = ACTIONS(2913), - [sym_html_element] = ACTIONS(2913), - [sym__pandoc_line_break] = ACTIONS(2913), - }, - [STATE(461)] = { - [anon_sym_COLON] = ACTIONS(2917), - [sym_entity_reference] = ACTIONS(2917), - [sym_numeric_character_reference] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_BANG_LBRACK] = ACTIONS(2917), - [anon_sym_DOLLAR] = ACTIONS(2919), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [aux_sym_pandoc_str_token1] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2917), - [sym__whitespace] = ACTIONS(2917), - [sym__line_ending] = ACTIONS(2917), - [sym__soft_line_ending] = ACTIONS(2917), - [sym__block_close] = ACTIONS(2917), - [sym__block_quote_start] = ACTIONS(2917), - [sym_atx_h1_marker] = ACTIONS(2917), - [sym_atx_h2_marker] = ACTIONS(2917), - [sym_atx_h3_marker] = ACTIONS(2917), - [sym_atx_h4_marker] = ACTIONS(2917), - [sym_atx_h5_marker] = ACTIONS(2917), - [sym_atx_h6_marker] = ACTIONS(2917), - [sym__thematic_break] = ACTIONS(2917), - [sym__list_marker_minus] = ACTIONS(2917), - [sym__list_marker_plus] = ACTIONS(2917), - [sym__list_marker_star] = ACTIONS(2917), - [sym__list_marker_parenthesis] = ACTIONS(2917), - [sym__list_marker_dot] = ACTIONS(2917), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2917), - [sym__list_marker_example] = ACTIONS(2917), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2917), - [sym__fenced_code_block_start_backtick] = ACTIONS(2917), - [sym_minus_metadata] = ACTIONS(2917), - [sym__pipe_table_start] = ACTIONS(2917), - [sym__fenced_div_start] = ACTIONS(2917), - [sym_ref_id_specifier] = ACTIONS(2917), - [sym__code_span_start] = ACTIONS(2917), - [sym__html_comment] = ACTIONS(2917), - [sym__autolink] = ACTIONS(2917), - [sym__highlight_span_start] = ACTIONS(2917), - [sym__insert_span_start] = ACTIONS(2917), - [sym__delete_span_start] = ACTIONS(2917), - [sym__edit_comment_span_start] = ACTIONS(2917), - [sym__single_quote_span_open] = ACTIONS(2917), - [sym__double_quote_span_open] = ACTIONS(2917), - [sym__shortcode_open_escaped] = ACTIONS(2917), - [sym__shortcode_open] = ACTIONS(2917), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2917), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2917), - [sym__cite_author_in_text] = ACTIONS(2917), - [sym__cite_suppress_author] = ACTIONS(2917), - [sym__strikeout_open] = ACTIONS(2917), - [sym__subscript_open] = ACTIONS(2917), - [sym__superscript_open] = ACTIONS(2917), - [sym__inline_note_start_token] = ACTIONS(2917), - [sym__strong_emphasis_open_star] = ACTIONS(2917), - [sym__strong_emphasis_open_underscore] = ACTIONS(2917), - [sym__emphasis_open_star] = ACTIONS(2917), - [sym__emphasis_open_underscore] = ACTIONS(2917), - [sym_inline_note_reference] = ACTIONS(2917), - [sym_html_element] = ACTIONS(2917), - [sym__pandoc_line_break] = ACTIONS(2917), - }, - [STATE(462)] = { - [anon_sym_COLON] = ACTIONS(2921), - [sym_entity_reference] = ACTIONS(2921), - [sym_numeric_character_reference] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_BANG_LBRACK] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [aux_sym_pandoc_str_token1] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2921), - [sym__whitespace] = ACTIONS(2921), - [sym__line_ending] = ACTIONS(2921), - [sym__soft_line_ending] = ACTIONS(2921), - [sym__block_close] = ACTIONS(2921), - [sym__block_quote_start] = ACTIONS(2921), - [sym_atx_h1_marker] = ACTIONS(2921), - [sym_atx_h2_marker] = ACTIONS(2921), - [sym_atx_h3_marker] = ACTIONS(2921), - [sym_atx_h4_marker] = ACTIONS(2921), - [sym_atx_h5_marker] = ACTIONS(2921), - [sym_atx_h6_marker] = ACTIONS(2921), - [sym__thematic_break] = ACTIONS(2921), - [sym__list_marker_minus] = ACTIONS(2921), - [sym__list_marker_plus] = ACTIONS(2921), - [sym__list_marker_star] = ACTIONS(2921), - [sym__list_marker_parenthesis] = ACTIONS(2921), - [sym__list_marker_dot] = ACTIONS(2921), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2921), - [sym__list_marker_example] = ACTIONS(2921), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2921), - [sym__fenced_code_block_start_backtick] = ACTIONS(2921), - [sym_minus_metadata] = ACTIONS(2921), - [sym__pipe_table_start] = ACTIONS(2921), - [sym__fenced_div_start] = ACTIONS(2921), - [sym_ref_id_specifier] = ACTIONS(2921), - [sym__code_span_start] = ACTIONS(2921), - [sym__html_comment] = ACTIONS(2921), - [sym__autolink] = ACTIONS(2921), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2921), - [sym__delete_span_start] = ACTIONS(2921), - [sym__edit_comment_span_start] = ACTIONS(2921), - [sym__single_quote_span_open] = ACTIONS(2921), - [sym__double_quote_span_open] = ACTIONS(2921), - [sym__shortcode_open_escaped] = ACTIONS(2921), - [sym__shortcode_open] = ACTIONS(2921), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2921), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2921), - [sym__cite_author_in_text] = ACTIONS(2921), - [sym__cite_suppress_author] = ACTIONS(2921), - [sym__strikeout_open] = ACTIONS(2921), - [sym__subscript_open] = ACTIONS(2921), - [sym__superscript_open] = ACTIONS(2921), - [sym__inline_note_start_token] = ACTIONS(2921), - [sym__strong_emphasis_open_star] = ACTIONS(2921), - [sym__strong_emphasis_open_underscore] = ACTIONS(2921), - [sym__emphasis_open_star] = ACTIONS(2921), - [sym__emphasis_open_underscore] = ACTIONS(2921), - [sym_inline_note_reference] = ACTIONS(2921), - [sym_html_element] = ACTIONS(2921), - [sym__pandoc_line_break] = ACTIONS(2921), - }, - [STATE(463)] = { - [anon_sym_COLON] = ACTIONS(2925), - [sym_entity_reference] = ACTIONS(2925), - [sym_numeric_character_reference] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_BANG_LBRACK] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2927), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [aux_sym_pandoc_str_token1] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2925), - [sym__whitespace] = ACTIONS(2925), - [sym__line_ending] = ACTIONS(2925), - [sym__soft_line_ending] = ACTIONS(2925), - [sym__block_close] = ACTIONS(2925), - [sym__block_quote_start] = ACTIONS(2925), - [sym_atx_h1_marker] = ACTIONS(2925), - [sym_atx_h2_marker] = ACTIONS(2925), - [sym_atx_h3_marker] = ACTIONS(2925), - [sym_atx_h4_marker] = ACTIONS(2925), - [sym_atx_h5_marker] = ACTIONS(2925), - [sym_atx_h6_marker] = ACTIONS(2925), - [sym__thematic_break] = ACTIONS(2925), - [sym__list_marker_minus] = ACTIONS(2925), - [sym__list_marker_plus] = ACTIONS(2925), - [sym__list_marker_star] = ACTIONS(2925), - [sym__list_marker_parenthesis] = ACTIONS(2925), - [sym__list_marker_dot] = ACTIONS(2925), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2925), - [sym__list_marker_example] = ACTIONS(2925), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2925), - [sym__fenced_code_block_start_backtick] = ACTIONS(2925), - [sym_minus_metadata] = ACTIONS(2925), - [sym__pipe_table_start] = ACTIONS(2925), - [sym__fenced_div_start] = ACTIONS(2925), - [sym_ref_id_specifier] = ACTIONS(2925), - [sym__code_span_start] = ACTIONS(2925), - [sym__html_comment] = ACTIONS(2925), - [sym__autolink] = ACTIONS(2925), - [sym__highlight_span_start] = ACTIONS(2925), - [sym__insert_span_start] = ACTIONS(2925), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2925), - [sym__single_quote_span_open] = ACTIONS(2925), - [sym__double_quote_span_open] = ACTIONS(2925), - [sym__shortcode_open_escaped] = ACTIONS(2925), - [sym__shortcode_open] = ACTIONS(2925), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2925), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2925), - [sym__cite_author_in_text] = ACTIONS(2925), - [sym__cite_suppress_author] = ACTIONS(2925), - [sym__strikeout_open] = ACTIONS(2925), - [sym__subscript_open] = ACTIONS(2925), - [sym__superscript_open] = ACTIONS(2925), - [sym__inline_note_start_token] = ACTIONS(2925), - [sym__strong_emphasis_open_star] = ACTIONS(2925), - [sym__strong_emphasis_open_underscore] = ACTIONS(2925), - [sym__emphasis_open_star] = ACTIONS(2925), - [sym__emphasis_open_underscore] = ACTIONS(2925), - [sym_inline_note_reference] = ACTIONS(2925), - [sym_html_element] = ACTIONS(2925), - [sym__pandoc_line_break] = ACTIONS(2925), - }, - [STATE(464)] = { - [anon_sym_COLON] = ACTIONS(2929), - [sym_entity_reference] = ACTIONS(2929), - [sym_numeric_character_reference] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_BANG_LBRACK] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2931), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2929), - [aux_sym_pandoc_str_token1] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2929), - [sym__whitespace] = ACTIONS(2929), - [sym__line_ending] = ACTIONS(2929), - [sym__soft_line_ending] = ACTIONS(2929), - [sym__block_close] = ACTIONS(2929), - [sym__block_quote_start] = ACTIONS(2929), - [sym_atx_h1_marker] = ACTIONS(2929), - [sym_atx_h2_marker] = ACTIONS(2929), - [sym_atx_h3_marker] = ACTIONS(2929), - [sym_atx_h4_marker] = ACTIONS(2929), - [sym_atx_h5_marker] = ACTIONS(2929), - [sym_atx_h6_marker] = ACTIONS(2929), - [sym__thematic_break] = ACTIONS(2929), - [sym__list_marker_minus] = ACTIONS(2929), - [sym__list_marker_plus] = ACTIONS(2929), - [sym__list_marker_star] = ACTIONS(2929), - [sym__list_marker_parenthesis] = ACTIONS(2929), - [sym__list_marker_dot] = ACTIONS(2929), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2929), - [sym__list_marker_example] = ACTIONS(2929), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2929), - [sym__fenced_code_block_start_backtick] = ACTIONS(2929), - [sym_minus_metadata] = ACTIONS(2929), - [sym__pipe_table_start] = ACTIONS(2929), - [sym__fenced_div_start] = ACTIONS(2929), - [sym_ref_id_specifier] = ACTIONS(2929), - [sym__code_span_start] = ACTIONS(2929), - [sym__html_comment] = ACTIONS(2929), - [sym__autolink] = ACTIONS(2929), - [sym__highlight_span_start] = ACTIONS(2929), - [sym__insert_span_start] = ACTIONS(2929), - [sym__delete_span_start] = ACTIONS(2929), - [sym__edit_comment_span_start] = ACTIONS(2929), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2929), - [sym__shortcode_open_escaped] = ACTIONS(2929), - [sym__shortcode_open] = ACTIONS(2929), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2929), - [sym__cite_author_in_text] = ACTIONS(2929), - [sym__cite_suppress_author] = ACTIONS(2929), - [sym__strikeout_open] = ACTIONS(2929), - [sym__subscript_open] = ACTIONS(2929), - [sym__superscript_open] = ACTIONS(2929), - [sym__inline_note_start_token] = ACTIONS(2929), - [sym__strong_emphasis_open_star] = ACTIONS(2929), - [sym__strong_emphasis_open_underscore] = ACTIONS(2929), - [sym__emphasis_open_star] = ACTIONS(2929), - [sym__emphasis_open_underscore] = ACTIONS(2929), - [sym_inline_note_reference] = ACTIONS(2929), - [sym_html_element] = ACTIONS(2929), - [sym__pandoc_line_break] = ACTIONS(2929), - }, - [STATE(465)] = { - [ts_builtin_sym_end] = ACTIONS(2597), - [anon_sym_COLON] = ACTIONS(2597), - [sym_entity_reference] = ACTIONS(2597), - [sym_numeric_character_reference] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_BANG_LBRACK] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2599), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [aux_sym_pandoc_str_token1] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2597), - [sym__whitespace] = ACTIONS(2597), - [sym__line_ending] = ACTIONS(2597), - [sym__soft_line_ending] = ACTIONS(2597), - [sym__block_quote_start] = ACTIONS(2597), - [sym_atx_h1_marker] = ACTIONS(2597), - [sym_atx_h2_marker] = ACTIONS(2597), - [sym_atx_h3_marker] = ACTIONS(2597), - [sym_atx_h4_marker] = ACTIONS(2597), - [sym_atx_h5_marker] = ACTIONS(2597), - [sym_atx_h6_marker] = ACTIONS(2597), - [sym__thematic_break] = ACTIONS(2597), - [sym__list_marker_minus] = ACTIONS(2597), - [sym__list_marker_plus] = ACTIONS(2597), - [sym__list_marker_star] = ACTIONS(2597), - [sym__list_marker_parenthesis] = ACTIONS(2597), - [sym__list_marker_dot] = ACTIONS(2597), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2597), - [sym__list_marker_example] = ACTIONS(2597), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2597), - [sym__fenced_code_block_start_backtick] = ACTIONS(2597), - [sym_minus_metadata] = ACTIONS(2597), - [sym__pipe_table_start] = ACTIONS(2597), - [sym__fenced_div_start] = ACTIONS(2597), - [sym_ref_id_specifier] = ACTIONS(2597), - [sym__code_span_start] = ACTIONS(2597), - [sym__html_comment] = ACTIONS(2597), - [sym__autolink] = ACTIONS(2597), - [sym__highlight_span_start] = ACTIONS(2597), - [sym__insert_span_start] = ACTIONS(2597), - [sym__delete_span_start] = ACTIONS(2597), - [sym__edit_comment_span_start] = ACTIONS(2597), - [sym__single_quote_span_open] = ACTIONS(2597), - [sym__double_quote_span_open] = ACTIONS(2597), - [sym__shortcode_open_escaped] = ACTIONS(2597), - [sym__shortcode_open] = ACTIONS(2597), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2597), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2597), - [sym__cite_suppress_author] = ACTIONS(2597), - [sym__strikeout_open] = ACTIONS(2597), - [sym__subscript_open] = ACTIONS(2597), - [sym__superscript_open] = ACTIONS(2597), - [sym__inline_note_start_token] = ACTIONS(2597), - [sym__strong_emphasis_open_star] = ACTIONS(2597), - [sym__strong_emphasis_open_underscore] = ACTIONS(2597), - [sym__emphasis_open_star] = ACTIONS(2597), - [sym__emphasis_open_underscore] = ACTIONS(2597), - [sym_inline_note_reference] = ACTIONS(2597), - [sym_html_element] = ACTIONS(2597), - [sym__pandoc_line_break] = ACTIONS(2597), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3177), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(466)] = { - [sym_pandoc_paragraph] = STATE(468), - [sym__inlines] = STATE(3287), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__soft_line_break] = STATE(799), - [sym__inline_whitespace] = STATE(799), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(467)] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [anon_sym_COLON] = ACTIONS(2933), - [sym_entity_reference] = ACTIONS(2933), - [sym_numeric_character_reference] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_BANG_LBRACK] = ACTIONS(2933), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2933), - [aux_sym_pandoc_str_token1] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2933), - [sym__whitespace] = ACTIONS(2933), - [sym__line_ending] = ACTIONS(2933), - [sym__soft_line_ending] = ACTIONS(2933), - [sym__block_quote_start] = ACTIONS(2933), - [sym_atx_h1_marker] = ACTIONS(2933), - [sym_atx_h2_marker] = ACTIONS(2933), - [sym_atx_h3_marker] = ACTIONS(2933), - [sym_atx_h4_marker] = ACTIONS(2933), - [sym_atx_h5_marker] = ACTIONS(2933), - [sym_atx_h6_marker] = ACTIONS(2933), - [sym__thematic_break] = ACTIONS(2933), - [sym__list_marker_minus] = ACTIONS(2933), - [sym__list_marker_plus] = ACTIONS(2933), - [sym__list_marker_star] = ACTIONS(2933), - [sym__list_marker_parenthesis] = ACTIONS(2933), - [sym__list_marker_dot] = ACTIONS(2933), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_example] = ACTIONS(2933), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2933), - [sym__fenced_code_block_start_backtick] = ACTIONS(2933), - [sym_minus_metadata] = ACTIONS(2933), - [sym__pipe_table_start] = ACTIONS(2933), - [sym__fenced_div_start] = ACTIONS(2933), - [sym_ref_id_specifier] = ACTIONS(2933), - [sym__code_span_start] = ACTIONS(2933), - [sym__html_comment] = ACTIONS(2933), - [sym__autolink] = ACTIONS(2933), - [sym__highlight_span_start] = ACTIONS(2933), - [sym__insert_span_start] = ACTIONS(2933), - [sym__delete_span_start] = ACTIONS(2933), - [sym__edit_comment_span_start] = ACTIONS(2933), - [sym__single_quote_span_open] = ACTIONS(2933), - [sym__double_quote_span_open] = ACTIONS(2933), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2933), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2933), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2933), - [sym__cite_author_in_text] = ACTIONS(2933), - [sym__cite_suppress_author] = ACTIONS(2933), - [sym__strikeout_open] = ACTIONS(2933), - [sym__subscript_open] = ACTIONS(2933), - [sym__superscript_open] = ACTIONS(2933), - [sym__inline_note_start_token] = ACTIONS(2933), - [sym__strong_emphasis_open_star] = ACTIONS(2933), - [sym__strong_emphasis_open_underscore] = ACTIONS(2933), - [sym__emphasis_open_star] = ACTIONS(2933), - [sym__emphasis_open_underscore] = ACTIONS(2933), - [sym_inline_note_reference] = ACTIONS(2933), - [sym_html_element] = ACTIONS(2933), - [sym__pandoc_line_break] = ACTIONS(2933), - }, - [STATE(468)] = { - [anon_sym_COLON] = ACTIONS(2933), - [sym_entity_reference] = ACTIONS(2933), - [sym_numeric_character_reference] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_BANG_LBRACK] = ACTIONS(2933), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2933), - [aux_sym_pandoc_str_token1] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2933), - [sym__whitespace] = ACTIONS(2933), - [sym__line_ending] = ACTIONS(2933), - [sym__soft_line_ending] = ACTIONS(2933), - [sym__block_close] = ACTIONS(2933), - [sym__block_quote_start] = ACTIONS(2933), - [sym_atx_h1_marker] = ACTIONS(2933), - [sym_atx_h2_marker] = ACTIONS(2933), - [sym_atx_h3_marker] = ACTIONS(2933), - [sym_atx_h4_marker] = ACTIONS(2933), - [sym_atx_h5_marker] = ACTIONS(2933), - [sym_atx_h6_marker] = ACTIONS(2933), - [sym__thematic_break] = ACTIONS(2933), - [sym__list_marker_minus] = ACTIONS(2933), - [sym__list_marker_plus] = ACTIONS(2933), - [sym__list_marker_star] = ACTIONS(2933), - [sym__list_marker_parenthesis] = ACTIONS(2933), - [sym__list_marker_dot] = ACTIONS(2933), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2933), - [sym__list_marker_example] = ACTIONS(2933), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2933), - [sym__fenced_code_block_start_backtick] = ACTIONS(2933), - [sym_minus_metadata] = ACTIONS(2933), - [sym__pipe_table_start] = ACTIONS(2933), - [sym__fenced_div_start] = ACTIONS(2933), - [sym_ref_id_specifier] = ACTIONS(2933), - [sym__code_span_start] = ACTIONS(2933), - [sym__html_comment] = ACTIONS(2933), - [sym__autolink] = ACTIONS(2933), - [sym__highlight_span_start] = ACTIONS(2933), - [sym__insert_span_start] = ACTIONS(2933), - [sym__delete_span_start] = ACTIONS(2933), - [sym__edit_comment_span_start] = ACTIONS(2933), - [sym__single_quote_span_open] = ACTIONS(2933), - [sym__double_quote_span_open] = ACTIONS(2933), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2933), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2933), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2933), - [sym__cite_author_in_text] = ACTIONS(2933), - [sym__cite_suppress_author] = ACTIONS(2933), - [sym__strikeout_open] = ACTIONS(2933), - [sym__subscript_open] = ACTIONS(2933), - [sym__superscript_open] = ACTIONS(2933), - [sym__inline_note_start_token] = ACTIONS(2933), - [sym__strong_emphasis_open_star] = ACTIONS(2933), - [sym__strong_emphasis_open_underscore] = ACTIONS(2933), - [sym__emphasis_open_star] = ACTIONS(2933), - [sym__emphasis_open_underscore] = ACTIONS(2933), - [sym_inline_note_reference] = ACTIONS(2933), - [sym_html_element] = ACTIONS(2933), - [sym__pandoc_line_break] = ACTIONS(2933), - }, - [STATE(469)] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [anon_sym_COLON] = ACTIONS(2699), - [sym_entity_reference] = ACTIONS(2699), - [sym_numeric_character_reference] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_BANG_LBRACK] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2699), - [aux_sym_pandoc_str_token1] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2699), - [sym__whitespace] = ACTIONS(2699), - [sym__line_ending] = ACTIONS(2699), - [sym__soft_line_ending] = ACTIONS(2699), - [sym__block_quote_start] = ACTIONS(2699), - [sym_atx_h1_marker] = ACTIONS(2699), - [sym_atx_h2_marker] = ACTIONS(2699), - [sym_atx_h3_marker] = ACTIONS(2699), - [sym_atx_h4_marker] = ACTIONS(2699), - [sym_atx_h5_marker] = ACTIONS(2699), - [sym_atx_h6_marker] = ACTIONS(2699), - [sym__thematic_break] = ACTIONS(2699), - [sym__list_marker_minus] = ACTIONS(2699), - [sym__list_marker_plus] = ACTIONS(2699), - [sym__list_marker_star] = ACTIONS(2699), - [sym__list_marker_parenthesis] = ACTIONS(2699), - [sym__list_marker_dot] = ACTIONS(2699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_example] = ACTIONS(2699), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2699), - [sym__fenced_code_block_start_backtick] = ACTIONS(2699), - [sym_minus_metadata] = ACTIONS(2699), - [sym__pipe_table_start] = ACTIONS(2699), - [sym__fenced_div_start] = ACTIONS(2699), - [sym_ref_id_specifier] = ACTIONS(2699), - [sym__code_span_start] = ACTIONS(2699), - [sym__html_comment] = ACTIONS(2699), - [sym__autolink] = ACTIONS(2699), - [sym__highlight_span_start] = ACTIONS(2699), - [sym__insert_span_start] = ACTIONS(2699), - [sym__delete_span_start] = ACTIONS(2699), - [sym__edit_comment_span_start] = ACTIONS(2699), - [sym__single_quote_span_open] = ACTIONS(2699), - [sym__double_quote_span_open] = ACTIONS(2699), - [sym__shortcode_open_escaped] = ACTIONS(2699), - [sym__shortcode_open] = ACTIONS(2699), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2699), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2699), - [sym__cite_author_in_text] = ACTIONS(2699), - [sym__cite_suppress_author] = ACTIONS(2699), - [sym__strikeout_open] = ACTIONS(2699), - [sym__subscript_open] = ACTIONS(2699), - [sym__superscript_open] = ACTIONS(2699), - [sym__inline_note_start_token] = ACTIONS(2699), - [sym__strong_emphasis_open_star] = ACTIONS(2699), - [sym__strong_emphasis_open_underscore] = ACTIONS(2699), - [sym__emphasis_open_star] = ACTIONS(2699), - [sym__emphasis_open_underscore] = ACTIONS(2699), - [sym_inline_note_reference] = ACTIONS(2699), - [sym_html_element] = ACTIONS(2699), - [sym__pandoc_line_break] = ACTIONS(2699), - }, - [STATE(470)] = { - [ts_builtin_sym_end] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(2707), - [sym_entity_reference] = ACTIONS(2707), - [sym_numeric_character_reference] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_BANG_LBRACK] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(2709), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [aux_sym_pandoc_str_token1] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2707), - [sym__whitespace] = ACTIONS(2707), - [sym__line_ending] = ACTIONS(2707), - [sym__soft_line_ending] = ACTIONS(2707), - [sym__block_quote_start] = ACTIONS(2707), - [sym_atx_h1_marker] = ACTIONS(2707), - [sym_atx_h2_marker] = ACTIONS(2707), - [sym_atx_h3_marker] = ACTIONS(2707), - [sym_atx_h4_marker] = ACTIONS(2707), - [sym_atx_h5_marker] = ACTIONS(2707), - [sym_atx_h6_marker] = ACTIONS(2707), - [sym__thematic_break] = ACTIONS(2707), - [sym__list_marker_minus] = ACTIONS(2707), - [sym__list_marker_plus] = ACTIONS(2707), - [sym__list_marker_star] = ACTIONS(2707), - [sym__list_marker_parenthesis] = ACTIONS(2707), - [sym__list_marker_dot] = ACTIONS(2707), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2707), - [sym__list_marker_example] = ACTIONS(2707), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2707), - [sym__fenced_code_block_start_backtick] = ACTIONS(2707), - [sym_minus_metadata] = ACTIONS(2707), - [sym__pipe_table_start] = ACTIONS(2707), - [sym__fenced_div_start] = ACTIONS(2707), - [sym_ref_id_specifier] = ACTIONS(2707), - [sym__code_span_start] = ACTIONS(2707), - [sym__html_comment] = ACTIONS(2707), - [sym__autolink] = ACTIONS(2707), - [sym__highlight_span_start] = ACTIONS(2707), - [sym__insert_span_start] = ACTIONS(2707), - [sym__delete_span_start] = ACTIONS(2707), - [sym__edit_comment_span_start] = ACTIONS(2707), - [sym__single_quote_span_open] = ACTIONS(2707), - [sym__double_quote_span_open] = ACTIONS(2707), - [sym__shortcode_open_escaped] = ACTIONS(2707), - [sym__shortcode_open] = ACTIONS(2707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2707), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2707), - [sym__cite_author_in_text] = ACTIONS(2707), - [sym__cite_suppress_author] = ACTIONS(2707), - [sym__strikeout_open] = ACTIONS(2707), - [sym__subscript_open] = ACTIONS(2707), - [sym__superscript_open] = ACTIONS(2707), - [sym__inline_note_start_token] = ACTIONS(2707), - [sym__strong_emphasis_open_star] = ACTIONS(2707), - [sym__strong_emphasis_open_underscore] = ACTIONS(2707), - [sym__emphasis_open_star] = ACTIONS(2707), - [sym__emphasis_open_underscore] = ACTIONS(2707), - [sym_inline_note_reference] = ACTIONS(2707), - [sym_html_element] = ACTIONS(2707), - [sym__pandoc_line_break] = ACTIONS(2707), - }, - [STATE(471)] = { - [ts_builtin_sym_end] = ACTIONS(2717), - [anon_sym_COLON] = 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] = 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_line_break] = ACTIONS(2717), - }, - [STATE(472)] = { - [sym__atx_heading_content] = STATE(3125), - [sym__inlines] = STATE(3125), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(517)] = { + [sym_pandoc_paragraph] = STATE(203), + [sym__inlines] = STATE(3206), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__newline] = STATE(469), + [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), + [sym__soft_line_break] = STATE(803), + [sym__inline_whitespace] = STATE(803), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -62964,9 +66432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(3177), + [sym__whitespace] = ACTIONS(229), + [sym__soft_line_ending] = ACTIONS(3011), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -62994,1241 +66461,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(473)] = { - [anon_sym_COLON] = ACTIONS(2299), - [sym_entity_reference] = ACTIONS(2299), - [sym_numeric_character_reference] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_BANG_LBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [aux_sym_pandoc_str_token1] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2299), - [sym__whitespace] = ACTIONS(2299), - [sym__line_ending] = ACTIONS(2299), - [sym__soft_line_ending] = ACTIONS(2299), - [sym__block_close] = ACTIONS(2299), - [sym__block_quote_start] = ACTIONS(2299), - [sym_atx_h1_marker] = ACTIONS(2299), - [sym_atx_h2_marker] = ACTIONS(2299), - [sym_atx_h3_marker] = ACTIONS(2299), - [sym_atx_h4_marker] = ACTIONS(2299), - [sym_atx_h5_marker] = ACTIONS(2299), - [sym_atx_h6_marker] = ACTIONS(2299), - [sym__thematic_break] = ACTIONS(2299), - [sym__list_marker_minus] = ACTIONS(2299), - [sym__list_marker_plus] = ACTIONS(2299), - [sym__list_marker_star] = ACTIONS(2299), - [sym__list_marker_parenthesis] = ACTIONS(2299), - [sym__list_marker_dot] = ACTIONS(2299), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_example] = ACTIONS(2299), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), - [sym__fenced_code_block_start_backtick] = ACTIONS(2299), - [sym_minus_metadata] = ACTIONS(2299), - [sym__pipe_table_start] = ACTIONS(2299), - [sym__fenced_div_start] = ACTIONS(2299), - [sym_ref_id_specifier] = ACTIONS(2299), - [sym__code_span_start] = ACTIONS(2299), - [sym__html_comment] = ACTIONS(2299), - [sym__autolink] = ACTIONS(2299), - [sym__highlight_span_start] = ACTIONS(2299), - [sym__insert_span_start] = ACTIONS(2299), - [sym__delete_span_start] = ACTIONS(2299), - [sym__edit_comment_span_start] = ACTIONS(2299), - [sym__single_quote_span_open] = ACTIONS(2299), - [sym__double_quote_span_open] = ACTIONS(2299), - [sym__shortcode_open_escaped] = ACTIONS(2299), - [sym__shortcode_open] = ACTIONS(2299), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), - [sym__cite_author_in_text] = ACTIONS(2299), - [sym__cite_suppress_author] = ACTIONS(2299), - [sym__strikeout_open] = ACTIONS(2299), - [sym__subscript_open] = ACTIONS(2299), - [sym__superscript_open] = ACTIONS(2299), - [sym__inline_note_start_token] = ACTIONS(2299), - [sym__strong_emphasis_open_star] = ACTIONS(2299), - [sym__strong_emphasis_open_underscore] = ACTIONS(2299), - [sym__emphasis_open_star] = ACTIONS(2299), - [sym__emphasis_open_underscore] = ACTIONS(2299), - [sym_inline_note_reference] = ACTIONS(2299), - [sym_html_element] = ACTIONS(2299), - [sym__pandoc_line_break] = ACTIONS(2299), - }, - [STATE(474)] = { - [sym__inlines] = STATE(3525), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(518)] = { + [sym__inlines] = STATE(3777), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(784), - [sym__inline_whitespace] = STATE(784), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3181), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(475)] = { - [sym__inlines] = STATE(3628), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(519)] = { + [sym__inlines] = STATE(3997), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(785), - [sym__inline_whitespace] = STATE(785), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3185), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(476)] = { - [sym__inlines] = STATE(3672), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(520)] = { + [sym__inlines] = STATE(4045), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(710), - [sym__inline_whitespace] = STATE(710), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(781), + [sym__inline_whitespace] = STATE(781), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3189), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(477)] = { - [sym__inlines] = STATE(3783), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(521)] = { + [sym__inlines] = STATE(4063), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(783), - [sym__inline_whitespace] = STATE(783), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3193), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(478)] = { - [anon_sym_COLON] = ACTIONS(2305), - [sym_entity_reference] = ACTIONS(2305), - [sym_numeric_character_reference] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_BANG_LBRACK] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [aux_sym_pandoc_str_token1] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2305), - [sym__whitespace] = ACTIONS(2305), - [sym__line_ending] = ACTIONS(2305), - [sym__soft_line_ending] = ACTIONS(2305), - [sym__block_close] = ACTIONS(2305), - [sym__block_quote_start] = ACTIONS(2305), - [sym_atx_h1_marker] = ACTIONS(2305), - [sym_atx_h2_marker] = ACTIONS(2305), - [sym_atx_h3_marker] = ACTIONS(2305), - [sym_atx_h4_marker] = ACTIONS(2305), - [sym_atx_h5_marker] = ACTIONS(2305), - [sym_atx_h6_marker] = ACTIONS(2305), - [sym__thematic_break] = ACTIONS(2305), - [sym__list_marker_minus] = ACTIONS(2305), - [sym__list_marker_plus] = ACTIONS(2305), - [sym__list_marker_star] = ACTIONS(2305), - [sym__list_marker_parenthesis] = ACTIONS(2305), - [sym__list_marker_dot] = ACTIONS(2305), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_example] = ACTIONS(2305), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), - [sym__fenced_code_block_start_backtick] = ACTIONS(2305), - [sym_minus_metadata] = ACTIONS(2305), - [sym__pipe_table_start] = ACTIONS(2305), - [sym__fenced_div_start] = ACTIONS(2305), - [sym_ref_id_specifier] = ACTIONS(2305), - [sym__code_span_start] = ACTIONS(2305), - [sym__html_comment] = ACTIONS(2305), - [sym__autolink] = ACTIONS(2305), - [sym__highlight_span_start] = ACTIONS(2305), - [sym__insert_span_start] = ACTIONS(2305), - [sym__delete_span_start] = ACTIONS(2305), - [sym__edit_comment_span_start] = ACTIONS(2305), - [sym__single_quote_span_open] = ACTIONS(2305), - [sym__double_quote_span_open] = ACTIONS(2305), - [sym__shortcode_open_escaped] = ACTIONS(2305), - [sym__shortcode_open] = ACTIONS(2305), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), - [sym__cite_author_in_text] = ACTIONS(2305), - [sym__cite_suppress_author] = ACTIONS(2305), - [sym__strikeout_open] = ACTIONS(2305), - [sym__subscript_open] = ACTIONS(2305), - [sym__superscript_open] = ACTIONS(2305), - [sym__inline_note_start_token] = ACTIONS(2305), - [sym__strong_emphasis_open_star] = ACTIONS(2305), - [sym__strong_emphasis_open_underscore] = ACTIONS(2305), - [sym__emphasis_open_star] = ACTIONS(2305), - [sym__emphasis_open_underscore] = ACTIONS(2305), - [sym_inline_note_reference] = ACTIONS(2305), - [sym_html_element] = ACTIONS(2305), - [sym__pandoc_line_break] = ACTIONS(2305), - }, - [STATE(479)] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [anon_sym_COLON] = ACTIONS(2299), - [sym_entity_reference] = ACTIONS(2299), - [sym_numeric_character_reference] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_BANG_LBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [aux_sym_pandoc_str_token1] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2299), - [sym__whitespace] = ACTIONS(2299), - [sym__line_ending] = ACTIONS(2299), - [sym__soft_line_ending] = ACTIONS(2299), - [sym__block_quote_start] = ACTIONS(2299), - [sym_atx_h1_marker] = ACTIONS(2299), - [sym_atx_h2_marker] = ACTIONS(2299), - [sym_atx_h3_marker] = ACTIONS(2299), - [sym_atx_h4_marker] = ACTIONS(2299), - [sym_atx_h5_marker] = ACTIONS(2299), - [sym_atx_h6_marker] = ACTIONS(2299), - [sym__thematic_break] = ACTIONS(2299), - [sym__list_marker_minus] = ACTIONS(2299), - [sym__list_marker_plus] = ACTIONS(2299), - [sym__list_marker_star] = ACTIONS(2299), - [sym__list_marker_parenthesis] = ACTIONS(2299), - [sym__list_marker_dot] = ACTIONS(2299), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2299), - [sym__list_marker_example] = ACTIONS(2299), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2299), - [sym__fenced_code_block_start_backtick] = ACTIONS(2299), - [sym_minus_metadata] = ACTIONS(2299), - [sym__pipe_table_start] = ACTIONS(2299), - [sym__fenced_div_start] = ACTIONS(2299), - [sym_ref_id_specifier] = ACTIONS(2299), - [sym__code_span_start] = ACTIONS(2299), - [sym__html_comment] = ACTIONS(2299), - [sym__autolink] = ACTIONS(2299), - [sym__highlight_span_start] = ACTIONS(2299), - [sym__insert_span_start] = ACTIONS(2299), - [sym__delete_span_start] = ACTIONS(2299), - [sym__edit_comment_span_start] = ACTIONS(2299), - [sym__single_quote_span_open] = ACTIONS(2299), - [sym__double_quote_span_open] = ACTIONS(2299), - [sym__shortcode_open_escaped] = ACTIONS(2299), - [sym__shortcode_open] = ACTIONS(2299), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2299), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2299), - [sym__cite_author_in_text] = ACTIONS(2299), - [sym__cite_suppress_author] = ACTIONS(2299), - [sym__strikeout_open] = ACTIONS(2299), - [sym__subscript_open] = ACTIONS(2299), - [sym__superscript_open] = ACTIONS(2299), - [sym__inline_note_start_token] = ACTIONS(2299), - [sym__strong_emphasis_open_star] = ACTIONS(2299), - [sym__strong_emphasis_open_underscore] = ACTIONS(2299), - [sym__emphasis_open_star] = ACTIONS(2299), - [sym__emphasis_open_underscore] = ACTIONS(2299), - [sym_inline_note_reference] = ACTIONS(2299), - [sym_html_element] = ACTIONS(2299), - [sym__pandoc_line_break] = ACTIONS(2299), - }, - [STATE(480)] = { - [anon_sym_COLON] = ACTIONS(2311), - [sym_entity_reference] = ACTIONS(2311), - [sym_numeric_character_reference] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_BANG_LBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [aux_sym_pandoc_str_token1] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2311), - [sym__whitespace] = ACTIONS(2311), - [sym__line_ending] = ACTIONS(2311), - [sym__soft_line_ending] = ACTIONS(2311), - [sym__block_close] = ACTIONS(2311), - [sym__block_quote_start] = ACTIONS(2311), - [sym_atx_h1_marker] = ACTIONS(2311), - [sym_atx_h2_marker] = ACTIONS(2311), - [sym_atx_h3_marker] = ACTIONS(2311), - [sym_atx_h4_marker] = ACTIONS(2311), - [sym_atx_h5_marker] = ACTIONS(2311), - [sym_atx_h6_marker] = ACTIONS(2311), - [sym__thematic_break] = ACTIONS(2311), - [sym__list_marker_minus] = ACTIONS(2311), - [sym__list_marker_plus] = ACTIONS(2311), - [sym__list_marker_star] = ACTIONS(2311), - [sym__list_marker_parenthesis] = ACTIONS(2311), - [sym__list_marker_dot] = ACTIONS(2311), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2311), - [sym_minus_metadata] = ACTIONS(2311), - [sym__pipe_table_start] = ACTIONS(2311), - [sym__fenced_div_start] = ACTIONS(2311), - [sym_ref_id_specifier] = ACTIONS(2311), - [sym__code_span_start] = ACTIONS(2311), - [sym__html_comment] = ACTIONS(2311), - [sym__autolink] = ACTIONS(2311), - [sym__highlight_span_start] = ACTIONS(2311), - [sym__insert_span_start] = ACTIONS(2311), - [sym__delete_span_start] = ACTIONS(2311), - [sym__edit_comment_span_start] = ACTIONS(2311), - [sym__single_quote_span_open] = ACTIONS(2311), - [sym__double_quote_span_open] = ACTIONS(2311), - [sym__shortcode_open_escaped] = ACTIONS(2311), - [sym__shortcode_open] = ACTIONS(2311), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), - [sym__cite_author_in_text] = ACTIONS(2311), - [sym__cite_suppress_author] = ACTIONS(2311), - [sym__strikeout_open] = ACTIONS(2311), - [sym__subscript_open] = ACTIONS(2311), - [sym__superscript_open] = ACTIONS(2311), - [sym__inline_note_start_token] = ACTIONS(2311), - [sym__strong_emphasis_open_star] = ACTIONS(2311), - [sym__strong_emphasis_open_underscore] = ACTIONS(2311), - [sym__emphasis_open_star] = ACTIONS(2311), - [sym__emphasis_open_underscore] = ACTIONS(2311), - [sym_inline_note_reference] = ACTIONS(2311), - [sym_html_element] = ACTIONS(2311), - [sym__pandoc_line_break] = ACTIONS(2311), - }, - [STATE(481)] = { - [anon_sym_COLON] = ACTIONS(2317), - [sym_entity_reference] = ACTIONS(2317), - [sym_numeric_character_reference] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_BANG_LBRACK] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [aux_sym_pandoc_str_token1] = ACTIONS(2319), - [anon_sym_PIPE] = ACTIONS(2317), - [sym__whitespace] = ACTIONS(2317), - [sym__line_ending] = ACTIONS(2317), - [sym__soft_line_ending] = ACTIONS(2317), - [sym__block_close] = ACTIONS(2317), - [sym__block_quote_start] = ACTIONS(2317), - [sym_atx_h1_marker] = ACTIONS(2317), - [sym_atx_h2_marker] = ACTIONS(2317), - [sym_atx_h3_marker] = ACTIONS(2317), - [sym_atx_h4_marker] = ACTIONS(2317), - [sym_atx_h5_marker] = ACTIONS(2317), - [sym_atx_h6_marker] = ACTIONS(2317), - [sym__thematic_break] = ACTIONS(2317), - [sym__list_marker_minus] = ACTIONS(2317), - [sym__list_marker_plus] = ACTIONS(2317), - [sym__list_marker_star] = ACTIONS(2317), - [sym__list_marker_parenthesis] = ACTIONS(2317), - [sym__list_marker_dot] = ACTIONS(2317), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_example] = ACTIONS(2317), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2317), - [sym__fenced_code_block_start_backtick] = ACTIONS(2317), - [sym_minus_metadata] = ACTIONS(2317), - [sym__pipe_table_start] = ACTIONS(2317), - [sym__fenced_div_start] = ACTIONS(2317), - [sym_ref_id_specifier] = ACTIONS(2317), - [sym__code_span_start] = ACTIONS(2317), - [sym__html_comment] = ACTIONS(2317), - [sym__autolink] = ACTIONS(2317), - [sym__highlight_span_start] = ACTIONS(2317), - [sym__insert_span_start] = ACTIONS(2317), - [sym__delete_span_start] = ACTIONS(2317), - [sym__edit_comment_span_start] = ACTIONS(2317), - [sym__single_quote_span_open] = ACTIONS(2317), - [sym__double_quote_span_open] = ACTIONS(2317), - [sym__shortcode_open_escaped] = ACTIONS(2317), - [sym__shortcode_open] = ACTIONS(2317), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2317), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2317), - [sym__cite_author_in_text] = ACTIONS(2317), - [sym__cite_suppress_author] = ACTIONS(2317), - [sym__strikeout_open] = ACTIONS(2317), - [sym__subscript_open] = ACTIONS(2317), - [sym__superscript_open] = ACTIONS(2317), - [sym__inline_note_start_token] = ACTIONS(2317), - [sym__strong_emphasis_open_star] = ACTIONS(2317), - [sym__strong_emphasis_open_underscore] = ACTIONS(2317), - [sym__emphasis_open_star] = ACTIONS(2317), - [sym__emphasis_open_underscore] = ACTIONS(2317), - [sym_inline_note_reference] = ACTIONS(2317), - [sym_html_element] = ACTIONS(2317), - [sym__pandoc_line_break] = ACTIONS(2317), - }, - [STATE(482)] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2305), - [sym_entity_reference] = ACTIONS(2305), - [sym_numeric_character_reference] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_BANG_LBRACK] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [aux_sym_pandoc_str_token1] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2305), - [sym__whitespace] = ACTIONS(2305), - [sym__line_ending] = ACTIONS(2305), - [sym__soft_line_ending] = ACTIONS(2305), - [sym__block_quote_start] = ACTIONS(2305), - [sym_atx_h1_marker] = ACTIONS(2305), - [sym_atx_h2_marker] = ACTIONS(2305), - [sym_atx_h3_marker] = ACTIONS(2305), - [sym_atx_h4_marker] = ACTIONS(2305), - [sym_atx_h5_marker] = ACTIONS(2305), - [sym_atx_h6_marker] = ACTIONS(2305), - [sym__thematic_break] = ACTIONS(2305), - [sym__list_marker_minus] = ACTIONS(2305), - [sym__list_marker_plus] = ACTIONS(2305), - [sym__list_marker_star] = ACTIONS(2305), - [sym__list_marker_parenthesis] = ACTIONS(2305), - [sym__list_marker_dot] = ACTIONS(2305), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2305), - [sym__list_marker_example] = ACTIONS(2305), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2305), - [sym__fenced_code_block_start_backtick] = ACTIONS(2305), - [sym_minus_metadata] = ACTIONS(2305), - [sym__pipe_table_start] = ACTIONS(2305), - [sym__fenced_div_start] = ACTIONS(2305), - [sym_ref_id_specifier] = ACTIONS(2305), - [sym__code_span_start] = ACTIONS(2305), - [sym__html_comment] = ACTIONS(2305), - [sym__autolink] = ACTIONS(2305), - [sym__highlight_span_start] = ACTIONS(2305), - [sym__insert_span_start] = ACTIONS(2305), - [sym__delete_span_start] = ACTIONS(2305), - [sym__edit_comment_span_start] = ACTIONS(2305), - [sym__single_quote_span_open] = ACTIONS(2305), - [sym__double_quote_span_open] = ACTIONS(2305), - [sym__shortcode_open_escaped] = ACTIONS(2305), - [sym__shortcode_open] = ACTIONS(2305), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2305), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2305), - [sym__cite_author_in_text] = ACTIONS(2305), - [sym__cite_suppress_author] = ACTIONS(2305), - [sym__strikeout_open] = ACTIONS(2305), - [sym__subscript_open] = ACTIONS(2305), - [sym__superscript_open] = ACTIONS(2305), - [sym__inline_note_start_token] = ACTIONS(2305), - [sym__strong_emphasis_open_star] = ACTIONS(2305), - [sym__strong_emphasis_open_underscore] = ACTIONS(2305), - [sym__emphasis_open_star] = ACTIONS(2305), - [sym__emphasis_open_underscore] = ACTIONS(2305), - [sym_inline_note_reference] = ACTIONS(2305), - [sym_html_element] = ACTIONS(2305), - [sym__pandoc_line_break] = ACTIONS(2305), - }, - [STATE(483)] = { - [anon_sym_COLON] = ACTIONS(2323), - [sym_entity_reference] = ACTIONS(2323), - [sym_numeric_character_reference] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_BANG_LBRACK] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [aux_sym_pandoc_str_token1] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2323), - [sym__whitespace] = ACTIONS(2323), - [sym__line_ending] = ACTIONS(2323), - [sym__soft_line_ending] = ACTIONS(2323), - [sym__block_close] = ACTIONS(2323), - [sym__block_quote_start] = ACTIONS(2323), - [sym_atx_h1_marker] = ACTIONS(2323), - [sym_atx_h2_marker] = ACTIONS(2323), - [sym_atx_h3_marker] = ACTIONS(2323), - [sym_atx_h4_marker] = ACTIONS(2323), - [sym_atx_h5_marker] = ACTIONS(2323), - [sym_atx_h6_marker] = ACTIONS(2323), - [sym__thematic_break] = ACTIONS(2323), - [sym__list_marker_minus] = ACTIONS(2323), - [sym__list_marker_plus] = ACTIONS(2323), - [sym__list_marker_star] = ACTIONS(2323), - [sym__list_marker_parenthesis] = ACTIONS(2323), - [sym__list_marker_dot] = ACTIONS(2323), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_example] = ACTIONS(2323), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2323), - [sym__fenced_code_block_start_backtick] = ACTIONS(2323), - [sym_minus_metadata] = ACTIONS(2323), - [sym__pipe_table_start] = ACTIONS(2323), - [sym__fenced_div_start] = ACTIONS(2323), - [sym_ref_id_specifier] = ACTIONS(2323), - [sym__code_span_start] = ACTIONS(2323), - [sym__html_comment] = ACTIONS(2323), - [sym__autolink] = ACTIONS(2323), - [sym__highlight_span_start] = ACTIONS(2323), - [sym__insert_span_start] = ACTIONS(2323), - [sym__delete_span_start] = ACTIONS(2323), - [sym__edit_comment_span_start] = ACTIONS(2323), - [sym__single_quote_span_open] = ACTIONS(2323), - [sym__double_quote_span_open] = ACTIONS(2323), - [sym__shortcode_open_escaped] = ACTIONS(2323), - [sym__shortcode_open] = ACTIONS(2323), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2323), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2323), - [sym__cite_author_in_text] = ACTIONS(2323), - [sym__cite_suppress_author] = ACTIONS(2323), - [sym__strikeout_open] = ACTIONS(2323), - [sym__subscript_open] = ACTIONS(2323), - [sym__superscript_open] = ACTIONS(2323), - [sym__inline_note_start_token] = ACTIONS(2323), - [sym__strong_emphasis_open_star] = ACTIONS(2323), - [sym__strong_emphasis_open_underscore] = ACTIONS(2323), - [sym__emphasis_open_star] = ACTIONS(2323), - [sym__emphasis_open_underscore] = ACTIONS(2323), - [sym_inline_note_reference] = ACTIONS(2323), - [sym_html_element] = ACTIONS(2323), - [sym__pandoc_line_break] = ACTIONS(2323), - }, - [STATE(484)] = { - [anon_sym_COLON] = 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_close] = ACTIONS(2329), - [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_line_break] = ACTIONS(2329), - }, - [STATE(485)] = { - [sym_pandoc_paragraph] = STATE(329), - [sym__inlines] = STATE(3206), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), - [sym__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__soft_line_break] = STATE(814), - [sym__inline_whitespace] = STATE(814), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(227), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(486)] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [anon_sym_COLON] = ACTIONS(2311), - [sym_entity_reference] = ACTIONS(2311), - [sym_numeric_character_reference] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_BANG_LBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [aux_sym_pandoc_str_token1] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2311), - [sym__whitespace] = ACTIONS(2311), - [sym__line_ending] = ACTIONS(2311), - [sym__soft_line_ending] = ACTIONS(2311), - [sym__block_quote_start] = ACTIONS(2311), - [sym_atx_h1_marker] = ACTIONS(2311), - [sym_atx_h2_marker] = ACTIONS(2311), - [sym_atx_h3_marker] = ACTIONS(2311), - [sym_atx_h4_marker] = ACTIONS(2311), - [sym_atx_h5_marker] = ACTIONS(2311), - [sym_atx_h6_marker] = ACTIONS(2311), - [sym__thematic_break] = ACTIONS(2311), - [sym__list_marker_minus] = ACTIONS(2311), - [sym__list_marker_plus] = ACTIONS(2311), - [sym__list_marker_star] = ACTIONS(2311), - [sym__list_marker_parenthesis] = ACTIONS(2311), - [sym__list_marker_dot] = ACTIONS(2311), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2311), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2311), - [sym_minus_metadata] = ACTIONS(2311), - [sym__pipe_table_start] = ACTIONS(2311), - [sym__fenced_div_start] = ACTIONS(2311), - [sym_ref_id_specifier] = ACTIONS(2311), - [sym__code_span_start] = ACTIONS(2311), - [sym__html_comment] = ACTIONS(2311), - [sym__autolink] = ACTIONS(2311), - [sym__highlight_span_start] = ACTIONS(2311), - [sym__insert_span_start] = ACTIONS(2311), - [sym__delete_span_start] = ACTIONS(2311), - [sym__edit_comment_span_start] = ACTIONS(2311), - [sym__single_quote_span_open] = ACTIONS(2311), - [sym__double_quote_span_open] = ACTIONS(2311), - [sym__shortcode_open_escaped] = ACTIONS(2311), - [sym__shortcode_open] = ACTIONS(2311), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2311), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2311), - [sym__cite_author_in_text] = ACTIONS(2311), - [sym__cite_suppress_author] = ACTIONS(2311), - [sym__strikeout_open] = ACTIONS(2311), - [sym__subscript_open] = ACTIONS(2311), - [sym__superscript_open] = ACTIONS(2311), - [sym__inline_note_start_token] = ACTIONS(2311), - [sym__strong_emphasis_open_star] = ACTIONS(2311), - [sym__strong_emphasis_open_underscore] = ACTIONS(2311), - [sym__emphasis_open_star] = ACTIONS(2311), - [sym__emphasis_open_underscore] = ACTIONS(2311), - [sym_inline_note_reference] = ACTIONS(2311), - [sym_html_element] = ACTIONS(2311), - [sym__pandoc_line_break] = ACTIONS(2311), + [STATE(522)] = { + [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(2931), + [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(690), + [sym__inline_whitespace] = STATE(690), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3197), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(487)] = { - [anon_sym_COLON] = ACTIONS(2849), - [sym_entity_reference] = ACTIONS(2849), - [sym_numeric_character_reference] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_BANG_LBRACK] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2851), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [aux_sym_pandoc_str_token1] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2849), - [sym__whitespace] = ACTIONS(2849), - [sym__line_ending] = ACTIONS(2849), - [sym__soft_line_ending] = ACTIONS(2849), - [sym__block_close] = ACTIONS(2849), - [sym__block_quote_start] = ACTIONS(2849), - [sym_atx_h1_marker] = ACTIONS(2849), - [sym_atx_h2_marker] = ACTIONS(2849), - [sym_atx_h3_marker] = ACTIONS(2849), - [sym_atx_h4_marker] = ACTIONS(2849), - [sym_atx_h5_marker] = ACTIONS(2849), - [sym_atx_h6_marker] = ACTIONS(2849), - [sym__thematic_break] = ACTIONS(2849), - [sym__list_marker_minus] = ACTIONS(2849), - [sym__list_marker_plus] = ACTIONS(2849), - [sym__list_marker_star] = ACTIONS(2849), - [sym__list_marker_parenthesis] = ACTIONS(2849), - [sym__list_marker_dot] = ACTIONS(2849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_example] = ACTIONS(2849), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), - [sym__fenced_code_block_start_backtick] = ACTIONS(2849), - [sym_minus_metadata] = ACTIONS(2849), - [sym__pipe_table_start] = ACTIONS(2849), - [sym__fenced_div_start] = ACTIONS(2849), - [sym_ref_id_specifier] = ACTIONS(2849), - [sym__code_span_start] = ACTIONS(2849), - [sym__html_comment] = ACTIONS(2849), - [sym__autolink] = ACTIONS(2849), - [sym__highlight_span_start] = ACTIONS(2849), - [sym__insert_span_start] = ACTIONS(2849), - [sym__delete_span_start] = ACTIONS(2849), - [sym__edit_comment_span_start] = ACTIONS(2849), - [sym__single_quote_span_open] = ACTIONS(2849), - [sym__double_quote_span_open] = ACTIONS(2849), - [sym__shortcode_open_escaped] = ACTIONS(2849), - [sym__shortcode_open] = ACTIONS(2849), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2849), - [sym__strikeout_open] = ACTIONS(2849), - [sym__subscript_open] = ACTIONS(2849), - [sym__superscript_open] = ACTIONS(2849), - [sym__inline_note_start_token] = ACTIONS(2849), - [sym__strong_emphasis_open_star] = ACTIONS(2849), - [sym__strong_emphasis_open_underscore] = ACTIONS(2849), - [sym__emphasis_open_star] = ACTIONS(2849), - [sym__emphasis_open_underscore] = ACTIONS(2849), - [sym_inline_note_reference] = ACTIONS(2849), - [sym_html_element] = ACTIONS(2849), - [sym__pandoc_line_break] = ACTIONS(2849), + [STATE(523)] = { + [sym__inlines] = STATE(3680), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3201), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(488)] = { - [anon_sym_COLON] = 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_close] = ACTIONS(2335), - [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_line_break] = ACTIONS(2335), + [STATE(524)] = { + [sym__inlines] = STATE(3686), + [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(2931), + [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(711), + [sym__inline_whitespace] = STATE(711), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3205), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(489)] = { - [anon_sym_COLON] = ACTIONS(2567), - [sym_entity_reference] = ACTIONS(2567), - [sym_numeric_character_reference] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_BANG_LBRACK] = ACTIONS(2567), - [anon_sym_DOLLAR] = ACTIONS(2569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2567), - [sym__whitespace] = ACTIONS(2567), - [sym__line_ending] = ACTIONS(2567), - [sym__soft_line_ending] = ACTIONS(2567), - [sym__block_close] = ACTIONS(2567), - [sym__block_quote_start] = ACTIONS(2567), - [sym_atx_h1_marker] = ACTIONS(2567), - [sym_atx_h2_marker] = ACTIONS(2567), - [sym_atx_h3_marker] = ACTIONS(2567), - [sym_atx_h4_marker] = ACTIONS(2567), - [sym_atx_h5_marker] = ACTIONS(2567), - [sym_atx_h6_marker] = ACTIONS(2567), - [sym__thematic_break] = ACTIONS(2567), - [sym__list_marker_minus] = ACTIONS(2567), - [sym__list_marker_plus] = ACTIONS(2567), - [sym__list_marker_star] = ACTIONS(2567), - [sym__list_marker_parenthesis] = ACTIONS(2567), - [sym__list_marker_dot] = ACTIONS(2567), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_example] = ACTIONS(2567), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2567), - [sym__fenced_code_block_start_backtick] = ACTIONS(2567), - [sym_minus_metadata] = ACTIONS(2567), - [sym__pipe_table_start] = ACTIONS(2567), - [sym__fenced_div_start] = ACTIONS(2567), - [sym_ref_id_specifier] = ACTIONS(2567), - [sym__code_span_start] = ACTIONS(2567), - [sym__html_comment] = ACTIONS(2567), - [sym__autolink] = ACTIONS(2567), - [sym__highlight_span_start] = ACTIONS(2567), - [sym__insert_span_start] = ACTIONS(2567), - [sym__delete_span_start] = ACTIONS(2567), - [sym__edit_comment_span_start] = ACTIONS(2567), - [sym__single_quote_span_open] = ACTIONS(2567), - [sym__double_quote_span_open] = ACTIONS(2567), - [sym__shortcode_open_escaped] = ACTIONS(2567), - [sym__shortcode_open] = ACTIONS(2567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2567), - [sym__cite_author_in_text] = ACTIONS(2567), - [sym__cite_suppress_author] = ACTIONS(2567), - [sym__strikeout_open] = ACTIONS(2567), - [sym__subscript_open] = ACTIONS(2567), - [sym__superscript_open] = ACTIONS(2567), - [sym__inline_note_start_token] = ACTIONS(2567), - [sym__strong_emphasis_open_star] = ACTIONS(2567), - [sym__strong_emphasis_open_underscore] = ACTIONS(2567), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2567), - [sym_inline_note_reference] = ACTIONS(2567), - [sym_html_element] = ACTIONS(2567), - [sym__pandoc_line_break] = ACTIONS(2567), + [STATE(525)] = { + [sym__inlines] = STATE(3692), + [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(2931), + [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(712), + [sym__inline_whitespace] = STATE(712), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3209), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(490)] = { - [ts_builtin_sym_end] = ACTIONS(2317), - [anon_sym_COLON] = ACTIONS(2317), - [sym_entity_reference] = ACTIONS(2317), - [sym_numeric_character_reference] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_BANG_LBRACK] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [aux_sym_pandoc_str_token1] = ACTIONS(2319), - [anon_sym_PIPE] = ACTIONS(2317), - [sym__whitespace] = ACTIONS(2317), - [sym__line_ending] = ACTIONS(2317), - [sym__soft_line_ending] = ACTIONS(2317), - [sym__block_quote_start] = ACTIONS(2317), - [sym_atx_h1_marker] = ACTIONS(2317), - [sym_atx_h2_marker] = ACTIONS(2317), - [sym_atx_h3_marker] = ACTIONS(2317), - [sym_atx_h4_marker] = ACTIONS(2317), - [sym_atx_h5_marker] = ACTIONS(2317), - [sym_atx_h6_marker] = ACTIONS(2317), - [sym__thematic_break] = ACTIONS(2317), - [sym__list_marker_minus] = ACTIONS(2317), - [sym__list_marker_plus] = ACTIONS(2317), - [sym__list_marker_star] = ACTIONS(2317), - [sym__list_marker_parenthesis] = ACTIONS(2317), - [sym__list_marker_dot] = ACTIONS(2317), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2317), - [sym__list_marker_example] = ACTIONS(2317), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2317), - [sym__fenced_code_block_start_backtick] = ACTIONS(2317), - [sym_minus_metadata] = ACTIONS(2317), - [sym__pipe_table_start] = ACTIONS(2317), - [sym__fenced_div_start] = ACTIONS(2317), - [sym_ref_id_specifier] = ACTIONS(2317), - [sym__code_span_start] = ACTIONS(2317), - [sym__html_comment] = ACTIONS(2317), - [sym__autolink] = ACTIONS(2317), - [sym__highlight_span_start] = ACTIONS(2317), - [sym__insert_span_start] = ACTIONS(2317), - [sym__delete_span_start] = ACTIONS(2317), - [sym__edit_comment_span_start] = ACTIONS(2317), - [sym__single_quote_span_open] = ACTIONS(2317), - [sym__double_quote_span_open] = ACTIONS(2317), - [sym__shortcode_open_escaped] = ACTIONS(2317), - [sym__shortcode_open] = ACTIONS(2317), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2317), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2317), - [sym__cite_author_in_text] = ACTIONS(2317), - [sym__cite_suppress_author] = ACTIONS(2317), - [sym__strikeout_open] = ACTIONS(2317), - [sym__subscript_open] = ACTIONS(2317), - [sym__superscript_open] = ACTIONS(2317), - [sym__inline_note_start_token] = ACTIONS(2317), - [sym__strong_emphasis_open_star] = ACTIONS(2317), - [sym__strong_emphasis_open_underscore] = ACTIONS(2317), - [sym__emphasis_open_star] = ACTIONS(2317), - [sym__emphasis_open_underscore] = ACTIONS(2317), - [sym_inline_note_reference] = ACTIONS(2317), - [sym_html_element] = ACTIONS(2317), - [sym__pandoc_line_break] = ACTIONS(2317), + [STATE(526)] = { + [sym__inlines] = STATE(3697), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3213), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(491)] = { - [sym_pandoc_paragraph] = STATE(467), - [sym__inlines] = STATE(3153), - [sym_pandoc_span] = STATE(652), - [sym_pandoc_image] = STATE(652), - [sym_pandoc_math] = STATE(652), - [sym_pandoc_display_math] = STATE(652), - [sym_pandoc_code_span] = STATE(652), - [sym_pandoc_single_quote] = STATE(652), - [sym_pandoc_double_quote] = STATE(652), - [sym_insert] = STATE(652), - [sym_delete] = STATE(652), - [sym_edit_comment] = STATE(652), - [sym_highlight] = STATE(652), - [sym__pandoc_attr_specifier] = STATE(652), + [STATE(527)] = { + [sym__atx_heading_content] = STATE(3125), + [sym__inlines] = STATE(3125), + [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__line] = STATE(2867), - [sym__inline_element] = STATE(652), - [sym_shortcode_escaped] = STATE(652), - [sym_shortcode] = STATE(652), - [sym_citation] = STATE(652), - [sym_inline_note] = STATE(652), - [sym_pandoc_superscript] = STATE(652), - [sym_pandoc_subscript] = STATE(652), - [sym_pandoc_strikeout] = STATE(652), - [sym_pandoc_emph] = STATE(652), - [sym_pandoc_strong] = STATE(652), - [sym_pandoc_str] = STATE(652), - [sym__soft_line_break] = STATE(803), - [sym__inline_whitespace] = STATE(803), + [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), + [sym__newline] = STATE(457), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -64238,6137 +67101,3726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [sym__whitespace] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(3103), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3215), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), [sym__highlight_span_start] = ACTIONS(69), [sym__insert_span_start] = ACTIONS(71), [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2323), - [sym_entity_reference] = ACTIONS(2323), - [sym_numeric_character_reference] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_BANG_LBRACK] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [aux_sym_pandoc_str_token1] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2323), - [sym__whitespace] = ACTIONS(2323), - [sym__line_ending] = ACTIONS(2323), - [sym__soft_line_ending] = ACTIONS(2323), - [sym__block_quote_start] = ACTIONS(2323), - [sym_atx_h1_marker] = ACTIONS(2323), - [sym_atx_h2_marker] = ACTIONS(2323), - [sym_atx_h3_marker] = ACTIONS(2323), - [sym_atx_h4_marker] = ACTIONS(2323), - [sym_atx_h5_marker] = ACTIONS(2323), - [sym_atx_h6_marker] = ACTIONS(2323), - [sym__thematic_break] = ACTIONS(2323), - [sym__list_marker_minus] = ACTIONS(2323), - [sym__list_marker_plus] = ACTIONS(2323), - [sym__list_marker_star] = ACTIONS(2323), - [sym__list_marker_parenthesis] = ACTIONS(2323), - [sym__list_marker_dot] = ACTIONS(2323), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2323), - [sym__list_marker_example] = ACTIONS(2323), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2323), - [sym__fenced_code_block_start_backtick] = ACTIONS(2323), - [sym_minus_metadata] = ACTIONS(2323), - [sym__pipe_table_start] = ACTIONS(2323), - [sym__fenced_div_start] = ACTIONS(2323), - [sym_ref_id_specifier] = ACTIONS(2323), - [sym__code_span_start] = ACTIONS(2323), - [sym__html_comment] = ACTIONS(2323), - [sym__autolink] = ACTIONS(2323), - [sym__highlight_span_start] = ACTIONS(2323), - [sym__insert_span_start] = ACTIONS(2323), - [sym__delete_span_start] = ACTIONS(2323), - [sym__edit_comment_span_start] = ACTIONS(2323), - [sym__single_quote_span_open] = ACTIONS(2323), - [sym__double_quote_span_open] = ACTIONS(2323), - [sym__shortcode_open_escaped] = ACTIONS(2323), - [sym__shortcode_open] = ACTIONS(2323), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2323), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2323), - [sym__cite_author_in_text] = ACTIONS(2323), - [sym__cite_suppress_author] = ACTIONS(2323), - [sym__strikeout_open] = ACTIONS(2323), - [sym__subscript_open] = ACTIONS(2323), - [sym__superscript_open] = ACTIONS(2323), - [sym__inline_note_start_token] = ACTIONS(2323), - [sym__strong_emphasis_open_star] = ACTIONS(2323), - [sym__strong_emphasis_open_underscore] = ACTIONS(2323), - [sym__emphasis_open_star] = ACTIONS(2323), - [sym__emphasis_open_underscore] = ACTIONS(2323), - [sym_inline_note_reference] = ACTIONS(2323), - [sym_html_element] = ACTIONS(2323), - [sym__pandoc_line_break] = ACTIONS(2323), - }, - [STATE(493)] = { - [sym__inlines] = STATE(3997), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(767), - [sym__inline_whitespace] = STATE(767), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3197), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(494)] = { - [sym__inlines] = STATE(4045), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(768), - [sym__inline_whitespace] = STATE(768), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3201), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(495)] = { - [sym__inlines] = STATE(4063), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(774), - [sym__inline_whitespace] = STATE(774), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3205), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(496)] = { - [sym__inlines] = STATE(4071), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(775), - [sym__inline_whitespace] = STATE(775), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3209), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(497)] = { - [anon_sym_COLON] = ACTIONS(2571), - [sym_entity_reference] = ACTIONS(2571), - [sym_numeric_character_reference] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_BANG_LBRACK] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2573), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [aux_sym_pandoc_str_token1] = ACTIONS(2573), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2571), - [sym__line_ending] = ACTIONS(2571), - [sym__soft_line_ending] = ACTIONS(2571), - [sym__block_close] = ACTIONS(2571), - [sym__block_quote_start] = ACTIONS(2571), - [sym_atx_h1_marker] = ACTIONS(2571), - [sym_atx_h2_marker] = ACTIONS(2571), - [sym_atx_h3_marker] = ACTIONS(2571), - [sym_atx_h4_marker] = ACTIONS(2571), - [sym_atx_h5_marker] = ACTIONS(2571), - [sym_atx_h6_marker] = ACTIONS(2571), - [sym__thematic_break] = ACTIONS(2571), - [sym__list_marker_minus] = ACTIONS(2571), - [sym__list_marker_plus] = ACTIONS(2571), - [sym__list_marker_star] = ACTIONS(2571), - [sym__list_marker_parenthesis] = ACTIONS(2571), - [sym__list_marker_dot] = ACTIONS(2571), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2571), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2571), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2571), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2571), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2571), - [sym__list_marker_example] = ACTIONS(2571), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2571), - [sym__fenced_code_block_start_backtick] = ACTIONS(2571), - [sym_minus_metadata] = ACTIONS(2571), - [sym__pipe_table_start] = ACTIONS(2571), - [sym__fenced_div_start] = ACTIONS(2571), - [sym_ref_id_specifier] = ACTIONS(2571), - [sym__code_span_start] = ACTIONS(2571), - [sym__html_comment] = ACTIONS(2571), - [sym__autolink] = ACTIONS(2571), - [sym__highlight_span_start] = ACTIONS(2571), - [sym__insert_span_start] = ACTIONS(2571), - [sym__delete_span_start] = ACTIONS(2571), - [sym__edit_comment_span_start] = ACTIONS(2571), - [sym__single_quote_span_open] = ACTIONS(2571), - [sym__double_quote_span_open] = ACTIONS(2571), - [sym__shortcode_open_escaped] = ACTIONS(2571), - [sym__shortcode_open] = ACTIONS(2571), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2571), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2571), - [sym__cite_author_in_text] = ACTIONS(2571), - [sym__cite_suppress_author] = ACTIONS(2571), - [sym__strikeout_open] = ACTIONS(2571), - [sym__subscript_open] = ACTIONS(2571), - [sym__superscript_open] = ACTIONS(2571), - [sym__inline_note_start_token] = ACTIONS(2571), - [sym__strong_emphasis_open_star] = ACTIONS(2571), - [sym__strong_emphasis_open_underscore] = ACTIONS(2571), - [sym__emphasis_open_star] = ACTIONS(2571), - [sym__emphasis_open_underscore] = ACTIONS(2571), - [sym_inline_note_reference] = ACTIONS(2571), - [sym_html_element] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2571), - }, - [STATE(498)] = { - [anon_sym_COLON] = ACTIONS(2575), - [sym_entity_reference] = ACTIONS(2575), - [sym_numeric_character_reference] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_BANG_LBRACK] = ACTIONS(2575), - [anon_sym_DOLLAR] = ACTIONS(2577), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [aux_sym_pandoc_str_token1] = ACTIONS(2577), - [anon_sym_PIPE] = ACTIONS(2575), - [sym__whitespace] = ACTIONS(2575), - [sym__line_ending] = ACTIONS(2575), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__block_close] = ACTIONS(2575), - [sym__block_quote_start] = ACTIONS(2575), - [sym_atx_h1_marker] = ACTIONS(2575), - [sym_atx_h2_marker] = ACTIONS(2575), - [sym_atx_h3_marker] = ACTIONS(2575), - [sym_atx_h4_marker] = ACTIONS(2575), - [sym_atx_h5_marker] = ACTIONS(2575), - [sym_atx_h6_marker] = ACTIONS(2575), - [sym__thematic_break] = ACTIONS(2575), - [sym__list_marker_minus] = ACTIONS(2575), - [sym__list_marker_plus] = ACTIONS(2575), - [sym__list_marker_star] = ACTIONS(2575), - [sym__list_marker_parenthesis] = ACTIONS(2575), - [sym__list_marker_dot] = ACTIONS(2575), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2575), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2575), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2575), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2575), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2575), - [sym__list_marker_example] = ACTIONS(2575), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2575), - [sym__fenced_code_block_start_backtick] = ACTIONS(2575), - [sym_minus_metadata] = ACTIONS(2575), - [sym__pipe_table_start] = ACTIONS(2575), - [sym__fenced_div_start] = ACTIONS(2575), - [sym_ref_id_specifier] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2575), - [sym__html_comment] = ACTIONS(2575), - [sym__autolink] = ACTIONS(2575), - [sym__highlight_span_start] = ACTIONS(2575), - [sym__insert_span_start] = ACTIONS(2575), - [sym__delete_span_start] = ACTIONS(2575), - [sym__edit_comment_span_start] = ACTIONS(2575), - [sym__single_quote_span_open] = ACTIONS(2575), - [sym__double_quote_span_open] = ACTIONS(2575), - [sym__shortcode_open_escaped] = ACTIONS(2575), - [sym__shortcode_open] = ACTIONS(2575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2575), - [sym__cite_author_in_text] = ACTIONS(2575), - [sym__cite_suppress_author] = ACTIONS(2575), - [sym__strikeout_open] = ACTIONS(2575), - [sym__subscript_open] = ACTIONS(2575), - [sym__superscript_open] = ACTIONS(2575), - [sym__inline_note_start_token] = ACTIONS(2575), - [sym__strong_emphasis_open_star] = ACTIONS(2575), - [sym__strong_emphasis_open_underscore] = ACTIONS(2575), - [sym__emphasis_open_star] = ACTIONS(2575), - [sym__emphasis_open_underscore] = ACTIONS(2575), - [sym_inline_note_reference] = ACTIONS(2575), - [sym_html_element] = ACTIONS(2575), - [sym__pandoc_line_break] = ACTIONS(2575), - }, - [STATE(499)] = { - [sym__inlines] = STATE(3680), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(747), - [sym__inline_whitespace] = STATE(747), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3213), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(500)] = { - [sym__inlines] = STATE(3686), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(748), - [sym__inline_whitespace] = STATE(748), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3217), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(501)] = { - [sym__inlines] = STATE(3692), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(751), - [sym__inline_whitespace] = STATE(751), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3221), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(502)] = { - [sym__inlines] = STATE(3697), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(756), - [sym__inline_whitespace] = STATE(756), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3225), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(503)] = { - [anon_sym_COLON] = 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), - [sym__block_close] = ACTIONS(2341), - [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_line_break] = ACTIONS(2341), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(504)] = { + [STATE(528)] = { [sym__inlines] = STATE(3910), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(690), - [sym__inline_whitespace] = STATE(690), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3229), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(732), + [sym__inline_whitespace] = STATE(732), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3219), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(505)] = { + [STATE(529)] = { [sym__inlines] = STATE(3914), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(700), - [sym__inline_whitespace] = STATE(700), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3233), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(733), + [sym__inline_whitespace] = STATE(733), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3223), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(506)] = { + [STATE(530)] = { [sym__inlines] = STATE(3930), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(701), - [sym__inline_whitespace] = STATE(701), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3237), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3227), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(507)] = { + [STATE(531)] = { [sym__inlines] = STATE(3936), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(703), - [sym__inline_whitespace] = STATE(703), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3241), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(508)] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2329), - }, - [STATE(509)] = { - [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2347), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3231), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(510)] = { - [sym__inlines] = STATE(4144), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(729), - [sym__inline_whitespace] = STATE(729), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3245), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [STATE(532)] = { + [sym__atx_heading_content] = STATE(3276), + [sym__inlines] = STATE(3276), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(233), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(231), + [sym__eof] = ACTIONS(3233), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(511)] = { + [STATE(533)] = { [sym__inlines] = STATE(4146), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(734), - [sym__inline_whitespace] = STATE(734), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3249), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3237), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(512)] = { + [STATE(534)] = { [sym__inlines] = STATE(4200), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(735), - [sym__inline_whitespace] = STATE(735), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3253), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3241), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(513)] = { + [STATE(535)] = { [sym__inlines] = STATE(4202), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(737), - [sym__inline_whitespace] = STATE(737), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3257), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(758), + [sym__inline_whitespace] = STATE(758), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3245), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(514)] = { - [anon_sym_COLON] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_close] = ACTIONS(2353), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), + [STATE(536)] = { + [sym_pandoc_paragraph] = STATE(455), + [sym__inlines] = STATE(3153), + [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__line] = STATE(2867), + [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), + [sym__soft_line_break] = STATE(816), + [sym__inline_whitespace] = STATE(816), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(515)] = { + [STATE(537)] = { [sym__inlines] = STATE(3583), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(769), - [sym__inline_whitespace] = STATE(769), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3261), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(516)] = { - [sym__inlines] = STATE(3585), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3265), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3249), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(517)] = { - [sym__inlines] = STATE(3589), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(538)] = { + [sym__inlines] = STATE(3585), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(772), - [sym__inline_whitespace] = STATE(772), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3269), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3253), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(518)] = { + [STATE(539)] = { + [sym_pipe_table_row] = STATE(3452), + [sym_pipe_table_cell] = STATE(3192), + [sym_pandoc_span] = STATE(681), + [sym_pandoc_image] = STATE(681), + [sym_pandoc_math] = STATE(681), + [sym_pandoc_display_math] = STATE(681), + [sym_pandoc_code_span] = STATE(681), + [sym_pandoc_single_quote] = STATE(681), + [sym_pandoc_double_quote] = STATE(681), + [sym_insert] = STATE(681), + [sym_delete] = STATE(681), + [sym_edit_comment] = STATE(681), + [sym_highlight] = STATE(681), + [sym__pandoc_attr_specifier] = STATE(681), + [sym__line_with_maybe_spaces] = STATE(3193), + [sym__inline_element] = STATE(681), + [sym_shortcode_escaped] = STATE(681), + [sym_shortcode] = STATE(681), + [sym_citation] = STATE(681), + [sym_inline_note] = STATE(681), + [sym_pandoc_superscript] = STATE(681), + [sym_pandoc_subscript] = STATE(681), + [sym_pandoc_strikeout] = STATE(681), + [sym_pandoc_emph] = STATE(681), + [sym_pandoc_strong] = STATE(681), + [sym_pandoc_str] = STATE(681), + [aux_sym_pipe_table_row_repeat1] = STATE(594), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(681), + [sym_entity_reference] = ACTIONS(3089), + [sym_numeric_character_reference] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_BANG_LBRACK] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [aux_sym_pandoc_str_token1] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3103), + [sym__whitespace] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3089), + [sym__autolink] = ACTIONS(3089), + [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(3089), + [sym_html_element] = ACTIONS(3089), + [sym__pipe_table_delimiter] = ACTIONS(3149), + [sym__pandoc_line_break] = ACTIONS(3089), + }, + [STATE(540)] = { [sym__inlines] = STATE(3593), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3273), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(519)] = { - [ts_builtin_sym_end] = ACTIONS(2849), - [anon_sym_COLON] = ACTIONS(2849), - [sym_entity_reference] = ACTIONS(2849), - [sym_numeric_character_reference] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_BANG_LBRACK] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2851), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [aux_sym_pandoc_str_token1] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2849), - [sym__whitespace] = ACTIONS(2849), - [sym__line_ending] = ACTIONS(2849), - [sym__soft_line_ending] = ACTIONS(2849), - [sym__block_quote_start] = ACTIONS(2849), - [sym_atx_h1_marker] = ACTIONS(2849), - [sym_atx_h2_marker] = ACTIONS(2849), - [sym_atx_h3_marker] = ACTIONS(2849), - [sym_atx_h4_marker] = ACTIONS(2849), - [sym_atx_h5_marker] = ACTIONS(2849), - [sym_atx_h6_marker] = ACTIONS(2849), - [sym__thematic_break] = ACTIONS(2849), - [sym__list_marker_minus] = ACTIONS(2849), - [sym__list_marker_plus] = ACTIONS(2849), - [sym__list_marker_star] = ACTIONS(2849), - [sym__list_marker_parenthesis] = ACTIONS(2849), - [sym__list_marker_dot] = ACTIONS(2849), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), - [sym__list_marker_example] = ACTIONS(2849), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), - [sym__fenced_code_block_start_backtick] = ACTIONS(2849), - [sym_minus_metadata] = ACTIONS(2849), - [sym__pipe_table_start] = ACTIONS(2849), - [sym__fenced_div_start] = ACTIONS(2849), - [sym_ref_id_specifier] = ACTIONS(2849), - [sym__code_span_start] = ACTIONS(2849), - [sym__html_comment] = ACTIONS(2849), - [sym__autolink] = ACTIONS(2849), - [sym__highlight_span_start] = ACTIONS(2849), - [sym__insert_span_start] = ACTIONS(2849), - [sym__delete_span_start] = ACTIONS(2849), - [sym__edit_comment_span_start] = ACTIONS(2849), - [sym__single_quote_span_open] = ACTIONS(2849), - [sym__double_quote_span_open] = ACTIONS(2849), - [sym__shortcode_open_escaped] = ACTIONS(2849), - [sym__shortcode_open] = ACTIONS(2849), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2849), - [sym__strikeout_open] = ACTIONS(2849), - [sym__subscript_open] = ACTIONS(2849), - [sym__superscript_open] = ACTIONS(2849), - [sym__inline_note_start_token] = ACTIONS(2849), - [sym__strong_emphasis_open_star] = ACTIONS(2849), - [sym__strong_emphasis_open_underscore] = ACTIONS(2849), - [sym__emphasis_open_star] = ACTIONS(2849), - [sym__emphasis_open_underscore] = ACTIONS(2849), - [sym_inline_note_reference] = ACTIONS(2849), - [sym_html_element] = ACTIONS(2849), - [sym__pandoc_line_break] = ACTIONS(2849), - }, - [STATE(520)] = { - [anon_sym_COLON] = ACTIONS(2359), - [sym_entity_reference] = ACTIONS(2359), - [sym_numeric_character_reference] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_BANG_LBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [aux_sym_pandoc_str_token1] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2359), - [sym__whitespace] = ACTIONS(2359), - [sym__line_ending] = ACTIONS(2359), - [sym__soft_line_ending] = ACTIONS(2359), - [sym__block_close] = ACTIONS(2359), - [sym__block_quote_start] = ACTIONS(2359), - [sym_atx_h1_marker] = ACTIONS(2359), - [sym_atx_h2_marker] = ACTIONS(2359), - [sym_atx_h3_marker] = ACTIONS(2359), - [sym_atx_h4_marker] = ACTIONS(2359), - [sym_atx_h5_marker] = ACTIONS(2359), - [sym_atx_h6_marker] = ACTIONS(2359), - [sym__thematic_break] = ACTIONS(2359), - [sym__list_marker_minus] = ACTIONS(2359), - [sym__list_marker_plus] = ACTIONS(2359), - [sym__list_marker_star] = ACTIONS(2359), - [sym__list_marker_parenthesis] = ACTIONS(2359), - [sym__list_marker_dot] = ACTIONS(2359), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), - [sym__list_marker_example] = ACTIONS(2359), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), - [sym__fenced_code_block_start_backtick] = ACTIONS(2359), - [sym_minus_metadata] = ACTIONS(2359), - [sym__pipe_table_start] = ACTIONS(2359), - [sym__fenced_div_start] = ACTIONS(2359), - [sym_ref_id_specifier] = ACTIONS(2359), - [sym__code_span_start] = ACTIONS(2359), - [sym__html_comment] = ACTIONS(2359), - [sym__autolink] = ACTIONS(2359), - [sym__highlight_span_start] = ACTIONS(2359), - [sym__insert_span_start] = ACTIONS(2359), - [sym__delete_span_start] = ACTIONS(2359), - [sym__edit_comment_span_start] = ACTIONS(2359), - [sym__single_quote_span_open] = ACTIONS(2359), - [sym__double_quote_span_open] = ACTIONS(2359), - [sym__shortcode_open_escaped] = ACTIONS(2359), - [sym__shortcode_open] = ACTIONS(2359), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), - [sym__cite_author_in_text] = ACTIONS(2359), - [sym__cite_suppress_author] = ACTIONS(2359), - [sym__strikeout_open] = ACTIONS(2359), - [sym__subscript_open] = ACTIONS(2359), - [sym__superscript_open] = ACTIONS(2359), - [sym__inline_note_start_token] = ACTIONS(2359), - [sym__strong_emphasis_open_star] = ACTIONS(2359), - [sym__strong_emphasis_open_underscore] = ACTIONS(2359), - [sym__emphasis_open_star] = ACTIONS(2359), - [sym__emphasis_open_underscore] = ACTIONS(2359), - [sym_inline_note_reference] = ACTIONS(2359), - [sym_html_element] = ACTIONS(2359), - [sym__pandoc_line_break] = ACTIONS(2359), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3257), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(521)] = { + [STATE(541)] = { [sym__inlines] = STATE(3706), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(780), - [sym__inline_whitespace] = STATE(780), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3277), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3261), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(522)] = { + [STATE(542)] = { [sym__inlines] = STATE(3710), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(781), - [sym__inline_whitespace] = STATE(781), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3281), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3265), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(523)] = { + [STATE(543)] = { [sym__inlines] = STATE(3712), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(782), - [sym__inline_whitespace] = STATE(782), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3285), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3269), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(524)] = { + [STATE(544)] = { [sym__inlines] = STATE(3714), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3289), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(525)] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2335), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3273), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(526)] = { - [anon_sym_COLON] = ACTIONS(2365), - [sym_entity_reference] = ACTIONS(2365), - [sym_numeric_character_reference] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_BANG_LBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [aux_sym_pandoc_str_token1] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2365), - [sym__whitespace] = ACTIONS(2365), - [sym__line_ending] = ACTIONS(2365), - [sym__soft_line_ending] = ACTIONS(2365), - [sym__block_close] = ACTIONS(2365), - [sym__block_quote_start] = ACTIONS(2365), - [sym_atx_h1_marker] = ACTIONS(2365), - [sym_atx_h2_marker] = ACTIONS(2365), - [sym_atx_h3_marker] = ACTIONS(2365), - [sym_atx_h4_marker] = ACTIONS(2365), - [sym_atx_h5_marker] = ACTIONS(2365), - [sym_atx_h6_marker] = ACTIONS(2365), - [sym__thematic_break] = ACTIONS(2365), - [sym__list_marker_minus] = ACTIONS(2365), - [sym__list_marker_plus] = ACTIONS(2365), - [sym__list_marker_star] = ACTIONS(2365), - [sym__list_marker_parenthesis] = ACTIONS(2365), - [sym__list_marker_dot] = ACTIONS(2365), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), - [sym__list_marker_example] = ACTIONS(2365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), - [sym__fenced_code_block_start_backtick] = ACTIONS(2365), - [sym_minus_metadata] = ACTIONS(2365), - [sym__pipe_table_start] = ACTIONS(2365), - [sym__fenced_div_start] = ACTIONS(2365), - [sym_ref_id_specifier] = ACTIONS(2365), - [sym__code_span_start] = ACTIONS(2365), - [sym__html_comment] = ACTIONS(2365), - [sym__autolink] = ACTIONS(2365), - [sym__highlight_span_start] = ACTIONS(2365), - [sym__insert_span_start] = ACTIONS(2365), - [sym__delete_span_start] = ACTIONS(2365), - [sym__edit_comment_span_start] = ACTIONS(2365), - [sym__single_quote_span_open] = ACTIONS(2365), - [sym__double_quote_span_open] = ACTIONS(2365), - [sym__shortcode_open_escaped] = ACTIONS(2365), - [sym__shortcode_open] = ACTIONS(2365), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), - [sym__cite_author_in_text] = ACTIONS(2365), - [sym__cite_suppress_author] = ACTIONS(2365), - [sym__strikeout_open] = ACTIONS(2365), - [sym__subscript_open] = ACTIONS(2365), - [sym__superscript_open] = ACTIONS(2365), - [sym__inline_note_start_token] = ACTIONS(2365), - [sym__strong_emphasis_open_star] = ACTIONS(2365), - [sym__strong_emphasis_open_underscore] = ACTIONS(2365), - [sym__emphasis_open_star] = ACTIONS(2365), - [sym__emphasis_open_underscore] = ACTIONS(2365), - [sym_inline_note_reference] = ACTIONS(2365), - [sym_html_element] = ACTIONS(2365), - [sym__pandoc_line_break] = ACTIONS(2365), + [STATE(545)] = { + [sym__atx_heading_content] = STATE(3277), + [sym__inlines] = STATE(3277), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(235), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(231), + [sym__eof] = ACTIONS(3275), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(527)] = { + [STATE(546)] = { [sym__inlines] = STATE(3804), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(696), [sym__inline_whitespace] = STATE(696), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3293), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3279), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(528)] = { + [STATE(547)] = { [sym__inlines] = STATE(3806), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(697), [sym__inline_whitespace] = STATE(697), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3297), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3283), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(529)] = { + [STATE(548)] = { [sym__inlines] = STATE(3808), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(698), [sym__inline_whitespace] = STATE(698), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3301), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3287), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(530)] = { + [STATE(549)] = { [sym__inlines] = STATE(3810), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(699), [sym__inline_whitespace] = STATE(699), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3305), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(531)] = { - [anon_sym_COLON] = ACTIONS(2371), - [sym_entity_reference] = ACTIONS(2371), - [sym_numeric_character_reference] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_BANG_LBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [aux_sym_pandoc_str_token1] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2371), - [sym__whitespace] = ACTIONS(2371), - [sym__line_ending] = ACTIONS(2371), - [sym__soft_line_ending] = ACTIONS(2371), - [sym__block_close] = ACTIONS(2371), - [sym__block_quote_start] = ACTIONS(2371), - [sym_atx_h1_marker] = ACTIONS(2371), - [sym_atx_h2_marker] = ACTIONS(2371), - [sym_atx_h3_marker] = ACTIONS(2371), - [sym_atx_h4_marker] = ACTIONS(2371), - [sym_atx_h5_marker] = ACTIONS(2371), - [sym_atx_h6_marker] = ACTIONS(2371), - [sym__thematic_break] = ACTIONS(2371), - [sym__list_marker_minus] = ACTIONS(2371), - [sym__list_marker_plus] = ACTIONS(2371), - [sym__list_marker_star] = ACTIONS(2371), - [sym__list_marker_parenthesis] = ACTIONS(2371), - [sym__list_marker_dot] = ACTIONS(2371), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), - [sym__list_marker_example] = ACTIONS(2371), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), - [sym__fenced_code_block_start_backtick] = ACTIONS(2371), - [sym_minus_metadata] = ACTIONS(2371), - [sym__pipe_table_start] = ACTIONS(2371), - [sym__fenced_div_start] = ACTIONS(2371), - [sym_ref_id_specifier] = ACTIONS(2371), - [sym__code_span_start] = ACTIONS(2371), - [sym__html_comment] = ACTIONS(2371), - [sym__autolink] = ACTIONS(2371), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2371), - [sym__delete_span_start] = ACTIONS(2371), - [sym__edit_comment_span_start] = ACTIONS(2371), - [sym__single_quote_span_open] = ACTIONS(2371), - [sym__double_quote_span_open] = ACTIONS(2371), - [sym__shortcode_open_escaped] = ACTIONS(2371), - [sym__shortcode_open] = ACTIONS(2371), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), - [sym__cite_author_in_text] = ACTIONS(2371), - [sym__cite_suppress_author] = ACTIONS(2371), - [sym__strikeout_open] = ACTIONS(2371), - [sym__subscript_open] = ACTIONS(2371), - [sym__superscript_open] = ACTIONS(2371), - [sym__inline_note_start_token] = ACTIONS(2371), - [sym__strong_emphasis_open_star] = ACTIONS(2371), - [sym__strong_emphasis_open_underscore] = ACTIONS(2371), - [sym__emphasis_open_star] = ACTIONS(2371), - [sym__emphasis_open_underscore] = ACTIONS(2371), - [sym_inline_note_reference] = ACTIONS(2371), - [sym_html_element] = ACTIONS(2371), - [sym__pandoc_line_break] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3291), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(532)] = { + [STATE(550)] = { [sym__inlines] = STATE(3909), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3309), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3295), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(533)] = { + [STATE(551)] = { [sym__inlines] = STATE(3911), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3313), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3299), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(534)] = { + [STATE(552)] = { [sym__inlines] = STATE(3913), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3317), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3303), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(535)] = { + [STATE(553)] = { [sym__inlines] = STATE(3919), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3321), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(536)] = { - [anon_sym_COLON] = ACTIONS(2601), - [sym_entity_reference] = ACTIONS(2601), - [sym_numeric_character_reference] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_BANG_LBRACK] = ACTIONS(2601), - [anon_sym_DOLLAR] = ACTIONS(2603), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [aux_sym_pandoc_str_token1] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2601), - [sym__whitespace] = ACTIONS(2601), - [sym__line_ending] = ACTIONS(2601), - [sym__soft_line_ending] = ACTIONS(2601), - [sym__block_close] = ACTIONS(2601), - [sym__block_quote_start] = ACTIONS(2601), - [sym_atx_h1_marker] = ACTIONS(2601), - [sym_atx_h2_marker] = ACTIONS(2601), - [sym_atx_h3_marker] = ACTIONS(2601), - [sym_atx_h4_marker] = ACTIONS(2601), - [sym_atx_h5_marker] = ACTIONS(2601), - [sym_atx_h6_marker] = ACTIONS(2601), - [sym__thematic_break] = ACTIONS(2601), - [sym__list_marker_minus] = ACTIONS(2601), - [sym__list_marker_plus] = ACTIONS(2601), - [sym__list_marker_star] = ACTIONS(2601), - [sym__list_marker_parenthesis] = ACTIONS(2601), - [sym__list_marker_dot] = ACTIONS(2601), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2601), - [sym__list_marker_example] = ACTIONS(2601), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2601), - [sym__fenced_code_block_start_backtick] = ACTIONS(2601), - [sym_minus_metadata] = ACTIONS(2601), - [sym__pipe_table_start] = ACTIONS(2601), - [sym__fenced_div_start] = ACTIONS(2601), - [sym_ref_id_specifier] = ACTIONS(2601), - [sym__code_span_start] = ACTIONS(2601), - [sym__html_comment] = ACTIONS(2601), - [sym__autolink] = ACTIONS(2601), - [sym__highlight_span_start] = ACTIONS(2601), - [sym__insert_span_start] = ACTIONS(2601), - [sym__delete_span_start] = ACTIONS(2601), - [sym__edit_comment_span_start] = ACTIONS(2601), - [sym__single_quote_span_open] = ACTIONS(2601), - [sym__double_quote_span_open] = ACTIONS(2601), - [sym__shortcode_open_escaped] = ACTIONS(2601), - [sym__shortcode_open] = ACTIONS(2601), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2601), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2601), - [sym__cite_author_in_text] = ACTIONS(2601), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2601), - [sym__subscript_open] = ACTIONS(2601), - [sym__superscript_open] = ACTIONS(2601), - [sym__inline_note_start_token] = ACTIONS(2601), - [sym__strong_emphasis_open_star] = ACTIONS(2601), - [sym__strong_emphasis_open_underscore] = ACTIONS(2601), - [sym__emphasis_open_star] = ACTIONS(2601), - [sym__emphasis_open_underscore] = ACTIONS(2601), - [sym_inline_note_reference] = ACTIONS(2601), - [sym_html_element] = ACTIONS(2601), - [sym__pandoc_line_break] = ACTIONS(2601), - }, - [STATE(537)] = { - [anon_sym_COLON] = ACTIONS(2605), - [sym_entity_reference] = ACTIONS(2605), - [sym_numeric_character_reference] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_BANG_LBRACK] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [aux_sym_pandoc_str_token1] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2605), - [sym__whitespace] = ACTIONS(2605), - [sym__line_ending] = ACTIONS(2605), - [sym__soft_line_ending] = ACTIONS(2605), - [sym__block_close] = ACTIONS(2605), - [sym__block_quote_start] = ACTIONS(2605), - [sym_atx_h1_marker] = ACTIONS(2605), - [sym_atx_h2_marker] = ACTIONS(2605), - [sym_atx_h3_marker] = ACTIONS(2605), - [sym_atx_h4_marker] = ACTIONS(2605), - [sym_atx_h5_marker] = ACTIONS(2605), - [sym_atx_h6_marker] = ACTIONS(2605), - [sym__thematic_break] = ACTIONS(2605), - [sym__list_marker_minus] = ACTIONS(2605), - [sym__list_marker_plus] = ACTIONS(2605), - [sym__list_marker_star] = ACTIONS(2605), - [sym__list_marker_parenthesis] = ACTIONS(2605), - [sym__list_marker_dot] = ACTIONS(2605), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2605), - [sym__list_marker_example] = ACTIONS(2605), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2605), - [sym__fenced_code_block_start_backtick] = ACTIONS(2605), - [sym_minus_metadata] = ACTIONS(2605), - [sym__pipe_table_start] = ACTIONS(2605), - [sym__fenced_div_start] = ACTIONS(2605), - [sym_ref_id_specifier] = ACTIONS(2605), - [sym__code_span_start] = ACTIONS(2605), - [sym__html_comment] = ACTIONS(2605), - [sym__autolink] = ACTIONS(2605), - [sym__highlight_span_start] = ACTIONS(2605), - [sym__insert_span_start] = ACTIONS(2605), - [sym__delete_span_start] = ACTIONS(2605), - [sym__edit_comment_span_start] = ACTIONS(2605), - [sym__single_quote_span_open] = ACTIONS(2605), - [sym__double_quote_span_open] = ACTIONS(2605), - [sym__shortcode_open_escaped] = ACTIONS(2605), - [sym__shortcode_open] = ACTIONS(2605), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2605), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2605), - [sym__cite_author_in_text] = ACTIONS(2605), - [sym__cite_suppress_author] = ACTIONS(2605), - [sym__strikeout_open] = ACTIONS(2605), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2605), - [sym__inline_note_start_token] = ACTIONS(2605), - [sym__strong_emphasis_open_star] = ACTIONS(2605), - [sym__strong_emphasis_open_underscore] = ACTIONS(2605), - [sym__emphasis_open_star] = ACTIONS(2605), - [sym__emphasis_open_underscore] = ACTIONS(2605), - [sym_inline_note_reference] = ACTIONS(2605), - [sym_html_element] = ACTIONS(2605), - [sym__pandoc_line_break] = ACTIONS(2605), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3307), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(538)] = { + [STATE(554)] = { [sym__inlines] = STATE(4011), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3325), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3311), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(539)] = { + [STATE(555)] = { [sym__inlines] = STATE(4013), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3329), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3315), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(540)] = { + [STATE(556)] = { [sym__inlines] = STATE(4017), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(719), [sym__inline_whitespace] = STATE(719), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3333), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3319), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(541)] = { + [STATE(557)] = { [sym__inlines] = STATE(4019), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(720), [sym__inline_whitespace] = STATE(720), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3337), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3323), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(542)] = { - [ts_builtin_sym_end] = ACTIONS(2567), - [anon_sym_COLON] = ACTIONS(2567), - [sym_entity_reference] = ACTIONS(2567), - [sym_numeric_character_reference] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_BANG_LBRACK] = ACTIONS(2567), - [anon_sym_DOLLAR] = ACTIONS(2569), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2567), - [sym__whitespace] = ACTIONS(2567), - [sym__line_ending] = ACTIONS(2567), - [sym__soft_line_ending] = ACTIONS(2567), - [sym__block_quote_start] = ACTIONS(2567), - [sym_atx_h1_marker] = ACTIONS(2567), - [sym_atx_h2_marker] = ACTIONS(2567), - [sym_atx_h3_marker] = ACTIONS(2567), - [sym_atx_h4_marker] = ACTIONS(2567), - [sym_atx_h5_marker] = ACTIONS(2567), - [sym_atx_h6_marker] = ACTIONS(2567), - [sym__thematic_break] = ACTIONS(2567), - [sym__list_marker_minus] = ACTIONS(2567), - [sym__list_marker_plus] = ACTIONS(2567), - [sym__list_marker_star] = ACTIONS(2567), - [sym__list_marker_parenthesis] = ACTIONS(2567), - [sym__list_marker_dot] = ACTIONS(2567), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2567), - [sym__list_marker_example] = ACTIONS(2567), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2567), - [sym__fenced_code_block_start_backtick] = ACTIONS(2567), - [sym_minus_metadata] = ACTIONS(2567), - [sym__pipe_table_start] = ACTIONS(2567), - [sym__fenced_div_start] = ACTIONS(2567), - [sym_ref_id_specifier] = ACTIONS(2567), - [sym__code_span_start] = ACTIONS(2567), - [sym__html_comment] = ACTIONS(2567), - [sym__autolink] = ACTIONS(2567), - [sym__highlight_span_start] = ACTIONS(2567), - [sym__insert_span_start] = ACTIONS(2567), - [sym__delete_span_start] = ACTIONS(2567), - [sym__edit_comment_span_start] = ACTIONS(2567), - [sym__single_quote_span_open] = ACTIONS(2567), - [sym__double_quote_span_open] = ACTIONS(2567), - [sym__shortcode_open_escaped] = ACTIONS(2567), - [sym__shortcode_open] = ACTIONS(2567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2567), - [sym__cite_author_in_text] = ACTIONS(2567), - [sym__cite_suppress_author] = ACTIONS(2567), - [sym__strikeout_open] = ACTIONS(2567), - [sym__subscript_open] = ACTIONS(2567), - [sym__superscript_open] = ACTIONS(2567), - [sym__inline_note_start_token] = ACTIONS(2567), - [sym__strong_emphasis_open_star] = ACTIONS(2567), - [sym__strong_emphasis_open_underscore] = ACTIONS(2567), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2567), - [sym_inline_note_reference] = ACTIONS(2567), - [sym_html_element] = ACTIONS(2567), - [sym__pandoc_line_break] = ACTIONS(2567), + [STATE(558)] = { + [sym__inlines] = STATE(4112), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3327), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(543)] = { - [anon_sym_COLON] = ACTIONS(2609), - [sym_entity_reference] = ACTIONS(2609), - [sym_numeric_character_reference] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_BANG_LBRACK] = ACTIONS(2609), - [anon_sym_DOLLAR] = ACTIONS(2611), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [aux_sym_pandoc_str_token1] = ACTIONS(2611), - [anon_sym_PIPE] = ACTIONS(2609), - [sym__whitespace] = ACTIONS(2609), - [sym__line_ending] = ACTIONS(2609), - [sym__soft_line_ending] = ACTIONS(2609), - [sym__block_close] = ACTIONS(2609), - [sym__block_quote_start] = ACTIONS(2609), - [sym_atx_h1_marker] = ACTIONS(2609), - [sym_atx_h2_marker] = ACTIONS(2609), - [sym_atx_h3_marker] = ACTIONS(2609), - [sym_atx_h4_marker] = ACTIONS(2609), - [sym_atx_h5_marker] = ACTIONS(2609), - [sym_atx_h6_marker] = ACTIONS(2609), - [sym__thematic_break] = ACTIONS(2609), - [sym__list_marker_minus] = ACTIONS(2609), - [sym__list_marker_plus] = ACTIONS(2609), - [sym__list_marker_star] = ACTIONS(2609), - [sym__list_marker_parenthesis] = ACTIONS(2609), - [sym__list_marker_dot] = ACTIONS(2609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2609), - [sym__list_marker_example] = ACTIONS(2609), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2609), - [sym__fenced_code_block_start_backtick] = ACTIONS(2609), - [sym_minus_metadata] = ACTIONS(2609), - [sym__pipe_table_start] = ACTIONS(2609), - [sym__fenced_div_start] = ACTIONS(2609), - [sym_ref_id_specifier] = ACTIONS(2609), - [sym__code_span_start] = ACTIONS(2609), - [sym__html_comment] = ACTIONS(2609), - [sym__autolink] = ACTIONS(2609), - [sym__highlight_span_start] = ACTIONS(2609), - [sym__insert_span_start] = ACTIONS(2609), - [sym__delete_span_start] = ACTIONS(2609), - [sym__edit_comment_span_start] = ACTIONS(2609), - [sym__single_quote_span_open] = ACTIONS(2609), - [sym__double_quote_span_open] = ACTIONS(2609), - [sym__shortcode_open_escaped] = ACTIONS(2609), - [sym__shortcode_open] = ACTIONS(2609), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2609), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2609), - [sym__cite_author_in_text] = ACTIONS(2609), - [sym__cite_suppress_author] = ACTIONS(2609), - [sym__strikeout_open] = ACTIONS(2609), - [sym__subscript_open] = ACTIONS(2609), - [sym__superscript_open] = ACTIONS(2609), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2609), - [sym__strong_emphasis_open_underscore] = ACTIONS(2609), - [sym__emphasis_open_star] = ACTIONS(2609), - [sym__emphasis_open_underscore] = ACTIONS(2609), - [sym_inline_note_reference] = ACTIONS(2609), - [sym_html_element] = ACTIONS(2609), - [sym__pandoc_line_break] = ACTIONS(2609), + [STATE(559)] = { + [sym__inlines] = STATE(4114), + [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(2931), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3331), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(544)] = { - [sym__inlines] = STATE(4112), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(560)] = { + [sym__inlines] = STATE(4116), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3341), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3335), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(545)] = { - [sym__inlines] = STATE(4114), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(561)] = { + [sym__inlines] = STATE(4118), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3339), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), + }, + [STATE(562)] = { + [sym__atx_heading_content] = STATE(3190), + [sym__inlines] = STATE(3190), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(237), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(231), + [sym__eof] = ACTIONS(3341), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(563)] = { + [sym__inlines] = STATE(3468), + [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(2931), + [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(739), + [sym__inline_whitespace] = STATE(739), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3345), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(546)] = { - [sym__inlines] = STATE(4116), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(564)] = { + [sym__inlines] = STATE(3470), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(732), - [sym__inline_whitespace] = STATE(732), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3349), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(547)] = { - [sym__inlines] = STATE(4118), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(565)] = { + [sym__inlines] = STATE(3472), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(733), - [sym__inline_whitespace] = STATE(733), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(786), + [sym__inline_whitespace] = STATE(786), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3353), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(548)] = { - [anon_sym_COLON] = ACTIONS(2613), - [sym_entity_reference] = ACTIONS(2613), - [sym_numeric_character_reference] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_BANG_LBRACK] = ACTIONS(2613), - [anon_sym_DOLLAR] = ACTIONS(2615), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [aux_sym_pandoc_str_token1] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2613), - [sym__whitespace] = ACTIONS(2613), - [sym__line_ending] = ACTIONS(2613), - [sym__soft_line_ending] = ACTIONS(2613), - [sym__block_close] = ACTIONS(2613), - [sym__block_quote_start] = ACTIONS(2613), - [sym_atx_h1_marker] = ACTIONS(2613), - [sym_atx_h2_marker] = ACTIONS(2613), - [sym_atx_h3_marker] = ACTIONS(2613), - [sym_atx_h4_marker] = ACTIONS(2613), - [sym_atx_h5_marker] = ACTIONS(2613), - [sym_atx_h6_marker] = ACTIONS(2613), - [sym__thematic_break] = ACTIONS(2613), - [sym__list_marker_minus] = ACTIONS(2613), - [sym__list_marker_plus] = ACTIONS(2613), - [sym__list_marker_star] = ACTIONS(2613), - [sym__list_marker_parenthesis] = ACTIONS(2613), - [sym__list_marker_dot] = ACTIONS(2613), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2613), - [sym__list_marker_example] = ACTIONS(2613), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2613), - [sym__fenced_code_block_start_backtick] = ACTIONS(2613), - [sym_minus_metadata] = ACTIONS(2613), - [sym__pipe_table_start] = ACTIONS(2613), - [sym__fenced_div_start] = ACTIONS(2613), - [sym_ref_id_specifier] = ACTIONS(2613), - [sym__code_span_start] = ACTIONS(2613), - [sym__html_comment] = ACTIONS(2613), - [sym__autolink] = ACTIONS(2613), - [sym__highlight_span_start] = ACTIONS(2613), - [sym__insert_span_start] = ACTIONS(2613), - [sym__delete_span_start] = ACTIONS(2613), - [sym__edit_comment_span_start] = ACTIONS(2613), - [sym__single_quote_span_open] = ACTIONS(2613), - [sym__double_quote_span_open] = ACTIONS(2613), - [sym__shortcode_open_escaped] = ACTIONS(2613), - [sym__shortcode_open] = ACTIONS(2613), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2613), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2613), - [sym__cite_author_in_text] = ACTIONS(2613), - [sym__cite_suppress_author] = ACTIONS(2613), - [sym__strikeout_open] = ACTIONS(2613), - [sym__subscript_open] = ACTIONS(2613), - [sym__superscript_open] = ACTIONS(2613), - [sym__inline_note_start_token] = ACTIONS(2613), - [sym__strong_emphasis_open_star] = ACTIONS(2613), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2613), - [sym__emphasis_open_underscore] = ACTIONS(2613), - [sym_inline_note_reference] = ACTIONS(2613), - [sym_html_element] = ACTIONS(2613), - [sym__pandoc_line_break] = ACTIONS(2613), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(549)] = { - [anon_sym_COLON] = ACTIONS(2617), - [sym_entity_reference] = ACTIONS(2617), - [sym_numeric_character_reference] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_BANG_LBRACK] = ACTIONS(2617), - [anon_sym_DOLLAR] = ACTIONS(2619), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [aux_sym_pandoc_str_token1] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2617), - [sym__whitespace] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2617), - [sym__soft_line_ending] = ACTIONS(2617), - [sym__block_close] = ACTIONS(2617), - [sym__block_quote_start] = ACTIONS(2617), - [sym_atx_h1_marker] = ACTIONS(2617), - [sym_atx_h2_marker] = ACTIONS(2617), - [sym_atx_h3_marker] = ACTIONS(2617), - [sym_atx_h4_marker] = ACTIONS(2617), - [sym_atx_h5_marker] = ACTIONS(2617), - [sym_atx_h6_marker] = ACTIONS(2617), - [sym__thematic_break] = ACTIONS(2617), - [sym__list_marker_minus] = ACTIONS(2617), - [sym__list_marker_plus] = ACTIONS(2617), - [sym__list_marker_star] = ACTIONS(2617), - [sym__list_marker_parenthesis] = ACTIONS(2617), - [sym__list_marker_dot] = ACTIONS(2617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2617), - [sym__list_marker_example] = ACTIONS(2617), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2617), - [sym__fenced_code_block_start_backtick] = ACTIONS(2617), - [sym_minus_metadata] = ACTIONS(2617), - [sym__pipe_table_start] = ACTIONS(2617), - [sym__fenced_div_start] = ACTIONS(2617), - [sym_ref_id_specifier] = ACTIONS(2617), - [sym__code_span_start] = ACTIONS(2617), - [sym__html_comment] = ACTIONS(2617), - [sym__autolink] = ACTIONS(2617), - [sym__highlight_span_start] = ACTIONS(2617), - [sym__insert_span_start] = ACTIONS(2617), - [sym__delete_span_start] = ACTIONS(2617), - [sym__edit_comment_span_start] = ACTIONS(2617), - [sym__single_quote_span_open] = ACTIONS(2617), - [sym__double_quote_span_open] = ACTIONS(2617), - [sym__shortcode_open_escaped] = ACTIONS(2617), - [sym__shortcode_open] = ACTIONS(2617), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2617), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2617), - [sym__cite_author_in_text] = ACTIONS(2617), - [sym__cite_suppress_author] = ACTIONS(2617), - [sym__strikeout_open] = ACTIONS(2617), - [sym__subscript_open] = ACTIONS(2617), - [sym__superscript_open] = ACTIONS(2617), - [sym__inline_note_start_token] = ACTIONS(2617), - [sym__strong_emphasis_open_star] = ACTIONS(2617), - [sym__strong_emphasis_open_underscore] = ACTIONS(2617), - [sym__emphasis_open_star] = ACTIONS(2617), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2617), - [sym_html_element] = ACTIONS(2617), - [sym__pandoc_line_break] = ACTIONS(2617), - }, - [STATE(550)] = { - [sym__inlines] = STATE(3468), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(566)] = { + [sym__inlines] = STATE(3474), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), + [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(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3357), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(551)] = { - [sym__inlines] = STATE(3470), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(567)] = { + [sym__inlines] = STATE(3536), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(743), - [sym__inline_whitespace] = STATE(743), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3361), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(552)] = { - [sym__inlines] = STATE(3472), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(568)] = { + [sym__inlines] = STATE(3538), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(744), - [sym__inline_whitespace] = STATE(744), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3365), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(553)] = { - [sym__inlines] = STATE(3474), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(569)] = { + [sym__inlines] = STATE(3540), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(745), - [sym__inline_whitespace] = STATE(745), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(750), + [sym__inline_whitespace] = STATE(750), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3369), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(554)] = { - [anon_sym_COLON] = ACTIONS(2621), - [sym_entity_reference] = ACTIONS(2621), - [sym_numeric_character_reference] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_BANG_LBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [aux_sym_pandoc_str_token1] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2621), - [sym__whitespace] = ACTIONS(2621), - [sym__line_ending] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2621), - [sym__block_close] = ACTIONS(2621), - [sym__block_quote_start] = ACTIONS(2621), - [sym_atx_h1_marker] = ACTIONS(2621), - [sym_atx_h2_marker] = ACTIONS(2621), - [sym_atx_h3_marker] = ACTIONS(2621), - [sym_atx_h4_marker] = ACTIONS(2621), - [sym_atx_h5_marker] = ACTIONS(2621), - [sym_atx_h6_marker] = ACTIONS(2621), - [sym__thematic_break] = ACTIONS(2621), - [sym__list_marker_minus] = ACTIONS(2621), - [sym__list_marker_plus] = ACTIONS(2621), - [sym__list_marker_star] = ACTIONS(2621), - [sym__list_marker_parenthesis] = ACTIONS(2621), - [sym__list_marker_dot] = ACTIONS(2621), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_example] = ACTIONS(2621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2621), - [sym__fenced_code_block_start_backtick] = ACTIONS(2621), - [sym_minus_metadata] = ACTIONS(2621), - [sym__pipe_table_start] = ACTIONS(2621), - [sym__fenced_div_start] = ACTIONS(2621), - [sym_ref_id_specifier] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(2621), - [sym__html_comment] = ACTIONS(2621), - [sym__autolink] = ACTIONS(2621), - [sym__highlight_span_start] = ACTIONS(2621), - [sym__insert_span_start] = ACTIONS(2621), - [sym__delete_span_start] = ACTIONS(2621), - [sym__edit_comment_span_start] = ACTIONS(2621), - [sym__single_quote_span_open] = ACTIONS(2621), - [sym__double_quote_span_open] = ACTIONS(2621), - [sym__shortcode_open_escaped] = ACTIONS(2621), - [sym__shortcode_open] = ACTIONS(2621), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2621), - [sym__cite_author_in_text] = ACTIONS(2621), - [sym__cite_suppress_author] = ACTIONS(2621), - [sym__strikeout_open] = ACTIONS(2621), - [sym__subscript_open] = ACTIONS(2621), - [sym__superscript_open] = ACTIONS(2621), - [sym__inline_note_start_token] = ACTIONS(2621), - [sym__strong_emphasis_open_star] = ACTIONS(2621), - [sym__strong_emphasis_open_underscore] = ACTIONS(2621), - [sym__emphasis_open_star] = ACTIONS(2621), - [sym__emphasis_open_underscore] = ACTIONS(2621), - [sym_inline_note_reference] = ACTIONS(2621), - [sym_html_element] = ACTIONS(2621), - [sym__pandoc_line_break] = ACTIONS(2621), - }, - [STATE(555)] = { - [anon_sym_COLON] = ACTIONS(2625), - [sym_entity_reference] = ACTIONS(2625), - [sym_numeric_character_reference] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_BANG_LBRACK] = ACTIONS(2625), - [anon_sym_DOLLAR] = ACTIONS(2627), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [aux_sym_pandoc_str_token1] = ACTIONS(2627), - [anon_sym_PIPE] = ACTIONS(2625), - [sym__whitespace] = ACTIONS(2625), - [sym__line_ending] = ACTIONS(2625), - [sym__soft_line_ending] = ACTIONS(2625), - [sym__block_close] = ACTIONS(2625), - [sym__block_quote_start] = ACTIONS(2625), - [sym_atx_h1_marker] = ACTIONS(2625), - [sym_atx_h2_marker] = ACTIONS(2625), - [sym_atx_h3_marker] = ACTIONS(2625), - [sym_atx_h4_marker] = ACTIONS(2625), - [sym_atx_h5_marker] = ACTIONS(2625), - [sym_atx_h6_marker] = ACTIONS(2625), - [sym__thematic_break] = ACTIONS(2625), - [sym__list_marker_minus] = ACTIONS(2625), - [sym__list_marker_plus] = ACTIONS(2625), - [sym__list_marker_star] = ACTIONS(2625), - [sym__list_marker_parenthesis] = ACTIONS(2625), - [sym__list_marker_dot] = ACTIONS(2625), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2625), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2625), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2625), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2625), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2625), - [sym__list_marker_example] = ACTIONS(2625), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2625), - [sym__fenced_code_block_start_backtick] = ACTIONS(2625), - [sym_minus_metadata] = ACTIONS(2625), - [sym__pipe_table_start] = ACTIONS(2625), - [sym__fenced_div_start] = ACTIONS(2625), - [sym_ref_id_specifier] = ACTIONS(2625), - [sym__code_span_start] = ACTIONS(2625), - [sym__html_comment] = ACTIONS(2625), - [sym__autolink] = ACTIONS(2625), - [sym__highlight_span_start] = ACTIONS(2625), - [sym__insert_span_start] = ACTIONS(2625), - [sym__delete_span_start] = ACTIONS(2625), - [sym__edit_comment_span_start] = ACTIONS(2625), - [sym__single_quote_span_open] = ACTIONS(2625), - [sym__double_quote_span_open] = ACTIONS(2625), - [sym__shortcode_open_escaped] = ACTIONS(2625), - [sym__shortcode_open] = ACTIONS(2625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2625), - [sym__cite_author_in_text] = ACTIONS(2625), - [sym__cite_suppress_author] = ACTIONS(2625), - [sym__strikeout_open] = ACTIONS(2625), - [sym__subscript_open] = ACTIONS(2625), - [sym__superscript_open] = ACTIONS(2625), - [sym__inline_note_start_token] = ACTIONS(2625), - [sym__strong_emphasis_open_star] = ACTIONS(2625), - [sym__strong_emphasis_open_underscore] = ACTIONS(2625), - [sym__emphasis_open_star] = ACTIONS(2625), - [sym__emphasis_open_underscore] = ACTIONS(2625), - [sym_inline_note_reference] = ACTIONS(2625), - [sym_html_element] = ACTIONS(2625), - [sym__pandoc_line_break] = ACTIONS(2625), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(556)] = { - [sym__inlines] = STATE(3536), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [STATE(570)] = { + [sym__inlines] = STATE(3542), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(752), - [sym__inline_whitespace] = STATE(752), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(751), + [sym__inline_whitespace] = STATE(751), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3373), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(557)] = { - [sym__inlines] = STATE(3538), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(753), - [sym__inline_whitespace] = STATE(753), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3377), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(558)] = { - [sym__inlines] = STATE(3540), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(754), - [sym__inline_whitespace] = STATE(754), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3381), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(559)] = { - [sym__inlines] = STATE(3542), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), - [sym__line] = STATE(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(755), - [sym__inline_whitespace] = STATE(755), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3385), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(560)] = { - [anon_sym_COLON] = 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_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_line_break] = ACTIONS(2629), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(561)] = { - [anon_sym_COLON] = ACTIONS(2633), - [sym_entity_reference] = ACTIONS(2633), - [sym_numeric_character_reference] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_BANG_LBRACK] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2635), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [aux_sym_pandoc_str_token1] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2633), - [sym__whitespace] = ACTIONS(2633), - [sym__line_ending] = ACTIONS(2633), - [sym__soft_line_ending] = ACTIONS(2633), - [sym__block_close] = ACTIONS(2633), - [sym__block_quote_start] = ACTIONS(2633), - [sym_atx_h1_marker] = ACTIONS(2633), - [sym_atx_h2_marker] = ACTIONS(2633), - [sym_atx_h3_marker] = ACTIONS(2633), - [sym_atx_h4_marker] = ACTIONS(2633), - [sym_atx_h5_marker] = ACTIONS(2633), - [sym_atx_h6_marker] = ACTIONS(2633), - [sym__thematic_break] = ACTIONS(2633), - [sym__list_marker_minus] = ACTIONS(2633), - [sym__list_marker_plus] = ACTIONS(2633), - [sym__list_marker_star] = ACTIONS(2633), - [sym__list_marker_parenthesis] = ACTIONS(2633), - [sym__list_marker_dot] = ACTIONS(2633), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_example] = ACTIONS(2633), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2633), - [sym__fenced_code_block_start_backtick] = ACTIONS(2633), - [sym_minus_metadata] = ACTIONS(2633), - [sym__pipe_table_start] = ACTIONS(2633), - [sym__fenced_div_start] = ACTIONS(2633), - [sym_ref_id_specifier] = ACTIONS(2633), - [sym__code_span_start] = ACTIONS(2633), - [sym__html_comment] = ACTIONS(2633), - [sym__autolink] = ACTIONS(2633), - [sym__highlight_span_start] = ACTIONS(2633), - [sym__insert_span_start] = ACTIONS(2633), - [sym__delete_span_start] = ACTIONS(2633), - [sym__edit_comment_span_start] = ACTIONS(2633), - [sym__single_quote_span_open] = ACTIONS(2633), - [sym__double_quote_span_open] = ACTIONS(2633), - [sym__shortcode_open_escaped] = ACTIONS(2633), - [sym__shortcode_open] = ACTIONS(2633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2633), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2633), - [sym__cite_author_in_text] = ACTIONS(2633), - [sym__cite_suppress_author] = ACTIONS(2633), - [sym__strikeout_open] = ACTIONS(2633), - [sym__subscript_open] = ACTIONS(2633), - [sym__superscript_open] = ACTIONS(2633), - [sym__inline_note_start_token] = ACTIONS(2633), - [sym__strong_emphasis_open_star] = ACTIONS(2633), - [sym__strong_emphasis_open_underscore] = ACTIONS(2633), - [sym__emphasis_open_star] = ACTIONS(2633), - [sym__emphasis_open_underscore] = ACTIONS(2633), - [sym_inline_note_reference] = ACTIONS(2633), - [sym_html_element] = ACTIONS(2633), - [sym__pandoc_line_break] = ACTIONS(2633), + [STATE(571)] = { + [sym__atx_heading_content] = STATE(3201), + [sym__inlines] = STATE(3201), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(459), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3375), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(562)] = { + [STATE(572)] = { [sym__inlines] = STATE(3604), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(763), - [sym__inline_whitespace] = STATE(763), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3389), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(760), + [sym__inline_whitespace] = STATE(760), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3379), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(563)] = { + [STATE(573)] = { [sym__inlines] = STATE(3606), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(764), - [sym__inline_whitespace] = STATE(764), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3393), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(761), + [sym__inline_whitespace] = STATE(761), + [sym_entity_reference] = ACTIONS(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3383), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(564)] = { + [STATE(574)] = { [sym__inlines] = STATE(3608), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(765), - [sym__inline_whitespace] = STATE(765), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3397), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3387), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, - [STATE(565)] = { + [STATE(575)] = { [sym__inlines] = STATE(3610), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(766), - [sym__inline_whitespace] = STATE(766), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), - [aux_sym_insert_token1] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3401), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), - }, - [STATE(566)] = { - [anon_sym_COLON] = ACTIONS(2637), - [sym_entity_reference] = ACTIONS(2637), - [sym_numeric_character_reference] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_BANG_LBRACK] = ACTIONS(2637), - [anon_sym_DOLLAR] = ACTIONS(2639), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [aux_sym_pandoc_str_token1] = ACTIONS(2639), - [anon_sym_PIPE] = ACTIONS(2637), - [sym__whitespace] = ACTIONS(2637), - [sym__line_ending] = ACTIONS(2637), - [sym__soft_line_ending] = ACTIONS(2637), - [sym__block_close] = ACTIONS(2637), - [sym__block_quote_start] = ACTIONS(2637), - [sym_atx_h1_marker] = ACTIONS(2637), - [sym_atx_h2_marker] = ACTIONS(2637), - [sym_atx_h3_marker] = ACTIONS(2637), - [sym_atx_h4_marker] = ACTIONS(2637), - [sym_atx_h5_marker] = ACTIONS(2637), - [sym_atx_h6_marker] = ACTIONS(2637), - [sym__thematic_break] = ACTIONS(2637), - [sym__list_marker_minus] = ACTIONS(2637), - [sym__list_marker_plus] = ACTIONS(2637), - [sym__list_marker_star] = ACTIONS(2637), - [sym__list_marker_parenthesis] = ACTIONS(2637), - [sym__list_marker_dot] = ACTIONS(2637), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2637), - [sym__list_marker_example] = ACTIONS(2637), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2637), - [sym__fenced_code_block_start_backtick] = ACTIONS(2637), - [sym_minus_metadata] = ACTIONS(2637), - [sym__pipe_table_start] = ACTIONS(2637), - [sym__fenced_div_start] = ACTIONS(2637), - [sym_ref_id_specifier] = ACTIONS(2637), - [sym__code_span_start] = ACTIONS(2637), - [sym__html_comment] = ACTIONS(2637), - [sym__autolink] = ACTIONS(2637), - [sym__highlight_span_start] = ACTIONS(2637), - [sym__insert_span_start] = ACTIONS(2637), - [sym__delete_span_start] = ACTIONS(2637), - [sym__edit_comment_span_start] = ACTIONS(2637), - [sym__single_quote_span_open] = ACTIONS(2637), - [sym__double_quote_span_open] = ACTIONS(2637), - [sym__shortcode_open_escaped] = ACTIONS(2637), - [sym__shortcode_open] = ACTIONS(2637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2637), - [sym__cite_author_in_text] = ACTIONS(2637), - [sym__cite_suppress_author] = ACTIONS(2637), - [sym__strikeout_open] = ACTIONS(2637), - [sym__subscript_open] = ACTIONS(2637), - [sym__superscript_open] = ACTIONS(2637), - [sym__inline_note_start_token] = ACTIONS(2637), - [sym__strong_emphasis_open_star] = ACTIONS(2637), - [sym__strong_emphasis_open_underscore] = ACTIONS(2637), - [sym__emphasis_open_star] = ACTIONS(2637), - [sym__emphasis_open_underscore] = ACTIONS(2637), - [sym_inline_note_reference] = ACTIONS(2637), - [sym_html_element] = ACTIONS(2637), - [sym__pandoc_line_break] = ACTIONS(2637), - }, - [STATE(567)] = { - [anon_sym_COLON] = ACTIONS(2641), - [sym_entity_reference] = ACTIONS(2641), - [sym_numeric_character_reference] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_BANG_LBRACK] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [aux_sym_pandoc_str_token1] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2641), - [sym__whitespace] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2641), - [sym__soft_line_ending] = ACTIONS(2641), - [sym__block_close] = ACTIONS(2641), - [sym__block_quote_start] = ACTIONS(2641), - [sym_atx_h1_marker] = ACTIONS(2641), - [sym_atx_h2_marker] = ACTIONS(2641), - [sym_atx_h3_marker] = ACTIONS(2641), - [sym_atx_h4_marker] = ACTIONS(2641), - [sym_atx_h5_marker] = ACTIONS(2641), - [sym_atx_h6_marker] = ACTIONS(2641), - [sym__thematic_break] = ACTIONS(2641), - [sym__list_marker_minus] = ACTIONS(2641), - [sym__list_marker_plus] = ACTIONS(2641), - [sym__list_marker_star] = ACTIONS(2641), - [sym__list_marker_parenthesis] = ACTIONS(2641), - [sym__list_marker_dot] = ACTIONS(2641), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2641), - [sym__list_marker_example] = ACTIONS(2641), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2641), - [sym__fenced_code_block_start_backtick] = ACTIONS(2641), - [sym_minus_metadata] = ACTIONS(2641), - [sym__pipe_table_start] = ACTIONS(2641), - [sym__fenced_div_start] = ACTIONS(2641), - [sym_ref_id_specifier] = ACTIONS(2641), - [sym__code_span_start] = ACTIONS(2641), - [sym__html_comment] = ACTIONS(2641), - [sym__autolink] = ACTIONS(2641), - [sym__highlight_span_start] = ACTIONS(2641), - [sym__insert_span_start] = ACTIONS(2641), - [sym__delete_span_start] = ACTIONS(2641), - [sym__edit_comment_span_start] = ACTIONS(2641), - [sym__single_quote_span_open] = ACTIONS(2641), - [sym__double_quote_span_open] = ACTIONS(2641), - [sym__shortcode_open_escaped] = ACTIONS(2641), - [sym__shortcode_open] = ACTIONS(2641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2641), - [sym__cite_author_in_text] = ACTIONS(2641), - [sym__cite_suppress_author] = ACTIONS(2641), - [sym__strikeout_open] = ACTIONS(2641), - [sym__subscript_open] = ACTIONS(2641), - [sym__superscript_open] = ACTIONS(2641), - [sym__inline_note_start_token] = ACTIONS(2641), - [sym__strong_emphasis_open_star] = ACTIONS(2641), - [sym__strong_emphasis_open_underscore] = ACTIONS(2641), - [sym__emphasis_open_star] = ACTIONS(2641), - [sym__emphasis_open_underscore] = ACTIONS(2641), - [sym_inline_note_reference] = ACTIONS(2641), - [sym_html_element] = ACTIONS(2641), - [sym__pandoc_line_break] = ACTIONS(2641), - }, - [STATE(568)] = { - [anon_sym_COLON] = ACTIONS(2645), - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [sym__whitespace] = ACTIONS(2645), - [sym__line_ending] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2645), - [sym__block_close] = ACTIONS(2645), - [sym__block_quote_start] = ACTIONS(2645), - [sym_atx_h1_marker] = ACTIONS(2645), - [sym_atx_h2_marker] = ACTIONS(2645), - [sym_atx_h3_marker] = ACTIONS(2645), - [sym_atx_h4_marker] = ACTIONS(2645), - [sym_atx_h5_marker] = ACTIONS(2645), - [sym_atx_h6_marker] = ACTIONS(2645), - [sym__thematic_break] = ACTIONS(2645), - [sym__list_marker_minus] = ACTIONS(2645), - [sym__list_marker_plus] = ACTIONS(2645), - [sym__list_marker_star] = ACTIONS(2645), - [sym__list_marker_parenthesis] = ACTIONS(2645), - [sym__list_marker_dot] = ACTIONS(2645), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_example] = ACTIONS(2645), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2645), - [sym__fenced_code_block_start_backtick] = ACTIONS(2645), - [sym_minus_metadata] = ACTIONS(2645), - [sym__pipe_table_start] = ACTIONS(2645), - [sym__fenced_div_start] = ACTIONS(2645), - [sym_ref_id_specifier] = ACTIONS(2645), - [sym__code_span_start] = ACTIONS(2645), - [sym__html_comment] = ACTIONS(2645), - [sym__autolink] = ACTIONS(2645), - [sym__highlight_span_start] = ACTIONS(2645), - [sym__insert_span_start] = ACTIONS(2645), - [sym__delete_span_start] = ACTIONS(2645), - [sym__edit_comment_span_start] = ACTIONS(2645), - [sym__single_quote_span_open] = ACTIONS(2645), - [sym__double_quote_span_open] = ACTIONS(2645), - [sym__shortcode_open_escaped] = ACTIONS(2645), - [sym__shortcode_open] = ACTIONS(2645), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2645), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2645), - [sym__cite_author_in_text] = ACTIONS(2645), - [sym__cite_suppress_author] = ACTIONS(2645), - [sym__strikeout_open] = ACTIONS(2645), - [sym__subscript_open] = ACTIONS(2645), - [sym__superscript_open] = ACTIONS(2645), - [sym__inline_note_start_token] = ACTIONS(2645), - [sym__strong_emphasis_open_star] = ACTIONS(2645), - [sym__strong_emphasis_open_underscore] = ACTIONS(2645), - [sym__emphasis_open_star] = ACTIONS(2645), - [sym__emphasis_open_underscore] = ACTIONS(2645), - [sym_inline_note_reference] = ACTIONS(2645), - [sym_html_element] = ACTIONS(2645), - [sym__pandoc_line_break] = ACTIONS(2645), - }, - [STATE(569)] = { - [anon_sym_COLON] = ACTIONS(2649), - [sym_entity_reference] = ACTIONS(2649), - [sym_numeric_character_reference] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_BANG_LBRACK] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [aux_sym_pandoc_str_token1] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2649), - [sym__whitespace] = ACTIONS(2649), - [sym__line_ending] = ACTIONS(2649), - [sym__soft_line_ending] = ACTIONS(2649), - [sym__block_close] = ACTIONS(2649), - [sym__block_quote_start] = ACTIONS(2649), - [sym_atx_h1_marker] = ACTIONS(2649), - [sym_atx_h2_marker] = ACTIONS(2649), - [sym_atx_h3_marker] = ACTIONS(2649), - [sym_atx_h4_marker] = ACTIONS(2649), - [sym_atx_h5_marker] = ACTIONS(2649), - [sym_atx_h6_marker] = ACTIONS(2649), - [sym__thematic_break] = ACTIONS(2649), - [sym__list_marker_minus] = ACTIONS(2649), - [sym__list_marker_plus] = ACTIONS(2649), - [sym__list_marker_star] = ACTIONS(2649), - [sym__list_marker_parenthesis] = ACTIONS(2649), - [sym__list_marker_dot] = ACTIONS(2649), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2649), - [sym__list_marker_example] = ACTIONS(2649), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2649), - [sym__fenced_code_block_start_backtick] = ACTIONS(2649), - [sym_minus_metadata] = ACTIONS(2649), - [sym__pipe_table_start] = ACTIONS(2649), - [sym__fenced_div_start] = ACTIONS(2649), - [sym_ref_id_specifier] = ACTIONS(2649), - [sym__code_span_start] = ACTIONS(2649), - [sym__html_comment] = ACTIONS(2649), - [sym__autolink] = ACTIONS(2649), - [sym__highlight_span_start] = ACTIONS(2649), - [sym__insert_span_start] = ACTIONS(2649), - [sym__delete_span_start] = ACTIONS(2649), - [sym__edit_comment_span_start] = ACTIONS(2649), - [sym__single_quote_span_open] = ACTIONS(2649), - [sym__double_quote_span_open] = ACTIONS(2649), - [sym__shortcode_open_escaped] = ACTIONS(2649), - [sym__shortcode_open] = ACTIONS(2649), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2649), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2649), - [sym__cite_author_in_text] = ACTIONS(2649), - [sym__cite_suppress_author] = ACTIONS(2649), - [sym__strikeout_open] = ACTIONS(2649), - [sym__subscript_open] = ACTIONS(2649), - [sym__superscript_open] = ACTIONS(2649), - [sym__inline_note_start_token] = ACTIONS(2649), - [sym__strong_emphasis_open_star] = ACTIONS(2649), - [sym__strong_emphasis_open_underscore] = ACTIONS(2649), - [sym__emphasis_open_star] = ACTIONS(2649), - [sym__emphasis_open_underscore] = ACTIONS(2649), - [sym_inline_note_reference] = ACTIONS(2649), - [sym_html_element] = ACTIONS(2649), - [sym__pandoc_line_break] = ACTIONS(2649), - }, - [STATE(570)] = { - [anon_sym_COLON] = ACTIONS(2653), - [sym_entity_reference] = ACTIONS(2653), - [sym_numeric_character_reference] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_BANG_LBRACK] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [aux_sym_pandoc_str_token1] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2653), - [sym__whitespace] = ACTIONS(2653), - [sym__line_ending] = ACTIONS(2653), - [sym__soft_line_ending] = ACTIONS(2653), - [sym__block_close] = ACTIONS(2653), - [sym__block_quote_start] = ACTIONS(2653), - [sym_atx_h1_marker] = ACTIONS(2653), - [sym_atx_h2_marker] = ACTIONS(2653), - [sym_atx_h3_marker] = ACTIONS(2653), - [sym_atx_h4_marker] = ACTIONS(2653), - [sym_atx_h5_marker] = ACTIONS(2653), - [sym_atx_h6_marker] = ACTIONS(2653), - [sym__thematic_break] = ACTIONS(2653), - [sym__list_marker_minus] = ACTIONS(2653), - [sym__list_marker_plus] = ACTIONS(2653), - [sym__list_marker_star] = ACTIONS(2653), - [sym__list_marker_parenthesis] = ACTIONS(2653), - [sym__list_marker_dot] = ACTIONS(2653), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), - [sym__list_marker_example] = ACTIONS(2653), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), - [sym__fenced_code_block_start_backtick] = ACTIONS(2653), - [sym_minus_metadata] = ACTIONS(2653), - [sym__pipe_table_start] = ACTIONS(2653), - [sym__fenced_div_start] = ACTIONS(2653), - [sym_ref_id_specifier] = ACTIONS(2653), - [sym__code_span_start] = ACTIONS(2653), - [sym__html_comment] = ACTIONS(2653), - [sym__autolink] = ACTIONS(2653), - [sym__highlight_span_start] = ACTIONS(2653), - [sym__insert_span_start] = ACTIONS(2653), - [sym__delete_span_start] = ACTIONS(2653), - [sym__edit_comment_span_start] = ACTIONS(2653), - [sym__single_quote_span_open] = ACTIONS(2653), - [sym__double_quote_span_open] = ACTIONS(2653), - [sym__shortcode_open_escaped] = ACTIONS(2653), - [sym__shortcode_open] = ACTIONS(2653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), - [sym__cite_author_in_text] = ACTIONS(2653), - [sym__cite_suppress_author] = ACTIONS(2653), - [sym__strikeout_open] = ACTIONS(2653), - [sym__subscript_open] = ACTIONS(2653), - [sym__superscript_open] = ACTIONS(2653), - [sym__inline_note_start_token] = ACTIONS(2653), - [sym__strong_emphasis_open_star] = ACTIONS(2653), - [sym__strong_emphasis_open_underscore] = ACTIONS(2653), - [sym__emphasis_open_star] = ACTIONS(2653), - [sym__emphasis_open_underscore] = ACTIONS(2653), - [sym_inline_note_reference] = ACTIONS(2653), - [sym_html_element] = ACTIONS(2653), - [sym__pandoc_line_break] = ACTIONS(2653), - }, - [STATE(571)] = { - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [sym__whitespace] = ACTIONS(2657), - [sym__line_ending] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2657), - [sym__block_close] = ACTIONS(2657), - [sym__block_quote_start] = ACTIONS(2657), - [sym_atx_h1_marker] = ACTIONS(2657), - [sym_atx_h2_marker] = ACTIONS(2657), - [sym_atx_h3_marker] = ACTIONS(2657), - [sym_atx_h4_marker] = ACTIONS(2657), - [sym_atx_h5_marker] = ACTIONS(2657), - [sym_atx_h6_marker] = ACTIONS(2657), - [sym__thematic_break] = ACTIONS(2657), - [sym__list_marker_minus] = ACTIONS(2657), - [sym__list_marker_plus] = ACTIONS(2657), - [sym__list_marker_star] = ACTIONS(2657), - [sym__list_marker_parenthesis] = ACTIONS(2657), - [sym__list_marker_dot] = ACTIONS(2657), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_example] = ACTIONS(2657), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), - [sym__fenced_code_block_start_backtick] = ACTIONS(2657), - [sym_minus_metadata] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), - }, - [STATE(572)] = { - [anon_sym_COLON] = ACTIONS(2661), - [sym_entity_reference] = ACTIONS(2661), - [sym_numeric_character_reference] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_BANG_LBRACK] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(2663), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [aux_sym_pandoc_str_token1] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2661), - [sym__whitespace] = ACTIONS(2661), - [sym__line_ending] = ACTIONS(2661), - [sym__soft_line_ending] = ACTIONS(2661), - [sym__block_close] = ACTIONS(2661), - [sym__block_quote_start] = ACTIONS(2661), - [sym_atx_h1_marker] = ACTIONS(2661), - [sym_atx_h2_marker] = ACTIONS(2661), - [sym_atx_h3_marker] = ACTIONS(2661), - [sym_atx_h4_marker] = ACTIONS(2661), - [sym_atx_h5_marker] = ACTIONS(2661), - [sym_atx_h6_marker] = ACTIONS(2661), - [sym__thematic_break] = ACTIONS(2661), - [sym__list_marker_minus] = ACTIONS(2661), - [sym__list_marker_plus] = ACTIONS(2661), - [sym__list_marker_star] = ACTIONS(2661), - [sym__list_marker_parenthesis] = ACTIONS(2661), - [sym__list_marker_dot] = ACTIONS(2661), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), - [sym__list_marker_example] = ACTIONS(2661), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), - [sym__fenced_code_block_start_backtick] = ACTIONS(2661), - [sym_minus_metadata] = ACTIONS(2661), - [sym__pipe_table_start] = ACTIONS(2661), - [sym__fenced_div_start] = ACTIONS(2661), - [sym_ref_id_specifier] = ACTIONS(2661), - [sym__code_span_start] = ACTIONS(2661), - [sym__html_comment] = ACTIONS(2661), - [sym__autolink] = ACTIONS(2661), - [sym__highlight_span_start] = ACTIONS(2661), - [sym__insert_span_start] = ACTIONS(2661), - [sym__delete_span_start] = ACTIONS(2661), - [sym__edit_comment_span_start] = ACTIONS(2661), - [sym__single_quote_span_open] = ACTIONS(2661), - [sym__double_quote_span_open] = ACTIONS(2661), - [sym__shortcode_open_escaped] = ACTIONS(2661), - [sym__shortcode_open] = ACTIONS(2661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), - [sym__cite_author_in_text] = ACTIONS(2661), - [sym__cite_suppress_author] = ACTIONS(2661), - [sym__strikeout_open] = ACTIONS(2661), - [sym__subscript_open] = ACTIONS(2661), - [sym__superscript_open] = ACTIONS(2661), - [sym__inline_note_start_token] = ACTIONS(2661), - [sym__strong_emphasis_open_star] = ACTIONS(2661), - [sym__strong_emphasis_open_underscore] = ACTIONS(2661), - [sym__emphasis_open_star] = ACTIONS(2661), - [sym__emphasis_open_underscore] = ACTIONS(2661), - [sym_inline_note_reference] = ACTIONS(2661), - [sym_html_element] = ACTIONS(2661), - [sym__pandoc_line_break] = ACTIONS(2661), - }, - [STATE(573)] = { - [anon_sym_COLON] = ACTIONS(2665), - [sym_entity_reference] = ACTIONS(2665), - [sym_numeric_character_reference] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_BANG_LBRACK] = ACTIONS(2665), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [aux_sym_pandoc_str_token1] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2665), - [sym__whitespace] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2665), - [sym__soft_line_ending] = ACTIONS(2665), - [sym__block_close] = ACTIONS(2665), - [sym__block_quote_start] = ACTIONS(2665), - [sym_atx_h1_marker] = ACTIONS(2665), - [sym_atx_h2_marker] = ACTIONS(2665), - [sym_atx_h3_marker] = ACTIONS(2665), - [sym_atx_h4_marker] = ACTIONS(2665), - [sym_atx_h5_marker] = ACTIONS(2665), - [sym_atx_h6_marker] = ACTIONS(2665), - [sym__thematic_break] = ACTIONS(2665), - [sym__list_marker_minus] = ACTIONS(2665), - [sym__list_marker_plus] = ACTIONS(2665), - [sym__list_marker_star] = ACTIONS(2665), - [sym__list_marker_parenthesis] = ACTIONS(2665), - [sym__list_marker_dot] = ACTIONS(2665), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), - [sym__list_marker_example] = ACTIONS(2665), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), - [sym__fenced_code_block_start_backtick] = ACTIONS(2665), - [sym_minus_metadata] = ACTIONS(2665), - [sym__pipe_table_start] = ACTIONS(2665), - [sym__fenced_div_start] = ACTIONS(2665), - [sym_ref_id_specifier] = ACTIONS(2665), - [sym__code_span_start] = ACTIONS(2665), - [sym__html_comment] = ACTIONS(2665), - [sym__autolink] = ACTIONS(2665), - [sym__highlight_span_start] = ACTIONS(2665), - [sym__insert_span_start] = ACTIONS(2665), - [sym__delete_span_start] = ACTIONS(2665), - [sym__edit_comment_span_start] = ACTIONS(2665), - [sym__single_quote_span_open] = ACTIONS(2665), - [sym__double_quote_span_open] = ACTIONS(2665), - [sym__shortcode_open_escaped] = ACTIONS(2665), - [sym__shortcode_open] = ACTIONS(2665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), - [sym__cite_author_in_text] = ACTIONS(2665), - [sym__cite_suppress_author] = ACTIONS(2665), - [sym__strikeout_open] = ACTIONS(2665), - [sym__subscript_open] = ACTIONS(2665), - [sym__superscript_open] = ACTIONS(2665), - [sym__inline_note_start_token] = ACTIONS(2665), - [sym__strong_emphasis_open_star] = ACTIONS(2665), - [sym__strong_emphasis_open_underscore] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2665), - [sym__emphasis_open_underscore] = ACTIONS(2665), - [sym_inline_note_reference] = ACTIONS(2665), - [sym_html_element] = ACTIONS(2665), - [sym__pandoc_line_break] = ACTIONS(2665), - }, - [STATE(574)] = { - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [sym__whitespace] = ACTIONS(2669), - [sym__line_ending] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2669), - [sym__block_close] = ACTIONS(2669), - [sym__block_quote_start] = ACTIONS(2669), - [sym_atx_h1_marker] = ACTIONS(2669), - [sym_atx_h2_marker] = ACTIONS(2669), - [sym_atx_h3_marker] = ACTIONS(2669), - [sym_atx_h4_marker] = ACTIONS(2669), - [sym_atx_h5_marker] = ACTIONS(2669), - [sym_atx_h6_marker] = ACTIONS(2669), - [sym__thematic_break] = ACTIONS(2669), - [sym__list_marker_minus] = ACTIONS(2669), - [sym__list_marker_plus] = ACTIONS(2669), - [sym__list_marker_star] = ACTIONS(2669), - [sym__list_marker_parenthesis] = ACTIONS(2669), - [sym__list_marker_dot] = ACTIONS(2669), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_example] = ACTIONS(2669), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), - [sym__fenced_code_block_start_backtick] = ACTIONS(2669), - [sym_minus_metadata] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), - }, - [STATE(575)] = { - [anon_sym_COLON] = ACTIONS(2673), - [sym_entity_reference] = ACTIONS(2673), - [sym_numeric_character_reference] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_BANG_LBRACK] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2675), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [aux_sym_pandoc_str_token1] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(2673), - [sym__whitespace] = ACTIONS(2673), - [sym__line_ending] = ACTIONS(2673), - [sym__soft_line_ending] = ACTIONS(2673), - [sym__block_close] = ACTIONS(2673), - [sym__block_quote_start] = ACTIONS(2673), - [sym_atx_h1_marker] = ACTIONS(2673), - [sym_atx_h2_marker] = ACTIONS(2673), - [sym_atx_h3_marker] = ACTIONS(2673), - [sym_atx_h4_marker] = ACTIONS(2673), - [sym_atx_h5_marker] = ACTIONS(2673), - [sym_atx_h6_marker] = ACTIONS(2673), - [sym__thematic_break] = ACTIONS(2673), - [sym__list_marker_minus] = ACTIONS(2673), - [sym__list_marker_plus] = ACTIONS(2673), - [sym__list_marker_star] = ACTIONS(2673), - [sym__list_marker_parenthesis] = ACTIONS(2673), - [sym__list_marker_dot] = ACTIONS(2673), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), - [sym__list_marker_example] = ACTIONS(2673), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), - [sym__fenced_code_block_start_backtick] = ACTIONS(2673), - [sym_minus_metadata] = ACTIONS(2673), - [sym__pipe_table_start] = ACTIONS(2673), - [sym__fenced_div_start] = ACTIONS(2673), - [sym_ref_id_specifier] = ACTIONS(2673), - [sym__code_span_start] = ACTIONS(2673), - [sym__html_comment] = ACTIONS(2673), - [sym__autolink] = ACTIONS(2673), - [sym__highlight_span_start] = ACTIONS(2673), - [sym__insert_span_start] = ACTIONS(2673), - [sym__delete_span_start] = ACTIONS(2673), - [sym__edit_comment_span_start] = ACTIONS(2673), - [sym__single_quote_span_open] = ACTIONS(2673), - [sym__double_quote_span_open] = ACTIONS(2673), - [sym__shortcode_open_escaped] = ACTIONS(2673), - [sym__shortcode_open] = ACTIONS(2673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), - [sym__cite_author_in_text] = ACTIONS(2673), - [sym__cite_suppress_author] = ACTIONS(2673), - [sym__strikeout_open] = ACTIONS(2673), - [sym__subscript_open] = ACTIONS(2673), - [sym__superscript_open] = ACTIONS(2673), - [sym__inline_note_start_token] = ACTIONS(2673), - [sym__strong_emphasis_open_star] = ACTIONS(2673), - [sym__strong_emphasis_open_underscore] = ACTIONS(2673), - [sym__emphasis_open_star] = ACTIONS(2673), - [sym__emphasis_open_underscore] = ACTIONS(2673), - [sym_inline_note_reference] = ACTIONS(2673), - [sym_html_element] = ACTIONS(2673), - [sym__pandoc_line_break] = ACTIONS(2673), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), + [aux_sym_insert_token1] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), + [sym__whitespace] = ACTIONS(3391), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, [STATE(576)] = { - [anon_sym_COLON] = ACTIONS(2677), - [sym_entity_reference] = ACTIONS(2677), - [sym_numeric_character_reference] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_BANG_LBRACK] = ACTIONS(2677), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [aux_sym_pandoc_str_token1] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2677), - [sym__whitespace] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2677), - [sym__soft_line_ending] = ACTIONS(2677), - [sym__block_close] = ACTIONS(2677), - [sym__block_quote_start] = ACTIONS(2677), - [sym_atx_h1_marker] = ACTIONS(2677), - [sym_atx_h2_marker] = ACTIONS(2677), - [sym_atx_h3_marker] = ACTIONS(2677), - [sym_atx_h4_marker] = ACTIONS(2677), - [sym_atx_h5_marker] = ACTIONS(2677), - [sym_atx_h6_marker] = ACTIONS(2677), - [sym__thematic_break] = ACTIONS(2677), - [sym__list_marker_minus] = ACTIONS(2677), - [sym__list_marker_plus] = ACTIONS(2677), - [sym__list_marker_star] = ACTIONS(2677), - [sym__list_marker_parenthesis] = ACTIONS(2677), - [sym__list_marker_dot] = ACTIONS(2677), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), - [sym__list_marker_example] = ACTIONS(2677), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), - [sym__fenced_code_block_start_backtick] = ACTIONS(2677), - [sym_minus_metadata] = ACTIONS(2677), - [sym__pipe_table_start] = ACTIONS(2677), - [sym__fenced_div_start] = ACTIONS(2677), - [sym_ref_id_specifier] = ACTIONS(2677), - [sym__code_span_start] = ACTIONS(2677), - [sym__html_comment] = ACTIONS(2677), - [sym__autolink] = ACTIONS(2677), - [sym__highlight_span_start] = ACTIONS(2677), - [sym__insert_span_start] = ACTIONS(2677), - [sym__delete_span_start] = ACTIONS(2677), - [sym__edit_comment_span_start] = ACTIONS(2677), - [sym__single_quote_span_open] = ACTIONS(2677), - [sym__double_quote_span_open] = ACTIONS(2677), - [sym__shortcode_open_escaped] = ACTIONS(2677), - [sym__shortcode_open] = ACTIONS(2677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), - [sym__cite_author_in_text] = ACTIONS(2677), - [sym__cite_suppress_author] = ACTIONS(2677), - [sym__strikeout_open] = ACTIONS(2677), - [sym__subscript_open] = ACTIONS(2677), - [sym__superscript_open] = ACTIONS(2677), - [sym__inline_note_start_token] = ACTIONS(2677), - [sym__strong_emphasis_open_star] = ACTIONS(2677), - [sym__strong_emphasis_open_underscore] = ACTIONS(2677), - [sym__emphasis_open_star] = ACTIONS(2677), - [sym__emphasis_open_underscore] = ACTIONS(2677), - [sym_inline_note_reference] = ACTIONS(2677), - [sym_html_element] = ACTIONS(2677), - [sym__pandoc_line_break] = ACTIONS(2677), + [sym__atx_heading_content] = STATE(3296), + [sym__inlines] = STATE(3296), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(264), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(231), + [sym__eof] = ACTIONS(3393), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(577)] = { - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [sym__whitespace] = ACTIONS(2681), - [sym__line_ending] = ACTIONS(2681), - [sym__soft_line_ending] = ACTIONS(2681), - [sym__block_close] = ACTIONS(2681), - [sym__block_quote_start] = ACTIONS(2681), - [sym_atx_h1_marker] = ACTIONS(2681), - [sym_atx_h2_marker] = ACTIONS(2681), - [sym_atx_h3_marker] = ACTIONS(2681), - [sym_atx_h4_marker] = ACTIONS(2681), - [sym_atx_h5_marker] = ACTIONS(2681), - [sym_atx_h6_marker] = ACTIONS(2681), - [sym__thematic_break] = ACTIONS(2681), - [sym__list_marker_minus] = ACTIONS(2681), - [sym__list_marker_plus] = ACTIONS(2681), - [sym__list_marker_star] = ACTIONS(2681), - [sym__list_marker_parenthesis] = ACTIONS(2681), - [sym__list_marker_dot] = ACTIONS(2681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_example] = ACTIONS(2681), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), - [sym__fenced_code_block_start_backtick] = ACTIONS(2681), - [sym_minus_metadata] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), + [sym__atx_heading_content] = STATE(3275), + [sym__inlines] = STATE(3275), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(347), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3395), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(578)] = { - [anon_sym_COLON] = 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_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] = 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_line_break] = ACTIONS(2561), + [sym__atx_heading_content] = STATE(3071), + [sym__inlines] = STATE(3071), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(430), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3397), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(579)] = { - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [sym__whitespace] = ACTIONS(2687), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_close] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), + [sym__atx_heading_content] = STATE(3255), + [sym__inlines] = STATE(3255), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(428), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3399), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(580)] = { - [sym_pipe_table_row] = STATE(3403), - [sym_pipe_table_cell] = STATE(3192), - [sym_pandoc_span] = STATE(669), - [sym_pandoc_image] = STATE(669), - [sym_pandoc_math] = STATE(669), - [sym_pandoc_display_math] = STATE(669), - [sym_pandoc_code_span] = STATE(669), - [sym_pandoc_single_quote] = STATE(669), - [sym_pandoc_double_quote] = STATE(669), - [sym_insert] = STATE(669), - [sym_delete] = STATE(669), - [sym_edit_comment] = STATE(669), - [sym_highlight] = STATE(669), - [sym__pandoc_attr_specifier] = STATE(669), - [sym__line_with_maybe_spaces] = STATE(3193), - [sym__inline_element] = STATE(669), - [sym_shortcode_escaped] = STATE(669), - [sym_shortcode] = STATE(669), - [sym_citation] = STATE(669), - [sym_inline_note] = STATE(669), - [sym_pandoc_superscript] = STATE(669), - [sym_pandoc_subscript] = STATE(669), - [sym_pandoc_strikeout] = STATE(669), - [sym_pandoc_emph] = STATE(669), - [sym_pandoc_strong] = STATE(669), - [sym_pandoc_str] = STATE(669), - [aux_sym_pipe_table_row_repeat1] = STATE(599), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(669), - [sym_entity_reference] = ACTIONS(3009), - [sym_numeric_character_reference] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_BANG_LBRACK] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [aux_sym_pandoc_str_token1] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3023), - [sym__whitespace] = ACTIONS(3025), - [sym__code_span_start] = ACTIONS(3027), - [sym__html_comment] = ACTIONS(3009), - [sym__autolink] = ACTIONS(3009), - [sym__highlight_span_start] = ACTIONS(3029), - [sym__insert_span_start] = ACTIONS(3031), - [sym__delete_span_start] = ACTIONS(3033), - [sym__edit_comment_span_start] = ACTIONS(3035), - [sym__single_quote_span_open] = ACTIONS(3037), - [sym__double_quote_span_open] = ACTIONS(3039), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3045), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3047), - [sym__cite_author_in_text] = ACTIONS(3049), - [sym__cite_suppress_author] = ACTIONS(3051), - [sym__strikeout_open] = ACTIONS(3053), - [sym__subscript_open] = ACTIONS(3055), - [sym__superscript_open] = ACTIONS(3057), - [sym__inline_note_start_token] = ACTIONS(3059), - [sym__strong_emphasis_open_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(3063), - [sym__emphasis_open_star] = ACTIONS(3065), - [sym__emphasis_open_underscore] = ACTIONS(3067), - [sym_inline_note_reference] = ACTIONS(3009), - [sym_html_element] = ACTIONS(3009), - [sym__pipe_table_delimiter] = ACTIONS(3069), - [sym__pandoc_line_break] = ACTIONS(3009), + [sym__atx_heading_content] = STATE(3065), + [sym__inlines] = STATE(3065), + [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__line] = STATE(2867), + [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), + [sym__newline] = STATE(266), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3055), + [sym__line_ending] = ACTIONS(231), + [sym__eof] = ACTIONS(3401), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(581)] = { - [sym_pipe_table_row] = STATE(3452), + [sym_pipe_table_row] = STATE(3403), [sym_pipe_table_cell] = STATE(3192), - [sym_pandoc_span] = STATE(669), - [sym_pandoc_image] = STATE(669), - [sym_pandoc_math] = STATE(669), - [sym_pandoc_display_math] = STATE(669), - [sym_pandoc_code_span] = STATE(669), - [sym_pandoc_single_quote] = STATE(669), - [sym_pandoc_double_quote] = STATE(669), - [sym_insert] = STATE(669), - [sym_delete] = STATE(669), - [sym_edit_comment] = STATE(669), - [sym_highlight] = STATE(669), - [sym__pandoc_attr_specifier] = STATE(669), + [sym_pandoc_span] = STATE(681), + [sym_pandoc_image] = STATE(681), + [sym_pandoc_math] = STATE(681), + [sym_pandoc_display_math] = STATE(681), + [sym_pandoc_code_span] = STATE(681), + [sym_pandoc_single_quote] = STATE(681), + [sym_pandoc_double_quote] = STATE(681), + [sym_insert] = STATE(681), + [sym_delete] = STATE(681), + [sym_edit_comment] = STATE(681), + [sym_highlight] = STATE(681), + [sym__pandoc_attr_specifier] = STATE(681), [sym__line_with_maybe_spaces] = STATE(3193), - [sym__inline_element] = STATE(669), - [sym_shortcode_escaped] = STATE(669), - [sym_shortcode] = STATE(669), - [sym_citation] = STATE(669), - [sym_inline_note] = STATE(669), - [sym_pandoc_superscript] = STATE(669), - [sym_pandoc_subscript] = STATE(669), - [sym_pandoc_strikeout] = STATE(669), - [sym_pandoc_emph] = STATE(669), - [sym_pandoc_strong] = STATE(669), - [sym_pandoc_str] = STATE(669), - [aux_sym_pipe_table_row_repeat1] = STATE(599), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(669), - [sym_entity_reference] = ACTIONS(3009), - [sym_numeric_character_reference] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_BANG_LBRACK] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [aux_sym_pandoc_str_token1] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3023), - [sym__whitespace] = ACTIONS(3025), - [sym__code_span_start] = ACTIONS(3027), - [sym__html_comment] = ACTIONS(3009), - [sym__autolink] = ACTIONS(3009), - [sym__highlight_span_start] = ACTIONS(3029), - [sym__insert_span_start] = ACTIONS(3031), - [sym__delete_span_start] = ACTIONS(3033), - [sym__edit_comment_span_start] = ACTIONS(3035), - [sym__single_quote_span_open] = ACTIONS(3037), - [sym__double_quote_span_open] = ACTIONS(3039), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3045), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3047), - [sym__cite_author_in_text] = ACTIONS(3049), - [sym__cite_suppress_author] = ACTIONS(3051), - [sym__strikeout_open] = ACTIONS(3053), - [sym__subscript_open] = ACTIONS(3055), - [sym__superscript_open] = ACTIONS(3057), - [sym__inline_note_start_token] = ACTIONS(3059), - [sym__strong_emphasis_open_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(3063), - [sym__emphasis_open_star] = ACTIONS(3065), - [sym__emphasis_open_underscore] = ACTIONS(3067), - [sym_inline_note_reference] = ACTIONS(3009), - [sym_html_element] = ACTIONS(3009), - [sym__pipe_table_delimiter] = ACTIONS(3069), - [sym__pandoc_line_break] = ACTIONS(3009), + [sym__inline_element] = STATE(681), + [sym_shortcode_escaped] = STATE(681), + [sym_shortcode] = STATE(681), + [sym_citation] = STATE(681), + [sym_inline_note] = STATE(681), + [sym_pandoc_superscript] = STATE(681), + [sym_pandoc_subscript] = STATE(681), + [sym_pandoc_strikeout] = STATE(681), + [sym_pandoc_emph] = STATE(681), + [sym_pandoc_strong] = STATE(681), + [sym_pandoc_str] = STATE(681), + [aux_sym_pipe_table_row_repeat1] = STATE(594), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(681), + [sym_entity_reference] = ACTIONS(3089), + [sym_numeric_character_reference] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_BANG_LBRACK] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [aux_sym_pandoc_str_token1] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3103), + [sym__whitespace] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3089), + [sym__autolink] = ACTIONS(3089), + [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(3089), + [sym_html_element] = ACTIONS(3089), + [sym__pipe_table_delimiter] = ACTIONS(3149), + [sym__pandoc_line_break] = ACTIONS(3089), }, [STATE(582)] = { - [sym__inlines] = STATE(3777), - [sym_pandoc_span] = STATE(664), - [sym_pandoc_image] = STATE(664), - [sym_pandoc_math] = STATE(664), - [sym_pandoc_display_math] = STATE(664), - [sym_pandoc_code_span] = STATE(664), - [sym_pandoc_single_quote] = STATE(664), - [sym_pandoc_double_quote] = STATE(664), - [sym_insert] = STATE(664), - [sym_delete] = STATE(664), - [sym_edit_comment] = STATE(664), - [sym_highlight] = STATE(664), - [sym__pandoc_attr_specifier] = STATE(664), + [sym__inlines] = STATE(3589), + [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(2931), - [sym__inline_element] = STATE(664), - [sym_shortcode_escaped] = STATE(664), - [sym_shortcode] = STATE(664), - [sym_citation] = STATE(664), - [sym_inline_note] = STATE(664), - [sym_pandoc_superscript] = STATE(664), - [sym_pandoc_subscript] = STATE(664), - [sym_pandoc_strikeout] = STATE(664), - [sym_pandoc_emph] = STATE(664), - [sym_pandoc_strong] = STATE(664), - [sym_pandoc_str] = STATE(664), - [sym__soft_line_break] = STATE(738), - [sym__inline_whitespace] = STATE(738), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3087), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3091), + [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(2991), + [sym_numeric_character_reference] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_BANG_LBRACK] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2999), [aux_sym_insert_token1] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3003), + [aux_sym_pandoc_str_token1] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3007), [sym__whitespace] = ACTIONS(3405), - [sym__soft_line_ending] = ACTIONS(3103), - [sym__code_span_start] = ACTIONS(3105), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3109), - [sym__delete_span_start] = ACTIONS(3111), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3115), - [sym__double_quote_span_open] = ACTIONS(3117), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3121), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3127), - [sym__cite_suppress_author] = ACTIONS(3129), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3133), - [sym__superscript_open] = ACTIONS(3135), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3139), - [sym__strong_emphasis_open_underscore] = ACTIONS(3141), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3145), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - [sym__pandoc_line_break] = ACTIONS(3083), + [sym__soft_line_ending] = ACTIONS(3011), + [sym__code_span_start] = ACTIONS(3013), + [sym__html_comment] = ACTIONS(2991), + [sym__autolink] = ACTIONS(2991), + [sym__highlight_span_start] = ACTIONS(3015), + [sym__insert_span_start] = ACTIONS(3017), + [sym__delete_span_start] = ACTIONS(3019), + [sym__edit_comment_span_start] = ACTIONS(3021), + [sym__single_quote_span_open] = ACTIONS(3023), + [sym__double_quote_span_open] = ACTIONS(3025), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3029), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3031), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), + [sym__cite_author_in_text] = ACTIONS(3035), + [sym__cite_suppress_author] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(3039), + [sym__subscript_open] = ACTIONS(3041), + [sym__superscript_open] = ACTIONS(3043), + [sym__inline_note_start_token] = ACTIONS(3045), + [sym__strong_emphasis_open_star] = ACTIONS(3047), + [sym__strong_emphasis_open_underscore] = ACTIONS(3049), + [sym__emphasis_open_star] = ACTIONS(3051), + [sym__emphasis_open_underscore] = ACTIONS(3053), + [sym_inline_note_reference] = ACTIONS(2991), + [sym_html_element] = ACTIONS(2991), + [sym__pandoc_line_break] = ACTIONS(2991), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 35, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -70428,11 +70880,11 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - STATE(2869), 1, + STATE(2803), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(913), 2, + STATE(837), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -70443,7 +70895,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -70468,73 +70920,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [135] = 35, - ACTIONS(2739), 1, - sym__line_ending, ACTIONS(3011), 1, + sym__soft_line_ending, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, ACTIONS(3467), 1, sym__whitespace, - ACTIONS(3469), 1, - sym__pipe_table_delimiter, - STATE(3193), 1, - sym__line_with_maybe_spaces, - STATE(3268), 1, - sym_pipe_table_cell, - ACTIONS(3009), 7, + STATE(2878), 1, + sym__line, + STATE(2891), 1, + sym__inlines, + STATE(920), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3407), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -70542,7 +70995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -70566,75 +71019,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, [270] = 35, - ACTIONS(2745), 1, + ACTIONS(2875), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3471), 1, + ACTIONS(3469), 1, sym__whitespace, - STATE(593), 1, - aux_sym_pipe_table_row_repeat1, + ACTIONS(3471), 1, + sym__pipe_table_delimiter, STATE(3193), 1, sym__line_with_maybe_spaces, - STATE(3301), 1, + STATE(3268), 1, sym_pipe_table_cell, - ACTIONS(3009), 7, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -70642,7 +71094,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -70667,171 +71119,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [405] = 35, - ACTIONS(2749), 1, - sym__line_ending, - ACTIONS(3011), 1, + [405] = 32, + ACTIONS(2109), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(2111), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(2113), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(2115), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(2119), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(2121), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(2127), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(2129), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(2131), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(2133), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(2135), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(2137), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(2139), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(2141), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(2143), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(2145), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(2147), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(2149), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(2151), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(2153), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(2155), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(2157), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(2159), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(2161), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(2163), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(2165), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(2167), 1, sym__emphasis_open_underscore, - ACTIONS(3473), 1, - sym__whitespace, - STATE(589), 1, - aux_sym_pipe_table_row_repeat1, - STATE(3193), 1, - sym__line_with_maybe_spaces, - STATE(3301), 1, - sym_pipe_table_cell, - ACTIONS(3009), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(669), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [540] = 32, - ACTIONS(3478), 1, - anon_sym_LBRACK, - ACTIONS(3481), 1, - anon_sym_BANG_LBRACK, - ACTIONS(3484), 1, - anon_sym_DOLLAR, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(3490), 1, - anon_sym_LBRACE, - ACTIONS(3493), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3496), 1, - anon_sym_PIPE, - ACTIONS(3499), 1, + ACTIONS(2873), 1, sym__whitespace, - ACTIONS(3504), 1, - sym__code_span_start, - ACTIONS(3507), 1, - sym__highlight_span_start, - ACTIONS(3510), 1, - sym__insert_span_start, - ACTIONS(3513), 1, - sym__delete_span_start, - ACTIONS(3516), 1, - sym__edit_comment_span_start, - ACTIONS(3519), 1, - sym__single_quote_span_open, - ACTIONS(3522), 1, - sym__double_quote_span_open, - ACTIONS(3525), 1, - sym__shortcode_open_escaped, - ACTIONS(3528), 1, - sym__shortcode_open, - ACTIONS(3531), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3534), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3537), 1, - sym__cite_author_in_text, - ACTIONS(3540), 1, - sym__cite_suppress_author, - ACTIONS(3543), 1, - sym__strikeout_open, - ACTIONS(3546), 1, - sym__subscript_open, - ACTIONS(3549), 1, - sym__superscript_open, - ACTIONS(3552), 1, - sym__inline_note_start_token, - ACTIONS(3555), 1, - sym__strong_emphasis_open_star, - ACTIONS(3558), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3561), 1, - sym__emphasis_open_star, - ACTIONS(3564), 1, - sym__emphasis_open_underscore, - ACTIONS(3502), 4, + ACTIONS(3475), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, - ACTIONS(3475), 7, + ACTIONS(3473), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -70839,7 +71191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(587), 24, + STATE(596), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -70864,74 +71216,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [669] = 35, - ACTIONS(2739), 1, + [534] = 35, + ACTIONS(2985), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3467), 1, + ACTIONS(3477), 1, sym__whitespace, - ACTIONS(3469), 1, - sym__pipe_table_delimiter, + STATE(591), 1, + aux_sym_pipe_table_row_repeat1, STATE(3193), 1, sym__line_with_maybe_spaces, - STATE(3258), 1, + STATE(3265), 1, sym_pipe_table_cell, - ACTIONS(3009), 7, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -70939,7 +71291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -70964,74 +71316,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [804] = 35, - ACTIONS(2873), 1, + [669] = 35, + ACTIONS(2887), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3567), 1, + ACTIONS(3479), 1, sym__whitespace, - STATE(593), 1, + STATE(591), 1, aux_sym_pipe_table_row_repeat1, STATE(3193), 1, sym__line_with_maybe_spaces, - STATE(3265), 1, + STATE(3301), 1, sym_pipe_table_cell, - ACTIONS(3009), 7, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71039,7 +71391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71064,171 +71416,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [939] = 35, - ACTIONS(3103), 1, - sym__soft_line_ending, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(3411), 1, - anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, - anon_sym_DOLLAR, - ACTIONS(3415), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(3419), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, - anon_sym_PIPE, - ACTIONS(3425), 1, - sym__code_span_start, - ACTIONS(3427), 1, - sym__highlight_span_start, - ACTIONS(3429), 1, - sym__insert_span_start, - ACTIONS(3431), 1, - sym__delete_span_start, - ACTIONS(3433), 1, - sym__edit_comment_span_start, - ACTIONS(3435), 1, - sym__single_quote_span_open, - ACTIONS(3437), 1, - sym__double_quote_span_open, - ACTIONS(3439), 1, - sym__shortcode_open_escaped, - ACTIONS(3441), 1, - sym__shortcode_open, - ACTIONS(3443), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, - sym__cite_author_in_text, - ACTIONS(3449), 1, - sym__cite_suppress_author, - ACTIONS(3451), 1, - sym__strikeout_open, - ACTIONS(3453), 1, - sym__subscript_open, - ACTIONS(3455), 1, - sym__superscript_open, - ACTIONS(3457), 1, - sym__inline_note_start_token, - ACTIONS(3459), 1, - sym__strong_emphasis_open_star, - ACTIONS(3461), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, - sym__emphasis_open_star, - ACTIONS(3465), 1, - sym__emphasis_open_underscore, - ACTIONS(3569), 1, - sym__whitespace, - STATE(2878), 1, - sym__line, - STATE(2891), 1, - sym__inlines, - STATE(921), 2, - sym__soft_line_break, - sym__inline_whitespace, - ACTIONS(3407), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(654), 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, - [1074] = 32, - ACTIONS(2051), 1, + [804] = 35, + ACTIONS(2891), 1, + sym__line_ending, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(2055), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(2057), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2059), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(2063), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(2069), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(2071), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(2073), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(2075), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(2077), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(2079), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(2081), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(2083), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(2085), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(2087), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2089), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2091), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(2093), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(2095), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(2097), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(2099), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(2101), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(2103), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(2105), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2107), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(2109), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(2737), 1, + ACTIONS(3481), 1, sym__whitespace, - ACTIONS(3573), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, - ACTIONS(3571), 7, + STATE(587), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3193), 1, + sym__line_with_maybe_spaces, + STATE(3301), 1, + sym_pipe_table_cell, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71236,7 +71491,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(587), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71261,74 +71516,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [1203] = 35, - ACTIONS(2745), 1, + [939] = 35, + ACTIONS(2887), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3467), 1, - sym__whitespace, ACTIONS(3469), 1, + sym__whitespace, + ACTIONS(3471), 1, sym__pipe_table_delimiter, STATE(3193), 1, sym__line_with_maybe_spaces, STATE(3268), 1, sym_pipe_table_cell, - ACTIONS(3009), 7, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71336,7 +71591,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71361,74 +71616,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [1338] = 35, - ACTIONS(2754), 1, + [1074] = 35, + ACTIONS(2896), 1, anon_sym_LBRACK, - ACTIONS(2757), 1, + ACTIONS(2899), 1, anon_sym_BANG_LBRACK, - ACTIONS(2760), 1, + ACTIONS(2902), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2905), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2766), 1, + ACTIONS(2908), 1, anon_sym_LBRACE, - ACTIONS(2769), 1, + ACTIONS(2911), 1, aux_sym_pandoc_str_token1, - ACTIONS(2772), 1, + ACTIONS(2914), 1, anon_sym_PIPE, - ACTIONS(2778), 1, + ACTIONS(2920), 1, sym__line_ending, - ACTIONS(2780), 1, + ACTIONS(2922), 1, sym__code_span_start, - ACTIONS(2783), 1, + ACTIONS(2925), 1, sym__highlight_span_start, - ACTIONS(2786), 1, + ACTIONS(2928), 1, sym__insert_span_start, - ACTIONS(2789), 1, + ACTIONS(2931), 1, sym__delete_span_start, - ACTIONS(2792), 1, + ACTIONS(2934), 1, sym__edit_comment_span_start, - ACTIONS(2795), 1, + ACTIONS(2937), 1, sym__single_quote_span_open, - ACTIONS(2798), 1, + ACTIONS(2940), 1, sym__double_quote_span_open, - ACTIONS(2801), 1, + ACTIONS(2943), 1, sym__shortcode_open_escaped, - ACTIONS(2804), 1, + ACTIONS(2946), 1, sym__shortcode_open, - ACTIONS(2807), 1, + ACTIONS(2949), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2810), 1, + ACTIONS(2952), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2813), 1, + ACTIONS(2955), 1, sym__cite_author_in_text, - ACTIONS(2816), 1, + ACTIONS(2958), 1, sym__cite_suppress_author, - ACTIONS(2819), 1, + ACTIONS(2961), 1, sym__strikeout_open, - ACTIONS(2822), 1, + ACTIONS(2964), 1, sym__subscript_open, - ACTIONS(2825), 1, + ACTIONS(2967), 1, sym__superscript_open, - ACTIONS(2828), 1, + ACTIONS(2970), 1, sym__inline_note_start_token, - ACTIONS(2831), 1, + ACTIONS(2973), 1, sym__strong_emphasis_open_star, - ACTIONS(2834), 1, + ACTIONS(2976), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2837), 1, + ACTIONS(2979), 1, sym__emphasis_open_star, - ACTIONS(2840), 1, + ACTIONS(2982), 1, sym__emphasis_open_underscore, - ACTIONS(3575), 1, + ACTIONS(3483), 1, sym__whitespace, - STATE(593), 1, + STATE(591), 1, aux_sym_pipe_table_row_repeat1, STATE(3336), 1, sym_pipe_table_cell, STATE(3402), 1, sym__line_with_maybe_spaces, - ACTIONS(2751), 7, + ACTIONS(2893), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71436,7 +71691,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(702), 24, + STATE(694), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71461,174 +71716,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [1473] = 35, - ACTIONS(2889), 1, + [1209] = 35, + ACTIONS(2875), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3467), 1, - sym__whitespace, ACTIONS(3469), 1, - sym__pipe_table_delimiter, - STATE(3193), 1, - sym__line_with_maybe_spaces, - STATE(3306), 1, - sym_pipe_table_cell, - ACTIONS(3009), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(669), 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, - [1608] = 35, - ACTIONS(2873), 1, - sym__line_ending, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 1, - anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, - anon_sym_DOLLAR, - ACTIONS(3017), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, - anon_sym_LBRACE, - ACTIONS(3021), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, - anon_sym_PIPE, - ACTIONS(3027), 1, - sym__code_span_start, - ACTIONS(3029), 1, - sym__highlight_span_start, - ACTIONS(3031), 1, - sym__insert_span_start, - ACTIONS(3033), 1, - sym__delete_span_start, - ACTIONS(3035), 1, - sym__edit_comment_span_start, - ACTIONS(3037), 1, - sym__single_quote_span_open, - ACTIONS(3039), 1, - sym__double_quote_span_open, - ACTIONS(3041), 1, - sym__shortcode_open_escaped, - ACTIONS(3043), 1, - sym__shortcode_open, - ACTIONS(3045), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, - sym__cite_author_in_text, - ACTIONS(3051), 1, - sym__cite_suppress_author, - ACTIONS(3053), 1, - sym__strikeout_open, - ACTIONS(3055), 1, - sym__subscript_open, - ACTIONS(3057), 1, - sym__superscript_open, - ACTIONS(3059), 1, - sym__inline_note_start_token, - ACTIONS(3061), 1, - sym__strong_emphasis_open_star, - ACTIONS(3063), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, - sym__emphasis_open_star, - ACTIONS(3067), 1, - sym__emphasis_open_underscore, - ACTIONS(3467), 1, sym__whitespace, - ACTIONS(3469), 1, + ACTIONS(3486), 1, sym__pipe_table_delimiter, + STATE(3156), 1, + sym_pipe_table_cell, STATE(3193), 1, sym__line_with_maybe_spaces, - STATE(3258), 1, - sym_pipe_table_cell, - ACTIONS(3009), 7, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71636,7 +71791,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71661,8 +71816,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [1743] = 35, - ACTIONS(3103), 1, + [1344] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -71720,13 +71875,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3578), 1, + ACTIONS(3488), 1, sym__whitespace, - STATE(2774), 1, + STATE(2767), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(798), 2, + STATE(788), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -71737,7 +71892,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71761,74 +71916,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [1878] = 35, - ACTIONS(2739), 1, + [1479] = 35, + ACTIONS(2881), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3467), 1, + ACTIONS(3490), 1, sym__whitespace, - ACTIONS(3580), 1, - sym__pipe_table_delimiter, - STATE(3156), 1, + STATE(591), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3154), 1, sym_pipe_table_cell, STATE(3193), 1, sym__line_with_maybe_spaces, - ACTIONS(3009), 7, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71836,7 +71991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71861,174 +72016,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [2013] = 35, - ACTIONS(3103), 1, - sym__soft_line_ending, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(3411), 1, - anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, - anon_sym_DOLLAR, - ACTIONS(3415), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(3419), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, - anon_sym_PIPE, - ACTIONS(3425), 1, - sym__code_span_start, - ACTIONS(3427), 1, - sym__highlight_span_start, - ACTIONS(3429), 1, - sym__insert_span_start, - ACTIONS(3431), 1, - sym__delete_span_start, - ACTIONS(3433), 1, - sym__edit_comment_span_start, - ACTIONS(3435), 1, - sym__single_quote_span_open, - ACTIONS(3437), 1, - sym__double_quote_span_open, - ACTIONS(3439), 1, - sym__shortcode_open_escaped, - ACTIONS(3441), 1, - sym__shortcode_open, - ACTIONS(3443), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, - sym__cite_author_in_text, - ACTIONS(3449), 1, - sym__cite_suppress_author, - ACTIONS(3451), 1, - sym__strikeout_open, - ACTIONS(3453), 1, - sym__subscript_open, - ACTIONS(3455), 1, - sym__superscript_open, - ACTIONS(3457), 1, - sym__inline_note_start_token, - ACTIONS(3459), 1, - sym__strong_emphasis_open_star, - ACTIONS(3461), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, - sym__emphasis_open_star, - ACTIONS(3465), 1, - sym__emphasis_open_underscore, - ACTIONS(3582), 1, - sym__whitespace, - STATE(2795), 1, - sym__inlines, - STATE(2878), 1, - sym__line, - STATE(811), 2, - sym__soft_line_break, - sym__inline_whitespace, - ACTIONS(3407), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(654), 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, - [2148] = 35, - ACTIONS(2967), 1, + [1614] = 35, + ACTIONS(2989), 1, sym__line_ending, - ACTIONS(3011), 1, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3584), 1, + ACTIONS(3469), 1, sym__whitespace, - STATE(593), 1, - aux_sym_pipe_table_row_repeat1, - STATE(3154), 1, - sym_pipe_table_cell, + ACTIONS(3471), 1, + sym__pipe_table_delimiter, STATE(3193), 1, sym__line_with_maybe_spaces, - ACTIONS(3009), 7, + STATE(3306), 1, + sym_pipe_table_cell, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72036,7 +72091,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72061,75 +72116,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [2283] = 35, - ACTIONS(3103), 1, - sym__soft_line_ending, - ACTIONS(3409), 1, + [1749] = 32, + ACTIONS(3495), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(3498), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(3501), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(3504), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(3507), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(3510), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(3513), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(3516), 1, + sym__whitespace, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(3524), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(3527), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(3530), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(3533), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(3536), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(3539), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(3542), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(3548), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(3551), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3554), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(3557), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(3560), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(3563), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(3566), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(3569), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(3572), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(3575), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(3578), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(3581), 1, sym__emphasis_open_underscore, - ACTIONS(3586), 1, - sym__whitespace, - STATE(2767), 1, - sym__inlines, - STATE(2878), 1, - sym__line, - STATE(788), 2, - sym__soft_line_break, - sym__inline_whitespace, - ACTIONS(3407), 7, + ACTIONS(3519), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + ACTIONS(3492), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72137,7 +72188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(596), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72161,8 +72212,9 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2418] = 35, - ACTIONS(3103), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [1878] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -72220,13 +72272,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3588), 1, + ACTIONS(3584), 1, sym__whitespace, + STATE(2774), 1, + sym__inlines, STATE(2878), 1, sym__line, - STATE(2904), 1, - sym__inlines, - STATE(823), 2, + STATE(799), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -72237,7 +72289,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72261,75 +72313,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2553] = 35, - ACTIONS(3103), 1, - sym__soft_line_ending, - ACTIONS(3409), 1, + [2013] = 35, + ACTIONS(2985), 1, + sym__line_ending, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3590), 1, + ACTIONS(3469), 1, sym__whitespace, - STATE(2776), 1, - sym__inlines, - STATE(2878), 1, - sym__line, - STATE(831), 2, - sym__soft_line_break, - sym__inline_whitespace, - ACTIONS(3407), 7, + ACTIONS(3471), 1, + sym__pipe_table_delimiter, + STATE(3193), 1, + sym__line_with_maybe_spaces, + STATE(3258), 1, + sym_pipe_table_cell, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72337,7 +72388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72361,8 +72412,9 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2688] = 35, - ACTIONS(3103), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [2148] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -72420,13 +72472,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3592), 1, + ACTIONS(3586), 1, sym__whitespace, - STATE(2803), 1, + STATE(2795), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(840), 2, + STATE(808), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -72437,7 +72489,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72461,75 +72513,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2823] = 35, - ACTIONS(3103), 1, - sym__soft_line_ending, - ACTIONS(3409), 1, + [2283] = 35, + ACTIONS(2875), 1, + sym__line_ending, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3594), 1, + ACTIONS(3469), 1, sym__whitespace, - STATE(2870), 1, - sym__inlines, - STATE(2878), 1, - sym__line, - STATE(848), 2, - sym__soft_line_break, - sym__inline_whitespace, - ACTIONS(3407), 7, + ACTIONS(3471), 1, + sym__pipe_table_delimiter, + STATE(3193), 1, + sym__line_with_maybe_spaces, + STATE(3258), 1, + sym_pipe_table_cell, + ACTIONS(3089), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72537,7 +72588,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72561,8 +72612,9 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2958] = 35, - ACTIONS(3103), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [2418] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -72620,13 +72672,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3596), 1, + ACTIONS(3588), 1, sym__whitespace, - STATE(2758), 1, - sym__inlines, STATE(2878), 1, sym__line, - STATE(857), 2, + STATE(2904), 1, + sym__inlines, + STATE(821), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -72637,7 +72689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72661,8 +72713,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3093] = 35, - ACTIONS(3103), 1, + [2553] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -72720,13 +72772,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3598), 1, + ACTIONS(3590), 1, sym__whitespace, - STATE(2768), 1, + STATE(2776), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(865), 2, + STATE(829), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -72737,7 +72789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72761,8 +72813,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3228] = 35, - ACTIONS(3103), 1, + [2688] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -72820,13 +72872,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3600), 1, + ACTIONS(3592), 1, sym__whitespace, - STATE(2787), 1, + STATE(2870), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(873), 2, + STATE(845), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -72837,7 +72889,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72861,8 +72913,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3363] = 35, - ACTIONS(3103), 1, + [2823] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -72920,13 +72972,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3602), 1, + ACTIONS(3594), 1, sym__whitespace, - STATE(2809), 1, + STATE(2758), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(881), 2, + STATE(853), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -72937,7 +72989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72961,8 +73013,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3498] = 35, - ACTIONS(3103), 1, + [2958] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -73020,13 +73072,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3604), 1, + ACTIONS(3596), 1, sym__whitespace, - STATE(2823), 1, + STATE(2768), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(889), 2, + STATE(861), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -73037,7 +73089,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73061,8 +73113,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3633] = 35, - ACTIONS(3103), 1, + [3093] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -73120,13 +73172,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3606), 1, + ACTIONS(3598), 1, sym__whitespace, - STATE(2847), 1, + STATE(2787), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(897), 2, + STATE(870), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -73137,7 +73189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73161,8 +73213,8 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3768] = 35, - ACTIONS(3103), 1, + [3228] = 35, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(3409), 1, anon_sym_LBRACK, @@ -73220,13 +73272,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3608), 1, + ACTIONS(3600), 1, sym__whitespace, - STATE(2859), 1, + STATE(2809), 1, sym__inlines, STATE(2878), 1, sym__line, - STATE(905), 2, + STATE(878), 2, sym__soft_line_break, sym__inline_whitespace, ACTIONS(3407), 7, @@ -73237,7 +73289,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73261,74 +73313,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3903] = 35, - ACTIONS(2181), 1, + [3363] = 35, + ACTIONS(3011), 1, + sym__soft_line_ending, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(2549), 1, - aux_sym_target_token1, - ACTIONS(3610), 1, - aux_sym_pandoc_span_token1, - STATE(982), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3225), 1, + ACTIONS(3602), 1, + sym__whitespace, + STATE(2823), 1, sym__inlines, - ACTIONS(2179), 7, + STATE(2878), 1, + sym__line, + STATE(887), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3407), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73336,7 +73389,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73360,74 +73413,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4037] = 35, - ACTIONS(2181), 1, + [3498] = 35, + ACTIONS(3011), 1, + sym__soft_line_ending, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(2441), 1, - aux_sym_target_token1, - ACTIONS(3612), 1, - aux_sym_pandoc_span_token1, - STATE(1266), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3128), 1, + ACTIONS(3604), 1, + sym__whitespace, + STATE(2847), 1, sym__inlines, - ACTIONS(2179), 7, + STATE(2878), 1, + sym__line, + STATE(896), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3407), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73435,7 +73489,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73459,74 +73513,175 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4171] = 35, - ACTIONS(2181), 1, + [3633] = 35, + ACTIONS(3011), 1, + sym__soft_line_ending, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(2451), 1, - aux_sym_target_token1, - ACTIONS(3614), 1, - aux_sym_pandoc_span_token1, - STATE(1292), 1, - sym_target, - STATE(2865), 1, + ACTIONS(3606), 1, + sym__whitespace, + STATE(2859), 1, + sym__inlines, + STATE(2878), 1, sym__line, - STATE(3175), 1, + STATE(904), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3407), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(687), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3768] = 35, + ACTIONS(3011), 1, + sym__soft_line_ending, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3413), 1, + anon_sym_DOLLAR, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3417), 1, + anon_sym_LBRACE, + ACTIONS(3419), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3421), 1, + anon_sym_PIPE, + ACTIONS(3425), 1, + sym__code_span_start, + ACTIONS(3427), 1, + sym__highlight_span_start, + ACTIONS(3429), 1, + sym__insert_span_start, + ACTIONS(3431), 1, + sym__delete_span_start, + ACTIONS(3433), 1, + sym__edit_comment_span_start, + ACTIONS(3435), 1, + sym__single_quote_span_open, + ACTIONS(3437), 1, + sym__double_quote_span_open, + ACTIONS(3439), 1, + sym__shortcode_open_escaped, + ACTIONS(3441), 1, + sym__shortcode_open, + ACTIONS(3443), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3445), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3447), 1, + sym__cite_author_in_text, + ACTIONS(3449), 1, + sym__cite_suppress_author, + ACTIONS(3451), 1, + sym__strikeout_open, + ACTIONS(3453), 1, + sym__subscript_open, + ACTIONS(3455), 1, + sym__superscript_open, + ACTIONS(3457), 1, + sym__inline_note_start_token, + ACTIONS(3459), 1, + sym__strong_emphasis_open_star, + ACTIONS(3461), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3463), 1, + sym__emphasis_open_star, + ACTIONS(3465), 1, + sym__emphasis_open_underscore, + ACTIONS(3608), 1, + sym__whitespace, + STATE(2869), 1, sym__inlines, - ACTIONS(2179), 7, + STATE(2878), 1, + sym__line, + STATE(912), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3407), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73534,7 +73689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73558,74 +73713,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4305] = 35, - ACTIONS(2181), 1, + [3903] = 34, + ACTIONS(2109), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2111), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2113), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2115), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2119), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2121), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2127), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2129), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2131), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2133), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2135), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2137), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2139), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2141), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2143), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2145), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2147), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2149), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2151), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2153), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2155), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2157), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2159), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2161), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2163), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2165), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2167), 1, sym__emphasis_open_underscore, - ACTIONS(2451), 1, - aux_sym_target_token1, - ACTIONS(3616), 1, - aux_sym_pandoc_span_token1, - STATE(1294), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3176), 1, - sym__inlines, - ACTIONS(2179), 7, + ACTIONS(3610), 1, + sym__whitespace, + STATE(447), 1, + aux_sym_pipe_table_row_repeat1, + STATE(2766), 1, + sym__line_with_maybe_spaces, + STATE(2775), 1, + sym_pipe_table_cell, + ACTIONS(2107), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73633,7 +73786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(586), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73657,71 +73810,169 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4439] = 33, - ACTIONS(2181), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [4035] = 34, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, + ACTIONS(3612), 1, + sym__whitespace, + STATE(588), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3154), 1, + sym_pipe_table_cell, + STATE(3193), 1, + sym__line_with_maybe_spaces, + ACTIONS(3089), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(681), 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, + [4167] = 32, + ACTIONS(3617), 1, + anon_sym_LBRACK, ACTIONS(3620), 1, - aux_sym_pandoc_span_token1, - ACTIONS(3624), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3623), 1, + anon_sym_DOLLAR, + ACTIONS(3626), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3629), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3635), 1, + anon_sym_PIPE, + ACTIONS(3638), 1, sym__whitespace, - ACTIONS(3622), 2, + ACTIONS(3643), 1, + sym__code_span_start, + ACTIONS(3646), 1, + sym__highlight_span_start, + ACTIONS(3649), 1, + sym__insert_span_start, + ACTIONS(3652), 1, + sym__delete_span_start, + ACTIONS(3655), 1, + sym__edit_comment_span_start, + ACTIONS(3658), 1, + sym__single_quote_span_open, + ACTIONS(3661), 1, + sym__double_quote_span_open, + ACTIONS(3664), 1, + sym__shortcode_open_escaped, + ACTIONS(3667), 1, + sym__shortcode_open, + ACTIONS(3670), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3673), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3676), 1, + sym__cite_author_in_text, + ACTIONS(3679), 1, + sym__cite_suppress_author, + ACTIONS(3682), 1, + sym__strikeout_open, + ACTIONS(3685), 1, + sym__subscript_open, + ACTIONS(3688), 1, + sym__superscript_open, + ACTIONS(3691), 1, + sym__inline_note_start_token, + ACTIONS(3694), 1, + sym__strong_emphasis_open_star, + ACTIONS(3697), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3700), 1, + sym__emphasis_open_star, + ACTIONS(3703), 1, + sym__emphasis_open_underscore, + ACTIONS(3641), 3, + sym__line_ending, sym__soft_line_ending, - aux_sym_target_token1, - ACTIONS(3618), 7, + sym__eof, + ACTIONS(3614), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73729,7 +73980,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(619), 24, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73754,74 +74005,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [4569] = 35, - ACTIONS(2181), 1, + [4295] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2461), 1, + ACTIONS(2771), 1, aux_sym_target_token1, - ACTIONS(3626), 1, + ACTIONS(3706), 1, aux_sym_pandoc_span_token1, - STATE(1319), 1, + STATE(1424), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3204), 1, + STATE(3266), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73829,7 +74080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73853,74 +74104,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4703] = 35, - ACTIONS(2181), 1, + [4429] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2461), 1, + ACTIONS(2771), 1, aux_sym_target_token1, - ACTIONS(3628), 1, + ACTIONS(3708), 1, aux_sym_pandoc_span_token1, - STATE(1321), 1, + STATE(1427), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3205), 1, + STATE(3267), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73928,7 +74179,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73952,71 +74203,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4837] = 33, - ACTIONS(2181), 1, + [4563] = 33, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3624), 1, - sym__whitespace, - ACTIONS(3632), 1, + ACTIONS(3712), 1, aux_sym_pandoc_span_token1, - ACTIONS(3634), 2, + ACTIONS(3716), 1, + sym__whitespace, + ACTIONS(3714), 2, sym__soft_line_ending, aux_sym_target_token1, - ACTIONS(3630), 7, + ACTIONS(3710), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74024,7 +74275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74049,71 +74300,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [4967] = 33, - ACTIONS(3639), 1, + [4693] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3642), 1, - aux_sym_pandoc_span_token1, - ACTIONS(3644), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3649), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3652), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3655), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3658), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3661), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3664), 1, - sym__whitespace, - ACTIONS(3667), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3670), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3673), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3676), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3679), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3682), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3685), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3688), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3691), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3694), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3697), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3700), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3703), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3706), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3709), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3712), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3715), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3718), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(3721), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3724), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(3727), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, - sym__soft_line_ending, + ACTIONS(2605), 1, aux_sym_target_token1, - ACTIONS(3636), 7, + ACTIONS(3718), 1, + aux_sym_pandoc_span_token1, + STATE(1474), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3187), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74121,7 +74375,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74145,75 +74399,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [5097] = 35, - ACTIONS(2181), 1, + [4827] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(2549), 1, - aux_sym_target_token1, - ACTIONS(3730), 1, - aux_sym_pandoc_span_token1, - STATE(983), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3096), 1, - sym__inlines, - ACTIONS(2179), 7, + ACTIONS(3722), 1, + sym__whitespace, + ACTIONS(3714), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3720), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74221,7 +74470,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(649), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74245,74 +74494,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5231] = 35, - ACTIONS(2181), 1, + aux_sym__line_repeat1, + [4955] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2471), 1, + ACTIONS(2781), 1, aux_sym_target_token1, - ACTIONS(3732), 1, + ACTIONS(3724), 1, aux_sym_pandoc_span_token1, - STATE(1346), 1, + STATE(1114), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3234), 1, + STATE(3220), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74320,7 +74570,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74344,74 +74594,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5365] = 35, - ACTIONS(2181), 1, + [5089] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2471), 1, + ACTIONS(2781), 1, aux_sym_target_token1, - ACTIONS(3734), 1, + ACTIONS(3726), 1, aux_sym_pandoc_span_token1, - STATE(1348), 1, + STATE(1116), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3235), 1, + STATE(3221), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74419,7 +74669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74443,74 +74693,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5499] = 35, - ACTIONS(2181), 1, + [5223] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2411), 1, + ACTIONS(2423), 1, aux_sym_target_token1, - ACTIONS(3736), 1, + ACTIONS(3728), 1, aux_sym_pandoc_span_token1, - STATE(1445), 1, + STATE(983), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3163), 1, + STATE(3096), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74518,7 +74768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74542,74 +74792,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5633] = 35, - ACTIONS(2181), 1, + [5357] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2481), 1, + ACTIONS(2605), 1, aux_sym_target_token1, - ACTIONS(3738), 1, + ACTIONS(3730), 1, aux_sym_pandoc_span_token1, - STATE(1424), 1, + STATE(1476), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3266), 1, + STATE(3188), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74617,7 +74867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74641,74 +74891,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5767] = 35, - ACTIONS(2181), 1, + [5491] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2481), 1, + ACTIONS(2741), 1, aux_sym_target_token1, - ACTIONS(3740), 1, + ACTIONS(3732), 1, aux_sym_pandoc_span_token1, - STATE(1427), 1, + STATE(1292), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3267), 1, + STATE(3175), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74716,7 +74966,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74740,72 +74990,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5901] = 34, - ACTIONS(3469), 1, - sym__pipe_table_delimiter, - ACTIONS(3744), 1, + [5625] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3746), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3748), 1, + ACTIONS(2349), 1, + aux_sym_target_token1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3750), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3752), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3756), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3758), 1, - sym__whitespace, - ACTIONS(3760), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3762), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3764), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3766), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3768), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3770), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3772), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3774), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3776), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3778), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3780), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3782), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3784), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3786), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3788), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3790), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3792), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3794), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(3796), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3798), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(3800), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - STATE(3322), 1, - sym_pipe_table_cell, - STATE(3402), 1, - sym__line_with_maybe_spaces, - ACTIONS(3742), 7, + ACTIONS(3734), 1, + aux_sym_pandoc_span_token1, + STATE(1140), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3098), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74813,7 +75065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(702), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74837,73 +75089,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [6033] = 34, - ACTIONS(2741), 1, - sym__pipe_table_delimiter, - ACTIONS(3744), 1, + [5759] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3746), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3748), 1, + ACTIONS(2349), 1, + aux_sym_target_token1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3750), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3752), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3756), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3758), 1, - sym__whitespace, - ACTIONS(3760), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3762), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3764), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3766), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3768), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3770), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3772), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3774), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3776), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3778), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3780), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3782), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3784), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3786), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3788), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3790), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3792), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3794), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(3796), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3798), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(3800), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - STATE(3373), 1, - sym_pipe_table_cell, - STATE(3402), 1, - sym__line_with_maybe_spaces, - ACTIONS(3742), 7, + ACTIONS(3736), 1, + aux_sym_pandoc_span_token1, + STATE(1142), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3100), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74911,7 +75164,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(702), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74935,75 +75188,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, - [6165] = 35, - ACTIONS(2181), 1, + [5893] = 33, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2491), 1, - aux_sym_target_token1, - ACTIONS(3802), 1, + ACTIONS(3716), 1, + sym__whitespace, + ACTIONS(3740), 1, aux_sym_pandoc_span_token1, - STATE(1114), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3220), 1, - sym__inlines, - ACTIONS(2179), 7, + ACTIONS(3742), 2, + sym__soft_line_ending, + aux_sym_target_token1, + ACTIONS(3738), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75011,7 +75260,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75035,74 +75284,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [6299] = 35, - ACTIONS(2181), 1, + aux_sym__line_repeat1, + [6023] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2491), 1, + ACTIONS(2665), 1, aux_sym_target_token1, - ACTIONS(3804), 1, + ACTIONS(3744), 1, aux_sym_pandoc_span_token1, - STATE(1116), 1, + STATE(1443), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3221), 1, + STATE(3157), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75110,7 +75360,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75134,72 +75384,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [6433] = 34, - ACTIONS(2051), 1, + [6157] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2055), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2057), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2059), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2063), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2069), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2071), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2073), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2075), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2077), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2079), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2081), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2083), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2085), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2087), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2089), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2091), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2093), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2095), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2097), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2099), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2101), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2103), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2105), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2107), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2109), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3806), 1, - sym__whitespace, - STATE(289), 1, - aux_sym_pipe_table_row_repeat1, - STATE(2766), 1, - sym__line_with_maybe_spaces, - STATE(2775), 1, - sym_pipe_table_cell, - ACTIONS(2049), 7, + ACTIONS(2665), 1, + aux_sym_target_token1, + ACTIONS(3746), 1, + aux_sym_pandoc_span_token1, + STATE(1445), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3163), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75207,7 +75459,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75231,75 +75483,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [6565] = 35, - ACTIONS(2181), 1, + [6291] = 34, + ACTIONS(3471), 1, + sym__pipe_table_delimiter, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3752), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3756), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3760), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3762), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3764), 1, + sym__whitespace, + ACTIONS(3766), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3768), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3770), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3772), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3774), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3776), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3778), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3780), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3782), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3784), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3786), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3788), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3790), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3792), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3794), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3796), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3798), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3800), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3802), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3804), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3806), 1, sym__emphasis_open_underscore, - ACTIONS(2441), 1, - aux_sym_target_token1, - ACTIONS(3808), 1, - aux_sym_pandoc_span_token1, - STATE(1238), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3127), 1, - sym__inlines, - ACTIONS(2179), 7, + STATE(3322), 1, + sym_pipe_table_cell, + STATE(3402), 1, + sym__line_with_maybe_spaces, + ACTIONS(3748), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75307,7 +75556,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(694), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75331,74 +75580,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [6699] = 35, - ACTIONS(2181), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [6423] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2501), 1, + ACTIONS(2741), 1, aux_sym_target_token1, - ACTIONS(3810), 1, + ACTIONS(3808), 1, aux_sym_pandoc_span_token1, - STATE(1142), 1, + STATE(1294), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3100), 1, + STATE(3176), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75406,7 +75656,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75430,74 +75680,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [6833] = 35, - ACTIONS(2181), 1, + [6557] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2391), 1, + ACTIONS(2799), 1, aux_sym_target_token1, - ACTIONS(3812), 1, + ACTIONS(3810), 1, aux_sym_pandoc_span_token1, - STATE(1474), 1, + STATE(1166), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3187), 1, + STATE(3223), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75505,7 +75755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75529,74 +75779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [6967] = 35, - ACTIONS(2181), 1, + [6691] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2391), 1, + ACTIONS(2799), 1, aux_sym_target_token1, - ACTIONS(3814), 1, + ACTIONS(3812), 1, aux_sym_pandoc_span_token1, - STATE(1476), 1, + STATE(1168), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3188), 1, + STATE(3224), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75604,7 +75854,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75628,74 +75878,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [7101] = 35, - ACTIONS(2181), 1, + [6825] = 33, + ACTIONS(3817), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3820), 1, + aux_sym_pandoc_span_token1, + ACTIONS(3822), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3825), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3828), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3831), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3834), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3837), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3840), 1, + sym__whitespace, + ACTIONS(3843), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3846), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3849), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3852), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3855), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3858), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3861), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3864), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3867), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3870), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3873), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3876), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3879), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3882), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3885), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3888), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3891), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3894), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3897), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3900), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3903), 1, sym__emphasis_open_underscore, - ACTIONS(2511), 1, + ACTIONS(3641), 2, + sym__soft_line_ending, aux_sym_target_token1, - ACTIONS(3816), 1, - aux_sym_pandoc_span_token1, - STATE(1166), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3223), 1, - sym__inlines, - ACTIONS(2179), 7, + ACTIONS(3814), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75703,7 +75950,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75727,74 +75974,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [7235] = 35, - ACTIONS(2181), 1, + aux_sym__line_repeat1, + [6955] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2511), 1, + ACTIONS(2809), 1, aux_sym_target_token1, - ACTIONS(3818), 1, + ACTIONS(3906), 1, aux_sym_pandoc_span_token1, - STATE(1168), 1, + STATE(1026), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3224), 1, + STATE(3288), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75802,7 +76050,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75826,70 +76074,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [7369] = 32, - ACTIONS(9), 1, + [7089] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3822), 1, - sym__whitespace, - ACTIONS(3634), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(3820), 7, + ACTIONS(2809), 1, + aux_sym_target_token1, + ACTIONS(3908), 1, + aux_sym_pandoc_span_token1, + STATE(1032), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3289), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75897,7 +76149,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75921,75 +76173,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [7497] = 35, - ACTIONS(2181), 1, + [7223] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2521), 1, + ACTIONS(2731), 1, aux_sym_target_token1, - ACTIONS(3824), 1, + ACTIONS(3910), 1, aux_sym_pandoc_span_token1, - STATE(1026), 1, + STATE(1238), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3288), 1, + STATE(3127), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75997,7 +76248,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76021,74 +76272,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [7631] = 35, - ACTIONS(2181), 1, + [7357] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2521), 1, + ACTIONS(2711), 1, aux_sym_target_token1, - ACTIONS(3826), 1, + ACTIONS(3912), 1, aux_sym_pandoc_span_token1, - STATE(1032), 1, + STATE(1503), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3289), 1, + STATE(3304), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76096,7 +76347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76120,164 +76371,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [7765] = 34, - ACTIONS(3011), 1, + [7491] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3828), 1, - sym__whitespace, - STATE(585), 1, - aux_sym_pipe_table_row_repeat1, - STATE(3154), 1, - sym_pipe_table_cell, - STATE(3193), 1, - sym__line_with_maybe_spaces, - ACTIONS(3009), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(669), 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, - [7897] = 35, - ACTIONS(2181), 1, - anon_sym_LBRACK, - ACTIONS(2185), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2819), 1, aux_sym_target_token1, - ACTIONS(2189), 1, - anon_sym_DOLLAR, - ACTIONS(2191), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, - anon_sym_LBRACE, - ACTIONS(2195), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, - anon_sym_PIPE, - ACTIONS(2203), 1, - sym__code_span_start, - ACTIONS(2205), 1, - sym__highlight_span_start, - ACTIONS(2207), 1, - sym__insert_span_start, - ACTIONS(2209), 1, - sym__delete_span_start, - ACTIONS(2211), 1, - sym__edit_comment_span_start, - ACTIONS(2213), 1, - sym__single_quote_span_open, - ACTIONS(2215), 1, - sym__double_quote_span_open, - ACTIONS(2217), 1, - sym__shortcode_open_escaped, - ACTIONS(2219), 1, - sym__shortcode_open, - ACTIONS(2221), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, - sym__cite_author_in_text, - ACTIONS(2227), 1, - sym__cite_suppress_author, - ACTIONS(2229), 1, - sym__strikeout_open, - ACTIONS(2231), 1, - sym__subscript_open, - ACTIONS(2233), 1, - sym__superscript_open, - ACTIONS(2235), 1, - sym__inline_note_start_token, - ACTIONS(2237), 1, - sym__strong_emphasis_open_star, - ACTIONS(2239), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, - sym__emphasis_open_star, - ACTIONS(2243), 1, - sym__emphasis_open_underscore, - ACTIONS(3830), 1, + ACTIONS(3914), 1, aux_sym_pandoc_span_token1, STATE(1868), 1, sym_target, @@ -76285,7 +76438,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line, STATE(3313), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76293,7 +76446,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76317,66 +76470,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8031] = 35, - ACTIONS(2181), 1, + [7625] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2187), 1, - aux_sym_target_token1, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3832), 1, + ACTIONS(2819), 1, + aux_sym_target_token1, + ACTIONS(3916), 1, aux_sym_pandoc_span_token1, STATE(1870), 1, sym_target, @@ -76384,7 +76537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line, STATE(3045), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76392,7 +76545,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76416,74 +76569,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8165] = 35, - ACTIONS(2181), 1, + [7759] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2535), 1, + ACTIONS(2721), 1, aux_sym_target_token1, - ACTIONS(3834), 1, + ACTIONS(3918), 1, aux_sym_pandoc_span_token1, - STATE(968), 1, + STATE(1274), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3069), 1, + STATE(3048), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76491,7 +76644,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76515,74 +76668,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8299] = 35, - ACTIONS(2181), 1, + [7893] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2535), 1, + ACTIONS(2829), 1, aux_sym_target_token1, - ACTIONS(3836), 1, + ACTIONS(3920), 1, aux_sym_pandoc_span_token1, - STATE(970), 1, + STATE(968), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3070), 1, + STATE(3069), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76590,7 +76743,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76614,70 +76767,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8433] = 32, - ACTIONS(3841), 1, + [8027] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3844), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3847), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3850), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3853), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3856), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3859), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3862), 1, - sym__whitespace, - ACTIONS(3865), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3868), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3871), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3874), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3877), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3880), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3883), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3886), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3889), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3892), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3895), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3898), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3901), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3904), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3907), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3910), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3913), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3916), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(3919), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3922), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(3925), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(3838), 7, + ACTIONS(2829), 1, + aux_sym_target_token1, + ACTIONS(3922), 1, + aux_sym_pandoc_span_token1, + STATE(970), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3070), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76685,7 +76842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76709,75 +76866,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [8561] = 35, - ACTIONS(2181), 1, + [8161] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2421), 1, + ACTIONS(2721), 1, aux_sym_target_token1, - ACTIONS(3928), 1, + ACTIONS(3924), 1, aux_sym_pandoc_span_token1, - STATE(1501), 1, + STATE(1267), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3297), 1, + STATE(3053), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76785,7 +76941,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76809,74 +76965,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8695] = 35, - ACTIONS(2181), 1, + [8295] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2421), 1, + ACTIONS(2423), 1, aux_sym_target_token1, - ACTIONS(3930), 1, + ACTIONS(3926), 1, aux_sym_pandoc_span_token1, - STATE(1503), 1, + STATE(982), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3304), 1, + STATE(3225), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76884,7 +77040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76908,74 +77064,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8829] = 35, - ACTIONS(2181), 1, + [8429] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2411), 1, + ACTIONS(2731), 1, aux_sym_target_token1, - ACTIONS(3932), 1, + ACTIONS(3928), 1, aux_sym_pandoc_span_token1, - STATE(1443), 1, + STATE(1266), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3157), 1, + STATE(3128), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76983,7 +77139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77007,74 +77163,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [8963] = 35, - ACTIONS(2181), 1, + [8563] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2431), 1, + ACTIONS(2751), 1, aux_sym_target_token1, - ACTIONS(3934), 1, + ACTIONS(3930), 1, aux_sym_pandoc_span_token1, - STATE(1274), 1, + STATE(1319), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3048), 1, + STATE(3204), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77082,7 +77238,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77106,74 +77262,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [9097] = 35, - ACTIONS(2181), 1, + [8697] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(2431), 1, + ACTIONS(2751), 1, aux_sym_target_token1, - ACTIONS(3936), 1, + ACTIONS(3932), 1, aux_sym_pandoc_span_token1, - STATE(1267), 1, + STATE(1321), 1, sym_target, STATE(2865), 1, sym__line, - STATE(3053), 1, + STATE(3205), 1, sym__inlines, - ACTIONS(2179), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77181,7 +77337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77205,7 +77361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [9231] = 32, + [8831] = 32, ACTIONS(9), 1, anon_sym_LBRACK, ACTIONS(11), 1, @@ -77262,13 +77418,13 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(3822), 1, + ACTIONS(3722), 1, sym__whitespace, - ACTIONS(3622), 3, + ACTIONS(3742), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - ACTIONS(3938), 7, + ACTIONS(3934), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77276,7 +77432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(638), 24, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77301,74 +77457,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9359] = 35, - ACTIONS(2181), 1, + [8959] = 34, + ACTIONS(2883), 1, + sym__pipe_table_delimiter, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(3752), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(3756), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(3760), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(3762), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(3764), 1, + sym__whitespace, + ACTIONS(3766), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(3768), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(3770), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(3772), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(3774), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(3776), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(3778), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(3780), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(3782), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(3784), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(3786), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(3788), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(3790), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(3792), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(3794), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(3796), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(3798), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(3800), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(3802), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(3804), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(3806), 1, sym__emphasis_open_underscore, - ACTIONS(2501), 1, - aux_sym_target_token1, - ACTIONS(3940), 1, - aux_sym_pandoc_span_token1, - STATE(1140), 1, - sym_target, - STATE(2865), 1, - sym__line, - STATE(3098), 1, - sym__inlines, - ACTIONS(2179), 7, + STATE(3373), 1, + sym_pipe_table_cell, + STATE(3402), 1, + sym__line_with_maybe_spaces, + ACTIONS(3748), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77376,7 +77530,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(694), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77400,69 +77554,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [9493] = 32, - ACTIONS(3409), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [9091] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3944), 1, - sym__whitespace, - ACTIONS(3622), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(3942), 7, + ACTIONS(2761), 1, + aux_sym_target_token1, + ACTIONS(3936), 1, + aux_sym_pandoc_span_token1, + STATE(1346), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3234), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77470,7 +77630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77494,70 +77654,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [9620] = 32, - ACTIONS(3948), 1, + [9225] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3962), 1, - sym__whitespace, - ACTIONS(3964), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(3946), 7, + ACTIONS(2761), 1, + aux_sym_target_token1, + ACTIONS(3938), 1, + aux_sym_pandoc_span_token1, + STATE(1348), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3235), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77565,7 +77729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(656), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77589,70 +77753,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [9747] = 32, - ACTIONS(3948), 1, + [9359] = 35, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(3962), 1, - sym__whitespace, - ACTIONS(3964), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(4006), 7, + ACTIONS(2711), 1, + aux_sym_target_token1, + ACTIONS(3940), 1, + aux_sym_pandoc_span_token1, + STATE(1501), 1, + sym_target, + STATE(2865), 1, + sym__line, + STATE(3297), 1, + sym__inlines, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77660,7 +77828,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(657), 24, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77684,70 +77852,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [9874] = 32, - ACTIONS(4011), 1, + [9493] = 32, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3948), 1, anon_sym_BANG_LBRACK, - ACTIONS(4017), 1, + ACTIONS(3951), 1, anon_sym_DOLLAR, - ACTIONS(4020), 1, + ACTIONS(3954), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4023), 1, + ACTIONS(3957), 1, anon_sym_LBRACE, - ACTIONS(4026), 1, + ACTIONS(3960), 1, aux_sym_pandoc_str_token1, - ACTIONS(4029), 1, + ACTIONS(3963), 1, anon_sym_PIPE, - ACTIONS(4032), 1, + ACTIONS(3966), 1, sym__whitespace, - ACTIONS(4035), 1, + ACTIONS(3969), 1, sym__code_span_start, - ACTIONS(4038), 1, + ACTIONS(3972), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(3975), 1, sym__insert_span_start, - ACTIONS(4044), 1, + ACTIONS(3978), 1, sym__delete_span_start, - ACTIONS(4047), 1, + ACTIONS(3981), 1, sym__edit_comment_span_start, - ACTIONS(4050), 1, + ACTIONS(3984), 1, sym__single_quote_span_open, - ACTIONS(4053), 1, + ACTIONS(3987), 1, sym__double_quote_span_open, - ACTIONS(4056), 1, + ACTIONS(3990), 1, sym__shortcode_open_escaped, - ACTIONS(4059), 1, + ACTIONS(3993), 1, sym__shortcode_open, - ACTIONS(4062), 1, + ACTIONS(3996), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4065), 1, + ACTIONS(3999), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4068), 1, + ACTIONS(4002), 1, sym__cite_author_in_text, - ACTIONS(4071), 1, + ACTIONS(4005), 1, sym__cite_suppress_author, - ACTIONS(4074), 1, + ACTIONS(4008), 1, sym__strikeout_open, - ACTIONS(4077), 1, + ACTIONS(4011), 1, sym__subscript_open, - ACTIONS(4080), 1, + ACTIONS(4014), 1, sym__superscript_open, - ACTIONS(4083), 1, + ACTIONS(4017), 1, sym__inline_note_start_token, - ACTIONS(4086), 1, + ACTIONS(4020), 1, sym__strong_emphasis_open_star, - ACTIONS(4089), 1, + ACTIONS(4023), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4092), 1, + ACTIONS(4026), 1, sym__emphasis_open_star, - ACTIONS(4095), 1, + ACTIONS(4029), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(4008), 7, + sym__double_quote_span_close, + ACTIONS(3942), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77755,7 +77922,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(657), 24, + STATE(654), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77780,69 +77947,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10001] = 32, - ACTIONS(4100), 1, + [9620] = 32, + ACTIONS(4035), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4038), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4041), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4047), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4114), 1, + ACTIONS(4056), 1, sym__whitespace, - ACTIONS(4116), 1, + ACTIONS(4059), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4062), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4065), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4068), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4071), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4074), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4077), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4080), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4083), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4086), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4089), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4092), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4095), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4098), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4101), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4104), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4107), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4110), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4113), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4116), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4119), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(4098), 7, + sym__single_quote_span_close, + ACTIONS(4032), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77850,7 +78017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(659), 24, + STATE(655), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77875,69 +78042,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10128] = 32, - ACTIONS(4161), 1, + [9747] = 32, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4164), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4167), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4170), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4173), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4176), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4182), 1, + ACTIONS(4138), 1, sym__whitespace, - ACTIONS(4185), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4188), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4191), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4194), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4197), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4200), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4203), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4206), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4209), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4212), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4215), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4221), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4224), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4227), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4230), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4233), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4236), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4239), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4242), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4245), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3742), 2, sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(4158), 7, + sym__single_quote_span_close, + ACTIONS(4122), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77945,7 +78112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(659), 24, + STATE(655), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77970,69 +78137,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10255] = 32, - ACTIONS(4250), 1, + [9874] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4264), 1, + ACTIONS(4198), 1, sym__whitespace, - ACTIONS(4266), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3742), 2, sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(4248), 7, + sym__subscript_close, + ACTIONS(4182), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78040,7 +78207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(661), 24, + STATE(659), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78065,69 +78232,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10382] = 32, - ACTIONS(4311), 1, + [10001] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4314), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4317), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4320), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4323), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4326), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4329), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4332), 1, + ACTIONS(4258), 1, sym__whitespace, - ACTIONS(4335), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4338), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4341), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4344), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4347), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4350), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4353), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4356), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4359), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4362), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4365), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4368), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4371), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4374), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4377), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4380), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4383), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4386), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4389), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4392), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3714), 2, sym__soft_line_ending, sym__strong_emphasis_close_underscore, - ACTIONS(4308), 7, + ACTIONS(4242), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78160,69 +78327,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10509] = 32, - ACTIONS(4400), 1, + [10128] = 32, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4308), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(4311), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(4317), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(4323), 1, anon_sym_PIPE, - ACTIONS(4414), 1, + ACTIONS(4326), 1, sym__whitespace, - ACTIONS(4416), 1, + ACTIONS(4329), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(4332), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(4335), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(4338), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(4341), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(4344), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(4347), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(4350), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(4353), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(4356), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(4359), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(4362), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(4365), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(4368), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(4371), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(4374), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(4377), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(4380), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(4383), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(4386), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(4389), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4398), 7, + sym__subscript_close, + ACTIONS(4302), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78230,7 +78397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 24, + STATE(659), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78255,69 +78422,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10636] = 32, - ACTIONS(4461), 1, + [10255] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(4464), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(4467), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(4470), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4473), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4476), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(4479), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4482), 1, + ACTIONS(4408), 1, sym__whitespace, - ACTIONS(4485), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(4488), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(4491), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(4494), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(4497), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(4500), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(4503), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(4506), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(4509), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(4512), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4515), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4518), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(4521), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(4524), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(4527), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(4530), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(4533), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(4536), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(4539), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4542), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(4545), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3742), 2, sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(4458), 7, + sym__strong_emphasis_close_star, + ACTIONS(4392), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78325,7 +78492,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(663), 24, + STATE(670), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78350,69 +78517,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10763] = 32, - ACTIONS(3085), 1, + [10382] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4258), 1, + sym__whitespace, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, - ACTIONS(4550), 1, - sym__whitespace, - ACTIONS(3622), 2, + ACTIONS(3742), 2, sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(4548), 7, + sym__strong_emphasis_close_underscore, + ACTIONS(4452), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78420,7 +78587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 24, + STATE(674), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78445,69 +78612,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10890] = 32, - ACTIONS(4100), 1, + [10509] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4114), 1, + ACTIONS(4470), 1, sym__whitespace, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(3742), 2, sym__soft_line_ending, sym__strikeout_close, - ACTIONS(4552), 7, + ACTIONS(4454), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78515,7 +78682,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(658), 24, + STATE(675), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78540,69 +78707,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [11017] = 32, - ACTIONS(4556), 1, + [10636] = 32, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4570), 1, + ACTIONS(4138), 1, sym__whitespace, - ACTIONS(4572), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(3714), 2, sym__soft_line_ending, sym__single_quote_span_close, - ACTIONS(4554), 7, + ACTIONS(4514), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78610,7 +78777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(679), 24, + STATE(656), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78635,69 +78802,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [11144] = 32, - ACTIONS(3085), 1, + [10763] = 32, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(4550), 1, + ACTIONS(4518), 1, sym__whitespace, - ACTIONS(3634), 2, + ACTIONS(3742), 2, sym__soft_line_ending, aux_sym_insert_token1, - ACTIONS(4614), 7, + ACTIONS(4516), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78705,7 +78872,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(663), 24, + STATE(665), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78730,69 +78897,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [11271] = 32, - ACTIONS(4250), 1, + [10890] = 32, + ACTIONS(4523), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4526), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4535), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4538), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4541), 1, anon_sym_PIPE, - ACTIONS(4264), 1, + ACTIONS(4544), 1, sym__whitespace, - ACTIONS(4266), 1, + ACTIONS(4547), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4550), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4553), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4556), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4559), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4562), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4565), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4568), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4571), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4577), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4580), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4583), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4586), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4589), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4595), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4601), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4604), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4607), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(4616), 7, + aux_sym_insert_token1, + ACTIONS(4520), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78800,7 +78967,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(660), 24, + STATE(665), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78825,69 +78992,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [11398] = 32, - ACTIONS(3011), 1, + [11017] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(3013), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(3015), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(3017), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3019), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(3023), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(3027), 1, + ACTIONS(4626), 1, + sym__whitespace, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(3029), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(3031), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(3033), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(3035), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(3037), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(3039), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(3041), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(3043), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(3045), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3047), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3049), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(3051), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(3053), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(3055), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(3057), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(3059), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(3061), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(3063), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3065), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(3067), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - ACTIONS(3467), 1, - sym__whitespace, - ACTIONS(3573), 2, - sym__line_ending, - sym__pipe_table_delimiter, - ACTIONS(4618), 7, + ACTIONS(3714), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(4610), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78895,7 +79062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(671), 24, + STATE(688), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78919,70 +79086,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [11525] = 32, - ACTIONS(4623), 1, + aux_sym__line_repeat1, + [11144] = 32, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4626), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4632), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4635), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4638), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4641), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4644), 1, + ACTIONS(4686), 1, sym__whitespace, - ACTIONS(4647), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4650), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4653), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4656), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4659), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4662), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4665), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4668), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4671), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4674), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4677), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4680), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4683), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4686), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4689), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4692), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(4695), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(4698), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(4701), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4704), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(4707), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3714), 2, sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4620), 7, + sym__double_quote_span_close, + ACTIONS(4670), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78990,7 +79157,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, @@ -79015,69 +79182,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [11652] = 32, - ACTIONS(4713), 1, + [11271] = 32, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4716), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4719), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4722), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4725), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4728), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4731), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4734), 1, + ACTIONS(4686), 1, sym__whitespace, - ACTIONS(4737), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4740), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4743), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4746), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4749), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4752), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4755), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4758), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4761), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4764), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4767), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4770), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4773), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4776), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4779), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4782), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(4785), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(4788), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(4791), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4794), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(4797), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(3502), 2, - sym__line_ending, - sym__pipe_table_delimiter, - ACTIONS(4710), 7, + ACTIONS(3742), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(4730), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79085,7 +79252,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(671), 24, + STATE(654), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79109,70 +79276,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [11779] = 32, - ACTIONS(4802), 1, + aux_sym__line_repeat1, + [11398] = 32, + ACTIONS(4735), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4738), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4741), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4744), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4747), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4750), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4753), 1, anon_sym_PIPE, - ACTIONS(4816), 1, + ACTIONS(4756), 1, sym__whitespace, - ACTIONS(4818), 1, + ACTIONS(4759), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4762), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4765), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4768), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4771), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4774), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4777), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4780), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4783), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4786), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4789), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4792), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4795), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4798), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4801), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4807), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4813), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4816), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4819), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__subscript_close, - ACTIONS(4800), 7, + sym__emphasis_close_underscore, + ACTIONS(4732), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79180,7 +79347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(675), 24, + STATE(669), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79205,69 +79372,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [11906] = 32, - ACTIONS(4863), 1, + [11525] = 32, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(4866), 1, + ACTIONS(4828), 1, anon_sym_BANG_LBRACK, - ACTIONS(4869), 1, + ACTIONS(4831), 1, anon_sym_DOLLAR, - ACTIONS(4872), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4875), 1, + ACTIONS(4837), 1, anon_sym_LBRACE, - ACTIONS(4878), 1, + ACTIONS(4840), 1, aux_sym_pandoc_str_token1, - ACTIONS(4881), 1, + ACTIONS(4843), 1, anon_sym_PIPE, - ACTIONS(4884), 1, + ACTIONS(4846), 1, sym__whitespace, - ACTIONS(4887), 1, + ACTIONS(4849), 1, sym__code_span_start, - ACTIONS(4890), 1, + ACTIONS(4852), 1, sym__highlight_span_start, - ACTIONS(4893), 1, + ACTIONS(4855), 1, sym__insert_span_start, - ACTIONS(4896), 1, + ACTIONS(4858), 1, sym__delete_span_start, - ACTIONS(4899), 1, + ACTIONS(4861), 1, sym__edit_comment_span_start, - ACTIONS(4902), 1, + ACTIONS(4864), 1, sym__single_quote_span_open, - ACTIONS(4905), 1, + ACTIONS(4867), 1, sym__double_quote_span_open, - ACTIONS(4908), 1, + ACTIONS(4870), 1, sym__shortcode_open_escaped, - ACTIONS(4911), 1, + ACTIONS(4873), 1, sym__shortcode_open, - ACTIONS(4914), 1, + ACTIONS(4876), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4917), 1, + ACTIONS(4879), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4920), 1, + ACTIONS(4882), 1, sym__cite_author_in_text, - ACTIONS(4923), 1, + ACTIONS(4885), 1, sym__cite_suppress_author, - ACTIONS(4926), 1, + ACTIONS(4888), 1, sym__strikeout_open, - ACTIONS(4929), 1, + ACTIONS(4891), 1, sym__subscript_open, - ACTIONS(4932), 1, + ACTIONS(4894), 1, sym__superscript_open, - ACTIONS(4935), 1, + ACTIONS(4897), 1, sym__inline_note_start_token, - ACTIONS(4938), 1, + ACTIONS(4900), 1, sym__strong_emphasis_open_star, - ACTIONS(4941), 1, + ACTIONS(4903), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4944), 1, + ACTIONS(4906), 1, sym__emphasis_open_star, - ACTIONS(4947), 1, + ACTIONS(4909), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__single_quote_span_close, - ACTIONS(4860), 7, + sym__strong_emphasis_close_star, + ACTIONS(4822), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79275,7 +79442,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 24, + STATE(670), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79300,69 +79467,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12033] = 32, - ACTIONS(4952), 1, + [11652] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4966), 1, + ACTIONS(4470), 1, sym__whitespace, - ACTIONS(4968), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(3714), 2, sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(4950), 7, + sym__strikeout_close, + ACTIONS(4912), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79370,7 +79537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(680), 24, + STATE(662), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79395,69 +79562,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12160] = 32, - ACTIONS(5013), 1, + [11779] = 32, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(5016), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(5019), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(5022), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5025), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(5028), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(5031), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(5034), 1, - sym__whitespace, - ACTIONS(5037), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(5040), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(5043), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(5046), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(5049), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(5052), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(5055), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(5058), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(5061), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(5064), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5067), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5070), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(5073), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(5076), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(5079), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(5082), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(5085), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(5088), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(5091), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5094), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(5097), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(4916), 1, + sym__whitespace, + ACTIONS(3742), 2, sym__soft_line_ending, - sym__subscript_close, - ACTIONS(5010), 7, + aux_sym_inline_note_token1, + ACTIONS(4914), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79465,7 +79632,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(675), 24, + STATE(686), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79490,69 +79657,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12287] = 32, - ACTIONS(5102), 1, + [11906] = 32, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(5116), 1, - sym__whitespace, - ACTIONS(5118), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(4518), 1, + sym__whitespace, + ACTIONS(3714), 2, sym__soft_line_ending, - sym__superscript_close, - ACTIONS(5100), 7, + aux_sym_insert_token1, + ACTIONS(4918), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79560,7 +79727,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(677), 24, + STATE(664), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79585,69 +79752,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12414] = 32, - ACTIONS(5102), 1, + [12033] = 32, + ACTIONS(4923), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4926), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4929), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4932), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4938), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4941), 1, anon_sym_PIPE, - ACTIONS(5116), 1, + ACTIONS(4944), 1, sym__whitespace, - ACTIONS(5118), 1, + ACTIONS(4947), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4950), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4953), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4956), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4959), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4962), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4965), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4968), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4971), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4974), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4977), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4980), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4983), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4986), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4989), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4992), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4995), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4998), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(5001), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(5004), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(5007), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__superscript_close, - ACTIONS(5160), 7, + sym__strong_emphasis_close_underscore, + ACTIONS(4920), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79655,7 +79822,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 24, + STATE(674), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79680,69 +79847,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12541] = 32, - ACTIONS(5165), 1, + [12160] = 32, + ACTIONS(5013), 1, anon_sym_LBRACK, - ACTIONS(5168), 1, + ACTIONS(5016), 1, anon_sym_BANG_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5019), 1, anon_sym_DOLLAR, - ACTIONS(5174), 1, + ACTIONS(5022), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5177), 1, + ACTIONS(5025), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5028), 1, aux_sym_pandoc_str_token1, - ACTIONS(5183), 1, + ACTIONS(5031), 1, anon_sym_PIPE, - ACTIONS(5186), 1, + ACTIONS(5034), 1, sym__whitespace, - ACTIONS(5189), 1, + ACTIONS(5037), 1, sym__code_span_start, - ACTIONS(5192), 1, + ACTIONS(5040), 1, sym__highlight_span_start, - ACTIONS(5195), 1, + ACTIONS(5043), 1, sym__insert_span_start, - ACTIONS(5198), 1, + ACTIONS(5046), 1, sym__delete_span_start, - ACTIONS(5201), 1, + ACTIONS(5049), 1, sym__edit_comment_span_start, - ACTIONS(5204), 1, + ACTIONS(5052), 1, sym__single_quote_span_open, - ACTIONS(5207), 1, + ACTIONS(5055), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(5058), 1, sym__shortcode_open_escaped, - ACTIONS(5213), 1, + ACTIONS(5061), 1, sym__shortcode_open, - ACTIONS(5216), 1, + ACTIONS(5064), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5219), 1, + ACTIONS(5067), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5222), 1, + ACTIONS(5070), 1, sym__cite_author_in_text, - ACTIONS(5225), 1, + ACTIONS(5073), 1, sym__cite_suppress_author, - ACTIONS(5228), 1, + ACTIONS(5076), 1, sym__strikeout_open, - ACTIONS(5231), 1, + ACTIONS(5079), 1, sym__subscript_open, - ACTIONS(5234), 1, + ACTIONS(5082), 1, sym__superscript_open, - ACTIONS(5237), 1, + ACTIONS(5085), 1, sym__inline_note_start_token, - ACTIONS(5240), 1, + ACTIONS(5088), 1, sym__strong_emphasis_open_star, - ACTIONS(5243), 1, + ACTIONS(5091), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5246), 1, + ACTIONS(5094), 1, sym__emphasis_open_star, - ACTIONS(5249), 1, + ACTIONS(5097), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__superscript_close, - ACTIONS(5162), 7, + sym__strikeout_close, + ACTIONS(5010), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79750,7 +79917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 24, + STATE(675), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79775,69 +79942,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12668] = 32, - ACTIONS(4556), 1, + [12287] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4570), 1, + ACTIONS(4198), 1, sym__whitespace, - ACTIONS(4572), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3714), 2, sym__soft_line_ending, - sym__single_quote_span_close, - ACTIONS(5252), 7, + sym__subscript_close, + ACTIONS(5100), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79845,7 +80012,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 24, + STATE(657), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79870,69 +80037,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12795] = 32, - ACTIONS(4952), 1, + [12414] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4966), 1, + ACTIONS(4408), 1, sym__whitespace, - ACTIONS(4968), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3714), 2, sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(5254), 7, + sym__strong_emphasis_close_star, + ACTIONS(5102), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79940,7 +80107,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(687), 24, + STATE(660), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79965,69 +80132,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [12922] = 32, - ACTIONS(4400), 1, + [12541] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4414), 1, + ACTIONS(5120), 1, sym__whitespace, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, + ACTIONS(3714), 2, sym__soft_line_ending, sym__emphasis_close_star, - ACTIONS(5256), 7, + ACTIONS(5104), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80035,7 +80202,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(670), 24, + STATE(680), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80060,69 +80227,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [13049] = 32, - ACTIONS(3409), 1, + [12668] = 32, + ACTIONS(5167), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(5170), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(5173), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(5176), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(5182), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(5185), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(5188), 1, + sym__whitespace, + ACTIONS(5191), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(5194), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(5197), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(5200), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(5203), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(5206), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(5209), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(5212), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(5215), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(5218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(5221), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(5224), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(5227), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(5230), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(5233), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(5236), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(5239), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(5242), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(5245), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(5248), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(5251), 1, sym__emphasis_open_underscore, - ACTIONS(3944), 1, - sym__whitespace, - ACTIONS(3634), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(5258), 7, + sym__superscript_close, + ACTIONS(5164), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80130,7 +80297,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, @@ -80155,69 +80322,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [13176] = 32, - ACTIONS(5263), 1, + [12795] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(5266), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(5269), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(5272), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5275), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(5278), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(5281), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(5284), 1, + ACTIONS(5120), 1, sym__whitespace, - ACTIONS(5287), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(5290), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(5293), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(5296), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(5299), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(5302), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(5305), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(5308), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(5311), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(5314), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5317), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5320), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(5323), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(5326), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(5329), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(5332), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(5335), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(5338), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(5341), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5344), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(5347), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3742), 2, sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(5260), 7, + sym__emphasis_close_star, + ACTIONS(5254), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80250,69 +80417,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [13303] = 32, - ACTIONS(5352), 1, + [12922] = 32, + ACTIONS(3091), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(3093), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(3101), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(3103), 1, anon_sym_PIPE, - ACTIONS(5366), 1, - sym__whitespace, - ACTIONS(5368), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(5350), 7, + ACTIONS(3469), 1, + sym__whitespace, + ACTIONS(3475), 2, + sym__line_ending, + sym__pipe_table_delimiter, + ACTIONS(5256), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80320,7 +80487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 24, + STATE(682), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80344,70 +80511,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [13430] = 32, - ACTIONS(5352), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [13049] = 32, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5264), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(5267), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(5270), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(5273), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(5276), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(5279), 1, anon_sym_PIPE, - ACTIONS(5366), 1, + ACTIONS(5282), 1, sym__whitespace, - ACTIONS(5368), 1, + ACTIONS(5285), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(5288), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(5291), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(5294), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(5297), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(5300), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(5303), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(5306), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(5309), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(5312), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(5315), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(5318), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(5321), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(5324), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(5327), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(5330), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(5333), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(5336), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(5339), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(5342), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(5345), 1, sym__emphasis_open_underscore, - ACTIONS(3634), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(5410), 7, + ACTIONS(3519), 2, + sym__line_ending, + sym__pipe_table_delimiter, + ACTIONS(5258), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80415,7 +80582,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(686), 24, + STATE(682), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80439,70 +80606,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [13557] = 32, - ACTIONS(5415), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [13176] = 32, + ACTIONS(5351), 1, anon_sym_LBRACK, - ACTIONS(5418), 1, + ACTIONS(5354), 1, anon_sym_BANG_LBRACK, - ACTIONS(5421), 1, + ACTIONS(5357), 1, anon_sym_DOLLAR, - ACTIONS(5424), 1, + ACTIONS(5360), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5427), 1, + ACTIONS(5363), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5366), 1, aux_sym_pandoc_str_token1, - ACTIONS(5433), 1, + ACTIONS(5369), 1, anon_sym_PIPE, - ACTIONS(5436), 1, + ACTIONS(5372), 1, sym__whitespace, - ACTIONS(5439), 1, + ACTIONS(5375), 1, sym__code_span_start, - ACTIONS(5442), 1, + ACTIONS(5378), 1, sym__highlight_span_start, - ACTIONS(5445), 1, + ACTIONS(5381), 1, sym__insert_span_start, - ACTIONS(5448), 1, + ACTIONS(5384), 1, sym__delete_span_start, - ACTIONS(5451), 1, + ACTIONS(5387), 1, sym__edit_comment_span_start, - ACTIONS(5454), 1, + ACTIONS(5390), 1, sym__single_quote_span_open, - ACTIONS(5457), 1, + ACTIONS(5393), 1, sym__double_quote_span_open, - ACTIONS(5460), 1, + ACTIONS(5396), 1, sym__shortcode_open_escaped, - ACTIONS(5463), 1, + ACTIONS(5399), 1, sym__shortcode_open, - ACTIONS(5466), 1, + ACTIONS(5402), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5469), 1, + ACTIONS(5405), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5472), 1, + ACTIONS(5408), 1, sym__cite_author_in_text, - ACTIONS(5475), 1, + ACTIONS(5411), 1, sym__cite_suppress_author, - ACTIONS(5478), 1, + ACTIONS(5414), 1, sym__strikeout_open, - ACTIONS(5481), 1, + ACTIONS(5417), 1, sym__subscript_open, - ACTIONS(5484), 1, + ACTIONS(5420), 1, sym__superscript_open, - ACTIONS(5487), 1, + ACTIONS(5423), 1, sym__inline_note_start_token, - ACTIONS(5490), 1, + ACTIONS(5426), 1, sym__strong_emphasis_open_star, - ACTIONS(5493), 1, + ACTIONS(5429), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5496), 1, + ACTIONS(5432), 1, sym__emphasis_open_star, - ACTIONS(5499), 1, + ACTIONS(5435), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3641), 2, sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(5412), 7, + sym__emphasis_close_star, + ACTIONS(5348), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80510,7 +80677,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(686), 24, + STATE(683), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80535,69 +80702,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [13684] = 32, - ACTIONS(5505), 1, + [13303] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(5511), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(5514), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5517), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(5520), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(5523), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(5526), 1, + ACTIONS(5454), 1, sym__whitespace, - ACTIONS(5529), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(5532), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(5535), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(5538), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(5541), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(5544), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(5547), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(5550), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(5553), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(5556), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5559), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5562), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(5565), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(5568), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(5571), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(5574), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(5577), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(5580), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(5583), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5586), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(5589), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, - ACTIONS(3647), 2, + ACTIONS(3714), 2, sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(5502), 7, + sym__emphasis_close_underscore, + ACTIONS(5438), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80605,7 +80772,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(687), 24, + STATE(685), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80630,69 +80797,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [13811] = 32, - ACTIONS(4802), 1, + [13430] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(4816), 1, + ACTIONS(5454), 1, sym__whitespace, - ACTIONS(4818), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, - ACTIONS(3622), 2, + ACTIONS(3742), 2, sym__soft_line_ending, - sym__subscript_close, - ACTIONS(5592), 7, + sym__emphasis_close_underscore, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80700,7 +80867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(672), 24, + STATE(669), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80725,70 +80892,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [13938] = 33, - ACTIONS(4556), 1, + [13557] = 32, + ACTIONS(5503), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(5506), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(5509), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(5512), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(5515), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(5518), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(5521), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(5524), 1, + sym__whitespace, + ACTIONS(5527), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(5530), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(5533), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(5536), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(5539), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(5542), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(5545), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(5548), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(5551), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(5554), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(5557), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(5560), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(5563), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(5566), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(5569), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(5572), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(5575), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(5578), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(5581), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(5584), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(5587), 1, sym__emphasis_open_underscore, - ACTIONS(5596), 1, - sym__single_quote_span_close, - STATE(2986), 1, - sym__line, - STATE(4080), 1, - sym__inlines, - ACTIONS(5594), 7, + ACTIONS(3641), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(5500), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80796,7 +80962,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(686), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80820,70 +80986,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14066] = 33, - ACTIONS(3085), 1, + aux_sym__line_repeat1, + [13684] = 32, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - ACTIONS(5598), 1, - aux_sym_insert_token1, - STATE(2931), 1, - sym__line, - STATE(4012), 1, - sym__inlines, - ACTIONS(3083), 7, + ACTIONS(4916), 1, + sym__whitespace, + ACTIONS(3714), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(5590), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80891,7 +81057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(672), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80915,70 +81081,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14194] = 33, - ACTIONS(4556), 1, + aux_sym__line_repeat1, + [13811] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4626), 1, + sym__whitespace, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - ACTIONS(5600), 1, - sym__single_quote_span_close, - STATE(2986), 1, - sym__line, - STATE(3763), 1, - sym__inlines, - ACTIONS(5594), 7, + ACTIONS(3742), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(5592), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80986,7 +81152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(679), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81010,70 +81176,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14322] = 33, - ACTIONS(4952), 1, + aux_sym__line_repeat1, + [13938] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5604), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5596), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3791), 1, + STATE(4120), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81081,7 +81248,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81105,70 +81272,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14450] = 33, - ACTIONS(4556), 1, + [14066] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5606), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5598), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3812), 1, + STATE(3510), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81176,7 +81343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81200,70 +81367,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14578] = 33, - ACTIONS(4952), 1, + [14194] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5608), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5600), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3813), 1, + STATE(3898), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81271,7 +81438,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81295,70 +81462,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14706] = 33, - ACTIONS(3085), 1, + [14322] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5610), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5602), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3755), 1, + STATE(3812), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81366,7 +81533,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81390,70 +81557,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14834] = 33, - ACTIONS(3085), 1, + [14450] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5612), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5606), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3848), 1, + STATE(3813), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81461,7 +81628,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81485,70 +81652,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14962] = 33, - ACTIONS(3085), 1, + [14578] = 32, + ACTIONS(3475), 1, + sym__pipe_table_delimiter, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(3752), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(3756), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3760), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3762), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3764), 1, + sym__whitespace, + ACTIONS(3766), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3768), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3770), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3772), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3774), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3776), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3778), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3780), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3782), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3784), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3786), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3788), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3790), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3792), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3794), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3796), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3798), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3800), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3802), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3804), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3806), 1, sym__emphasis_open_underscore, - ACTIONS(5614), 1, - aux_sym_insert_token1, - STATE(2931), 1, - sym__line, - STATE(3852), 1, - sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5608), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81556,7 +81721,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(774), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81580,70 +81745,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15090] = 33, - ACTIONS(3085), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [14704] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5616), 1, + ACTIONS(5610), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3853), 1, + STATE(3899), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81651,7 +81817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81675,70 +81841,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15218] = 33, - ACTIONS(3085), 1, + [14832] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5618), 1, + ACTIONS(5612), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3854), 1, + STATE(3848), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81746,7 +81912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81770,70 +81936,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15346] = 33, - ACTIONS(3085), 1, + [14960] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5620), 1, + ACTIONS(5614), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4014), 1, + STATE(3852), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81841,7 +82007,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81865,70 +82031,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15474] = 33, - ACTIONS(3085), 1, + [15088] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5622), 1, + ACTIONS(5616), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4020), 1, + STATE(3853), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81936,7 +82102,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81960,68 +82126,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15602] = 32, - ACTIONS(3573), 1, - sym__pipe_table_delimiter, - ACTIONS(3744), 1, + [15216] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3746), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3748), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3750), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3752), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3756), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3758), 1, - sym__whitespace, - ACTIONS(3760), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3762), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3764), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3766), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3768), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3770), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3772), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3774), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3776), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3778), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3780), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3782), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3784), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3786), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3788), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3790), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3792), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3794), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3796), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3798), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3800), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5624), 7, + ACTIONS(5618), 1, + aux_sym_insert_token1, + STATE(2931), 1, + sym__line, + STATE(3854), 1, + sym__inlines, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82029,7 +82197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(736), 24, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82053,71 +82221,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [15728] = 33, - ACTIONS(3085), 1, + [15344] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5626), 1, + ACTIONS(5620), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4033), 1, + STATE(3902), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82125,7 +82292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82149,68 +82316,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15856] = 33, - ACTIONS(4556), 1, + [15472] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5628), 1, + ACTIONS(5622), 1, sym__single_quote_span_close, STATE(2986), 1, sym__line, - STATE(3921), 1, + STATE(3701), 1, sym__inlines, ACTIONS(5594), 7, sym__html_comment, @@ -82220,7 +82387,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82244,70 +82411,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15984] = 33, - ACTIONS(4952), 1, + [15600] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5630), 1, + ACTIONS(5624), 1, sym__double_quote_span_close, STATE(2929), 1, sym__line, - STATE(3922), 1, + STATE(3702), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82315,7 +82482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82339,70 +82506,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16112] = 33, - ACTIONS(3085), 1, + [15728] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5632), 1, + ACTIONS(5626), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3956), 1, + STATE(3917), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82410,7 +82577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82434,70 +82601,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16240] = 33, - ACTIONS(3085), 1, + [15856] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5634), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5628), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3957), 1, + STATE(3921), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82505,7 +82672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82529,70 +82696,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16368] = 33, - ACTIONS(3085), 1, + [15984] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5636), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5630), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3958), 1, + STATE(3922), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82600,7 +82767,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82624,70 +82791,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16496] = 33, - ACTIONS(3085), 1, + [16112] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5638), 1, + ACTIONS(5632), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3959), 1, + STATE(3956), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82695,7 +82862,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82719,70 +82886,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16624] = 33, - ACTIONS(3085), 1, + [16240] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5640), 1, + ACTIONS(5634), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4201), 1, + STATE(3957), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82790,7 +82957,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82814,70 +82981,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16752] = 33, - ACTIONS(4952), 1, + [16368] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5642), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5636), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4081), 1, + STATE(3958), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82885,7 +83052,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82909,70 +83076,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16880] = 33, - ACTIONS(4556), 1, + [16496] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5644), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5638), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3701), 1, + STATE(3959), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82980,7 +83147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83004,70 +83171,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17008] = 33, - ACTIONS(4556), 1, + [16624] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5646), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5640), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4023), 1, + STATE(3775), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83075,7 +83242,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83099,70 +83266,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17136] = 33, - ACTIONS(4952), 1, + [16752] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5648), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5642), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4024), 1, + STATE(3778), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83170,7 +83337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83194,70 +83361,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17264] = 33, - ACTIONS(4556), 1, + [16880] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5650), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5644), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4204), 1, + STATE(3779), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83265,7 +83432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83289,70 +83456,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17392] = 33, - ACTIONS(3085), 1, + [17008] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5652), 1, + ACTIONS(5646), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3898), 1, + STATE(3780), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83360,7 +83527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83384,70 +83551,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17520] = 33, - ACTIONS(3085), 1, + [17136] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5654), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5648), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(4057), 1, + STATE(4023), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83455,7 +83622,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83479,70 +83646,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17648] = 33, - ACTIONS(3085), 1, + [17264] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5656), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5650), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(4058), 1, + STATE(4024), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83550,7 +83717,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83574,70 +83741,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17776] = 33, - ACTIONS(3085), 1, + [17392] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5658), 1, + ACTIONS(5652), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4059), 1, + STATE(3592), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83645,7 +83812,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83669,70 +83836,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17904] = 33, - ACTIONS(3085), 1, + [17520] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5660), 1, + ACTIONS(5654), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4060), 1, + STATE(4057), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83740,7 +83907,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83764,70 +83931,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18032] = 33, - ACTIONS(4952), 1, + [17648] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5662), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5656), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4205), 1, + STATE(4058), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83835,7 +84002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83859,70 +84026,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18160] = 33, - ACTIONS(3085), 1, + [17776] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5664), 1, + ACTIONS(5658), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3667), 1, + STATE(4059), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83930,7 +84097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83954,70 +84121,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18288] = 33, - ACTIONS(3085), 1, + [17904] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5666), 1, + ACTIONS(5660), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3899), 1, + STATE(4060), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84025,7 +84192,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84049,70 +84216,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18416] = 33, - ACTIONS(3085), 1, + [18032] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5662), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3902), 1, + STATE(4132), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84120,7 +84287,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84144,70 +84311,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18544] = 33, - ACTIONS(3085), 1, + [18160] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5670), 1, + ACTIONS(5664), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3917), 1, + STATE(4145), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84215,7 +84382,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84239,70 +84406,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18672] = 33, - ACTIONS(4556), 1, + [18288] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5672), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5666), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4120), 1, + STATE(4201), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84310,7 +84477,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84334,70 +84501,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18800] = 33, - ACTIONS(4952), 1, + [18416] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5674), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5668), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(4121), 1, + STATE(3515), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84405,7 +84572,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84429,70 +84596,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18928] = 33, - ACTIONS(4952), 1, + [18544] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5676), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5670), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3702), 1, + STATE(3938), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84500,7 +84667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84524,70 +84691,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19056] = 33, - ACTIONS(3085), 1, + [18672] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5678), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5672), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3489), 1, + STATE(3939), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84595,7 +84762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84619,70 +84786,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19184] = 33, - ACTIONS(3085), 1, + [18800] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5680), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5674), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(4195), 1, + STATE(4121), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84690,7 +84857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84714,70 +84881,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19312] = 33, - ACTIONS(3085), 1, + [18928] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5682), 1, + ACTIONS(5676), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4196), 1, + STATE(4195), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84785,7 +84952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84809,70 +84976,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19440] = 33, - ACTIONS(3085), 1, + [19056] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5678), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4197), 1, + STATE(4196), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84880,7 +85047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84904,70 +85071,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19568] = 33, - ACTIONS(3085), 1, + [19184] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5686), 1, + ACTIONS(5680), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4198), 1, + STATE(4197), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84975,7 +85142,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84999,70 +85166,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19696] = 33, - ACTIONS(3085), 1, + [19312] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5688), 1, + ACTIONS(5682), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3491), 1, + STATE(4198), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85070,7 +85237,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85094,70 +85261,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19824] = 33, - ACTIONS(3085), 1, + [19440] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5690), 1, + ACTIONS(5684), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3492), 1, + STATE(4012), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85165,7 +85332,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85189,68 +85356,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19952] = 32, - ACTIONS(3502), 1, - sym__pipe_table_delimiter, - ACTIONS(5695), 1, + [19568] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(5698), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(5701), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(5704), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5707), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(5710), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(5713), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(5716), 1, - sym__whitespace, - ACTIONS(5719), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(5722), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(5725), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(5728), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(5731), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(5734), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(5737), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(5740), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(5743), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(5746), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5749), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5752), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(5755), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(5758), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(5761), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(5764), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5767), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5770), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5773), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5776), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5779), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5692), 7, + ACTIONS(5686), 1, + aux_sym_insert_token1, + STATE(2931), 1, + sym__line, + STATE(4014), 1, + sym__inlines, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85258,7 +85427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(736), 24, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85282,71 +85451,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [20078] = 33, - ACTIONS(3085), 1, + [19696] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5782), 1, + ACTIONS(5688), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3504), 1, + STATE(4020), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85354,7 +85522,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85378,70 +85546,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20206] = 33, - ACTIONS(3085), 1, + [19824] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5784), 1, + ACTIONS(5690), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3592), 1, + STATE(4033), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85449,7 +85617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85473,64 +85641,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20334] = 33, - ACTIONS(4556), 1, + [19952] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5786), 1, + ACTIONS(5692), 1, sym__single_quote_span_close, STATE(2986), 1, sym__line, @@ -85544,7 +85712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85568,70 +85736,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20462] = 33, - ACTIONS(4952), 1, + [20080] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5788), 1, + ACTIONS(5694), 1, sym__double_quote_span_close, STATE(2929), 1, sym__line, STATE(3477), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85639,7 +85807,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85663,70 +85831,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20590] = 33, - ACTIONS(3085), 1, + [20208] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5790), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5696), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3749), 1, + STATE(3763), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85734,7 +85902,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85758,70 +85926,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20718] = 33, - ACTIONS(3085), 1, + [20336] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5792), 1, + ACTIONS(5698), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3499), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85829,7 +85997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85853,70 +86021,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20846] = 33, - ACTIONS(3085), 1, + [20464] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5794), 1, + ACTIONS(5700), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3500), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85924,7 +86092,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85948,70 +86116,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20974] = 33, - ACTIONS(3085), 1, + [20592] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5796), 1, + ACTIONS(5702), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3501), 1, + STATE(3749), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86019,7 +86187,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86043,70 +86211,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21102] = 33, - ACTIONS(3085), 1, + [20720] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5798), 1, + ACTIONS(5704), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3502), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86114,7 +86282,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86138,70 +86306,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21230] = 33, - ACTIONS(4556), 1, + [20848] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5800), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5706), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3516), 1, + STATE(3591), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86209,7 +86377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86233,70 +86401,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21358] = 33, - ACTIONS(3085), 1, + [20976] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5802), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5708), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3775), 1, + STATE(3544), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86304,7 +86472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86328,70 +86496,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21486] = 33, - ACTIONS(3085), 1, + [21104] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5804), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5710), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3778), 1, + STATE(3545), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86399,7 +86567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86423,68 +86591,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21614] = 33, - ACTIONS(4556), 1, + [21232] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5806), 1, + ACTIONS(5712), 1, sym__single_quote_span_close, STATE(2986), 1, sym__line, - STATE(3544), 1, + STATE(4204), 1, sym__inlines, ACTIONS(5594), 7, sym__html_comment, @@ -86494,7 +86662,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86518,70 +86686,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21742] = 33, - ACTIONS(4952), 1, + [21360] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5808), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5714), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3545), 1, + STATE(3667), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86589,7 +86757,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86613,70 +86781,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21870] = 33, - ACTIONS(3085), 1, + [21488] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5810), 1, + ACTIONS(5716), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3779), 1, + STATE(3567), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86684,7 +86852,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86708,70 +86876,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21998] = 33, - ACTIONS(3085), 1, + [21616] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5812), 1, + ACTIONS(5718), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3567), 1, + STATE(3568), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86779,7 +86947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86803,70 +86971,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22126] = 33, - ACTIONS(3085), 1, + [21744] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5814), 1, + ACTIONS(5720), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3568), 1, + STATE(3569), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86874,7 +87042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86898,70 +87066,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22254] = 33, - ACTIONS(3085), 1, + [21872] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5816), 1, + ACTIONS(5722), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3569), 1, + STATE(3570), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86969,7 +87137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86993,70 +87161,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22382] = 33, - ACTIONS(3085), 1, + [22000] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5818), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5724), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3570), 1, + STATE(4205), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87064,7 +87232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87088,70 +87256,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22510] = 33, - ACTIONS(3085), 1, + [22128] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5820), 1, + ACTIONS(5726), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3780), 1, + STATE(3489), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87159,7 +87327,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87183,70 +87351,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22638] = 33, - ACTIONS(4556), 1, + [22256] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5822), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5728), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3595), 1, + STATE(3491), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87254,7 +87422,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87278,70 +87446,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22766] = 33, - ACTIONS(4952), 1, + [22384] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5824), 1, - sym__double_quote_span_close, - STATE(2929), 1, + ACTIONS(5730), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3600), 1, + STATE(3492), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87349,7 +87517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87373,64 +87541,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22894] = 33, - ACTIONS(4556), 1, + [22512] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5826), 1, + ACTIONS(5732), 1, sym__single_quote_span_close, STATE(2986), 1, sym__line, @@ -87444,7 +87612,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87468,70 +87636,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23022] = 33, - ACTIONS(4952), 1, + [22640] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5828), 1, + ACTIONS(5734), 1, sym__double_quote_span_close, STATE(2929), 1, sym__line, STATE(3613), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87539,7 +87707,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87563,70 +87731,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23150] = 33, - ACTIONS(4556), 1, + [22768] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5830), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5736), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3835), 1, + STATE(3504), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87634,7 +87802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87658,70 +87826,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23278] = 33, - ACTIONS(4952), 1, + [22896] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5832), 1, + ACTIONS(5738), 1, sym__double_quote_span_close, STATE(2929), 1, sym__line, - STATE(3882), 1, + STATE(3791), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87729,7 +87897,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87753,70 +87921,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23406] = 33, - ACTIONS(3085), 1, + [23024] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5834), 1, + ACTIONS(5740), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3635), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87824,7 +87992,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87848,70 +88016,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23534] = 33, - ACTIONS(3085), 1, + [23152] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5836), 1, + ACTIONS(5742), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3636), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87919,7 +88087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87943,70 +88111,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23662] = 33, - ACTIONS(3085), 1, + [23280] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5838), 1, + ACTIONS(5744), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3637), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88014,7 +88182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88038,70 +88206,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23790] = 33, - ACTIONS(3085), 1, + [23408] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5840), 1, + ACTIONS(5746), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, STATE(3638), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88109,7 +88277,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88133,70 +88301,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23918] = 33, - ACTIONS(3085), 1, + [23536] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5842), 1, + ACTIONS(5748), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3467), 1, + STATE(3755), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88204,7 +88372,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88228,70 +88396,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24046] = 33, - ACTIONS(3085), 1, + [23664] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5844), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5750), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3508), 1, + STATE(3835), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88299,7 +88467,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88323,70 +88491,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24174] = 33, - ACTIONS(3085), 1, + [23792] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5846), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5752), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3649), 1, + STATE(3882), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88394,7 +88562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88418,70 +88586,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24302] = 33, - ACTIONS(3085), 1, + [23920] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5848), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5754), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3650), 1, + STATE(3595), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88489,7 +88657,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88513,70 +88681,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24430] = 33, - ACTIONS(4952), 1, + [24048] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5850), 1, + ACTIONS(5756), 1, sym__double_quote_span_close, STATE(2929), 1, sym__line, - STATE(3591), 1, + STATE(3600), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88584,7 +88752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88608,70 +88776,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24558] = 33, - ACTIONS(3085), 1, + [24176] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5852), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5758), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3651), 1, + STATE(3516), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88679,7 +88847,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88703,70 +88871,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24686] = 33, - ACTIONS(3085), 1, + [24304] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5854), 1, + ACTIONS(5760), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3652), 1, + STATE(3649), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88774,7 +88942,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88798,70 +88966,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24814] = 33, - ACTIONS(3085), 1, + [24432] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5856), 1, + ACTIONS(5762), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3509), 1, + STATE(3650), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88869,7 +89037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88893,70 +89061,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24942] = 33, - ACTIONS(3085), 1, + [24560] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5858), 1, + ACTIONS(5764), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3510), 1, + STATE(3651), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88964,7 +89132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88988,70 +89156,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25070] = 33, - ACTIONS(4556), 1, + [24688] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5860), 1, - sym__single_quote_span_close, - STATE(2986), 1, + ACTIONS(5766), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3717), 1, + STATE(3652), 1, sym__inlines, - ACTIONS(5594), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89059,7 +89227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89083,70 +89251,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25198] = 33, - ACTIONS(4952), 1, + [24816] = 32, + ACTIONS(3519), 1, + sym__pipe_table_delimiter, + ACTIONS(5771), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(5774), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(5780), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(5783), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(5786), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(5789), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(5792), 1, + sym__whitespace, + ACTIONS(5795), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(5798), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(5801), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(5804), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(5807), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(5810), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(5813), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(5816), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(5819), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(5822), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(5825), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(5828), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(5831), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(5834), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(5837), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(5840), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(5843), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(5846), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(5849), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(5852), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(5855), 1, sym__emphasis_open_underscore, - ACTIONS(5862), 1, - sym__double_quote_span_close, - STATE(2929), 1, - sym__line, - STATE(3718), 1, - sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5768), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89154,7 +89320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(774), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89178,68 +89344,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25326] = 33, - ACTIONS(4556), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [24942] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, + ACTIONS(5858), 1, sym__single_quote_span_close, STATE(2986), 1, sym__line, - STATE(3938), 1, + STATE(4080), 1, sym__inlines, ACTIONS(5594), 7, sym__html_comment, @@ -89249,7 +89416,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89273,70 +89440,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25454] = 33, - ACTIONS(4952), 1, + [25070] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5866), 1, + ACTIONS(5860), 1, sym__double_quote_span_close, STATE(2929), 1, sym__line, - STATE(3939), 1, + STATE(4081), 1, sym__inlines, - ACTIONS(5602), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89344,7 +89511,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89368,70 +89535,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25582] = 33, - ACTIONS(3085), 1, + [25198] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, + ACTIONS(5862), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3743), 1, + STATE(3770), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89439,7 +89606,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89463,70 +89630,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25710] = 33, - ACTIONS(3085), 1, + [25326] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5870), 1, + ACTIONS(5864), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3746), 1, + STATE(3467), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89534,7 +89701,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89558,70 +89725,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25838] = 33, - ACTIONS(3085), 1, + [25454] = 33, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5866), 1, + sym__single_quote_span_close, + STATE(2986), 1, sym__line, - STATE(3747), 1, + STATE(3717), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89629,7 +89796,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89653,70 +89820,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25966] = 33, - ACTIONS(3085), 1, + [25582] = 33, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - ACTIONS(5874), 1, - aux_sym_insert_token1, - STATE(2931), 1, + ACTIONS(5868), 1, + sym__double_quote_span_close, + STATE(2929), 1, sym__line, - STATE(3515), 1, + STATE(3718), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89724,7 +89891,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89748,70 +89915,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26094] = 33, - ACTIONS(3085), 1, + [25710] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, + ACTIONS(5870), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4132), 1, + STATE(3508), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89819,7 +89986,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89843,70 +90010,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26222] = 33, - ACTIONS(3085), 1, + [25838] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5878), 1, + ACTIONS(5872), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(4145), 1, + STATE(3509), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89914,7 +90081,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89938,70 +90105,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26350] = 33, - ACTIONS(3085), 1, + [25966] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, + ACTIONS(5874), 1, aux_sym_insert_token1, STATE(2931), 1, sym__line, - STATE(3770), 1, + STATE(3747), 1, sym__inlines, - ACTIONS(3083), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90009,7 +90176,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90033,68 +90200,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26478] = 32, - ACTIONS(5352), 1, + [26094] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - STATE(2989), 1, + ACTIONS(5876), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3620), 1, + STATE(3743), 1, sym__inlines, - ACTIONS(5882), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90102,7 +90271,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90126,68 +90295,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26603] = 32, - ACTIONS(3409), 1, + [26222] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - STATE(2797), 1, - sym__inlines, - STATE(2878), 1, + ACTIONS(5878), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - ACTIONS(3407), 7, + STATE(3746), 1, + sym__inlines, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90195,7 +90366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90219,68 +90390,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26728] = 32, - ACTIONS(9), 1, + [26350] = 33, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + ACTIONS(5880), 1, + aux_sym_insert_token1, + STATE(2931), 1, sym__line, - STATE(3196), 1, + STATE(3501), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90288,7 +90461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90312,68 +90485,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26853] = 32, - ACTIONS(9), 1, + [26478] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + STATE(2989), 1, sym__line, - STATE(3279), 1, + STATE(3620), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5882), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90381,7 +90554,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90405,68 +90578,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26978] = 32, - ACTIONS(4100), 1, + [26603] = 32, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - STATE(2996), 1, - sym__line, - STATE(3794), 1, + STATE(2797), 1, sym__inlines, - ACTIONS(5884), 7, + STATE(2878), 1, + sym__line, + ACTIONS(3407), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90474,7 +90647,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90498,68 +90671,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27103] = 32, - ACTIONS(4802), 1, + [26728] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(2959), 1, sym__line, - STATE(3795), 1, + STATE(3984), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90567,7 +90740,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90591,68 +90764,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27228] = 32, - ACTIONS(5102), 1, + [26853] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2867), 1, sym__line, - STATE(3796), 1, + STATE(3279), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90660,7 +90833,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90684,68 +90857,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27353] = 32, - ACTIONS(5352), 1, + [26978] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, - STATE(2989), 1, + STATE(2932), 1, sym__line, - STATE(3798), 1, + STATE(3609), 1, sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90777,68 +90950,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27478] = 32, - ACTIONS(4250), 1, + [27103] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - STATE(2959), 1, + STATE(2996), 1, sym__line, - STATE(3802), 1, + STATE(3794), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90846,7 +91019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90870,68 +91043,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27603] = 32, - ACTIONS(4400), 1, + [27228] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(2999), 1, + STATE(2958), 1, sym__line, - STATE(3817), 1, + STATE(3795), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90939,7 +91112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90963,68 +91136,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27728] = 32, - ACTIONS(3948), 1, + [27353] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2932), 1, + STATE(3002), 1, sym__line, - STATE(3818), 1, + STATE(3796), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91032,7 +91205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91056,68 +91229,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27853] = 32, - ACTIONS(3409), 1, + [27478] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, - STATE(2817), 1, - sym__inlines, - STATE(2878), 1, + STATE(2989), 1, sym__line, - ACTIONS(3407), 7, + STATE(3798), 1, + sym__inlines, + ACTIONS(5882), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91125,7 +91298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91149,68 +91322,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27978] = 32, - ACTIONS(9), 1, + [27603] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + STATE(2959), 1, sym__line, - STATE(3199), 1, + STATE(3802), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91218,7 +91391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91242,68 +91415,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28103] = 32, - ACTIONS(4250), 1, + [27728] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, - STATE(2959), 1, + STATE(2999), 1, sym__line, - STATE(3984), 1, + STATE(3817), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91311,7 +91484,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91335,68 +91508,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28228] = 32, - ACTIONS(9), 1, + [27853] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + STATE(2932), 1, sym__line, - STATE(3385), 1, + STATE(3818), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91404,7 +91577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91428,68 +91601,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28353] = 32, - ACTIONS(4100), 1, + [27978] = 32, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, - STATE(2996), 1, - sym__line, - STATE(3671), 1, + STATE(2817), 1, sym__inlines, - ACTIONS(5884), 7, + STATE(2878), 1, + sym__line, + ACTIONS(3407), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91497,7 +91670,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91521,68 +91694,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28478] = 32, - ACTIONS(9), 1, + [28103] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + STATE(2996), 1, sym__line, - STATE(3101), 1, + STATE(4064), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91590,7 +91763,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91614,68 +91787,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28603] = 32, - ACTIONS(4100), 1, + [28228] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(2996), 1, + STATE(2958), 1, sym__line, - STATE(4064), 1, + STATE(4102), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91683,7 +91856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91707,68 +91880,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28728] = 32, - ACTIONS(4802), 1, + [28353] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(3002), 1, sym__line, - STATE(4102), 1, + STATE(4110), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91776,7 +91949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91800,68 +91973,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28853] = 32, - ACTIONS(5102), 1, + [28478] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2867), 1, sym__line, - STATE(4110), 1, + STATE(3105), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91869,7 +92042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91893,62 +92066,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28978] = 32, - ACTIONS(5352), 1, + [28603] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -91962,7 +92135,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91986,68 +92159,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29103] = 32, - ACTIONS(4250), 1, + [28728] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3531), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92055,7 +92228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92079,68 +92252,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29228] = 32, - ACTIONS(4400), 1, + [28853] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3535), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92148,7 +92321,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92172,68 +92345,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29353] = 32, - ACTIONS(3948), 1, + [28978] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3556), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92241,7 +92414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92265,7 +92438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29478] = 32, + [29103] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -92334,7 +92507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92358,68 +92531,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29603] = 32, - ACTIONS(4802), 1, + [29228] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(2867), 1, sym__line, - STATE(4127), 1, + STATE(3385), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92427,7 +92600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92451,68 +92624,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29728] = 32, - ACTIONS(5102), 1, + [29353] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2867), 1, sym__line, - STATE(3640), 1, + STATE(3199), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92520,7 +92693,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92544,7 +92717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29853] = 32, + [29478] = 32, ACTIONS(9), 1, anon_sym_LBRACK, ACTIONS(11), 1, @@ -92603,7 +92776,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, STATE(2867), 1, sym__line, - STATE(3105), 1, + STATE(3252), 1, sym__inlines, ACTIONS(7), 7, sym__html_comment, @@ -92613,7 +92786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92637,68 +92810,161 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29978] = 32, - ACTIONS(9), 1, + [29603] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + STATE(2996), 1, sym__line, - STATE(3281), 1, + STATE(3671), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5888), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(671), 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, + [29728] = 32, + ACTIONS(4456), 1, + anon_sym_LBRACK, + ACTIONS(4458), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4460), 1, + anon_sym_DOLLAR, + ACTIONS(4462), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4464), 1, + anon_sym_LBRACE, + ACTIONS(4466), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4468), 1, + anon_sym_PIPE, + ACTIONS(4472), 1, + sym__code_span_start, + ACTIONS(4474), 1, + sym__highlight_span_start, + ACTIONS(4476), 1, + sym__insert_span_start, + ACTIONS(4478), 1, + sym__delete_span_start, + ACTIONS(4480), 1, + sym__edit_comment_span_start, + ACTIONS(4482), 1, + sym__single_quote_span_open, + ACTIONS(4484), 1, + sym__double_quote_span_open, + ACTIONS(4486), 1, + sym__shortcode_open_escaped, + ACTIONS(4488), 1, + sym__shortcode_open, + ACTIONS(4490), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4492), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4494), 1, + sym__cite_author_in_text, + ACTIONS(4496), 1, + sym__cite_suppress_author, + ACTIONS(4498), 1, + sym__strikeout_open, + ACTIONS(4500), 1, + sym__subscript_open, + ACTIONS(4502), 1, + sym__superscript_open, + ACTIONS(4504), 1, + sym__inline_note_start_token, + ACTIONS(4506), 1, + sym__strong_emphasis_open_star, + ACTIONS(4508), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4510), 1, + sym__emphasis_open_star, + ACTIONS(4512), 1, + sym__emphasis_open_underscore, + STATE(2996), 1, + sym__line, + STATE(4089), 1, + sym__inlines, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92706,7 +92972,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92730,68 +92996,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30103] = 32, - ACTIONS(4100), 1, + [29853] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(2996), 1, + STATE(2958), 1, sym__line, - STATE(4089), 1, + STATE(4093), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92799,7 +93065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92823,68 +93089,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30228] = 32, - ACTIONS(4802), 1, + [29978] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(3002), 1, sym__line, - STATE(4093), 1, + STATE(4099), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92892,7 +93158,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92916,68 +93182,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30353] = 32, - ACTIONS(5102), 1, + [30103] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2867), 1, sym__line, - STATE(4099), 1, + STATE(3101), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92985,7 +93251,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93009,62 +93275,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30478] = 32, - ACTIONS(5352), 1, + [30228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -93078,7 +93344,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93102,68 +93368,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30603] = 32, - ACTIONS(4250), 1, + [30353] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(4107), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93171,7 +93437,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93195,68 +93461,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30728] = 32, - ACTIONS(4400), 1, + [30478] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(4108), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93264,7 +93530,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93288,68 +93554,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30853] = 32, - ACTIONS(3948), 1, + [30603] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(4109), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93357,7 +93623,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93381,7 +93647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30978] = 32, + [30728] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -93450,7 +93716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93474,68 +93740,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31103] = 32, - ACTIONS(4100), 1, + [30853] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3709), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93543,7 +93809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93567,68 +93833,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31228] = 32, - ACTIONS(4802), 1, + [30978] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(3711), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93636,7 +93902,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93660,68 +93926,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31353] = 32, - ACTIONS(5102), 1, + [31103] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(3713), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93729,7 +93995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93753,62 +94019,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31478] = 32, - ACTIONS(5352), 1, + [31228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -93822,7 +94088,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93846,68 +94112,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31603] = 32, - ACTIONS(4250), 1, + [31353] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3729), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93915,7 +94181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93939,68 +94205,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31728] = 32, - ACTIONS(4400), 1, + [31478] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3730), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94008,7 +94274,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94032,68 +94298,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31853] = 32, - ACTIONS(3948), 1, + [31603] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3732), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94101,7 +94367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94125,7 +94391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31978] = 32, + [31728] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -94194,100 +94460,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 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, - [32103] = 32, - ACTIONS(4100), 1, - anon_sym_LBRACK, - ACTIONS(4102), 1, - anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, - anon_sym_DOLLAR, - ACTIONS(4106), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, - anon_sym_LBRACE, - ACTIONS(4110), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - sym__code_span_start, - ACTIONS(4118), 1, - sym__highlight_span_start, - ACTIONS(4120), 1, - sym__insert_span_start, - ACTIONS(4122), 1, - sym__delete_span_start, - ACTIONS(4124), 1, - sym__edit_comment_span_start, - ACTIONS(4126), 1, - sym__single_quote_span_open, - ACTIONS(4128), 1, - sym__double_quote_span_open, - ACTIONS(4130), 1, - sym__shortcode_open_escaped, - ACTIONS(4132), 1, - sym__shortcode_open, - ACTIONS(4134), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, - sym__cite_author_in_text, - ACTIONS(4140), 1, - sym__cite_suppress_author, - ACTIONS(4142), 1, - sym__strikeout_open, - ACTIONS(4144), 1, - sym__subscript_open, - ACTIONS(4146), 1, - sym__superscript_open, - ACTIONS(4148), 1, - sym__inline_note_start_token, - ACTIONS(4150), 1, - sym__strong_emphasis_open_star, - ACTIONS(4152), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, - sym__emphasis_open_star, - ACTIONS(4156), 1, - sym__emphasis_open_underscore, - STATE(2996), 1, - sym__line, - STATE(3963), 1, - sym__inlines, - ACTIONS(5884), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(665), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94311,68 +94484,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32228] = 32, - ACTIONS(4802), 1, + [31853] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(2996), 1, sym__line, - STATE(3964), 1, + STATE(3963), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94380,7 +94553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94404,68 +94577,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32353] = 32, - ACTIONS(5102), 1, + [31978] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2958), 1, sym__line, - STATE(3967), 1, + STATE(3964), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94497,68 +94670,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32478] = 32, - ACTIONS(3948), 1, + [32103] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2932), 1, + STATE(3002), 1, sym__line, - STATE(3609), 1, + STATE(3967), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94566,7 +94739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94590,62 +94763,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32603] = 32, - ACTIONS(5352), 1, + [32228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -94659,7 +94832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94683,68 +94856,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32728] = 32, - ACTIONS(4250), 1, + [32353] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3981), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94752,7 +94925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94776,68 +94949,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32853] = 32, - ACTIONS(4400), 1, + [32478] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3982), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94845,7 +95018,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94869,68 +95042,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32978] = 32, - ACTIONS(3948), 1, + [32603] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3983), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94938,7 +95111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94962,7 +95135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33103] = 32, + [32728] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -95031,7 +95204,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95055,68 +95228,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33228] = 32, - ACTIONS(4100), 1, + [32853] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(4210), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95124,7 +95297,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95148,68 +95321,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33353] = 32, - ACTIONS(4802), 1, + [32978] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(4211), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95217,7 +95390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95241,68 +95414,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33478] = 32, - ACTIONS(5102), 1, + [33103] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(4212), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95310,7 +95483,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95334,62 +95507,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33603] = 32, - ACTIONS(5352), 1, + [33228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -95403,7 +95576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95427,68 +95600,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33728] = 32, - ACTIONS(4250), 1, + [33353] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(4217), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95496,7 +95669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95520,68 +95693,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33853] = 32, - ACTIONS(4400), 1, + [33478] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(4220), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95589,7 +95762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95613,68 +95786,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33978] = 32, - ACTIONS(3948), 1, + [33603] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(4221), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95682,7 +95855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95706,7 +95879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34103] = 32, + [33728] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -95775,100 +95948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 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, - [34228] = 32, - ACTIONS(4100), 1, - anon_sym_LBRACK, - ACTIONS(4102), 1, - anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, - anon_sym_DOLLAR, - ACTIONS(4106), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, - anon_sym_LBRACE, - ACTIONS(4110), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - sym__code_span_start, - ACTIONS(4118), 1, - sym__highlight_span_start, - ACTIONS(4120), 1, - sym__insert_span_start, - ACTIONS(4122), 1, - sym__delete_span_start, - ACTIONS(4124), 1, - sym__edit_comment_span_start, - ACTIONS(4126), 1, - sym__single_quote_span_open, - ACTIONS(4128), 1, - sym__double_quote_span_open, - ACTIONS(4130), 1, - sym__shortcode_open_escaped, - ACTIONS(4132), 1, - sym__shortcode_open, - ACTIONS(4134), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, - sym__cite_author_in_text, - ACTIONS(4140), 1, - sym__cite_suppress_author, - ACTIONS(4142), 1, - sym__strikeout_open, - ACTIONS(4144), 1, - sym__subscript_open, - ACTIONS(4146), 1, - sym__superscript_open, - ACTIONS(4148), 1, - sym__inline_note_start_token, - ACTIONS(4150), 1, - sym__strong_emphasis_open_star, - ACTIONS(4152), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, - sym__emphasis_open_star, - ACTIONS(4156), 1, - sym__emphasis_open_underscore, - STATE(2996), 1, - sym__line, - STATE(3603), 1, - sym__inlines, - ACTIONS(5884), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(665), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95892,68 +95972,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34353] = 32, - ACTIONS(4802), 1, + [33853] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(2996), 1, sym__line, - STATE(3605), 1, + STATE(3603), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95961,7 +96041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95985,68 +96065,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34478] = 32, - ACTIONS(5102), 1, + [33978] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2958), 1, sym__line, - STATE(3607), 1, + STATE(3605), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96078,68 +96158,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34603] = 32, - ACTIONS(9), 1, + [34103] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2867), 1, + STATE(3002), 1, sym__line, - STATE(3252), 1, + STATE(3607), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96147,7 +96227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96171,62 +96251,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34728] = 32, - ACTIONS(5352), 1, + [34228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -96240,7 +96320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96264,68 +96344,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34853] = 32, - ACTIONS(4250), 1, + [34353] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3618), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96333,7 +96413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96357,68 +96437,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34978] = 32, - ACTIONS(4400), 1, + [34478] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3619), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96426,7 +96506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96450,68 +96530,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35103] = 32, - ACTIONS(3948), 1, + [34603] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3624), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96519,7 +96599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96543,7 +96623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35228] = 32, + [34728] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -96612,7 +96692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96636,68 +96716,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35353] = 32, - ACTIONS(4100), 1, + [34853] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3721), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96705,7 +96785,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96729,68 +96809,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35478] = 32, - ACTIONS(5102), 1, + [34978] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2867), 1, sym__line, - STATE(3723), 1, + STATE(3196), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96798,7 +96878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96822,68 +96902,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35603] = 32, - ACTIONS(5352), 1, + [35103] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2989), 1, + STATE(3002), 1, sym__line, - STATE(3908), 1, + STATE(3723), 1, sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96891,7 +96971,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96915,62 +96995,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35728] = 32, - ACTIONS(5352), 1, + [35228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -96984,7 +97064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97008,68 +97088,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35853] = 32, - ACTIONS(4250), 1, + [35353] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3726), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97077,7 +97157,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97101,68 +97181,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35978] = 32, - ACTIONS(4400), 1, + [35478] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3727), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97170,7 +97250,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97194,68 +97274,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36103] = 32, - ACTIONS(3948), 1, + [35603] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3728), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97263,7 +97343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97287,7 +97367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36228] = 32, + [35728] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -97356,7 +97436,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97380,68 +97460,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36353] = 32, - ACTIONS(4100), 1, + [35853] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3820), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97449,7 +97529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97473,68 +97553,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36478] = 32, - ACTIONS(4802), 1, + [35978] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(3821), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97542,7 +97622,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97566,68 +97646,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36603] = 32, - ACTIONS(5102), 1, + [36103] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(3822), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97635,7 +97715,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97659,62 +97739,155 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36728] = 32, - ACTIONS(5352), 1, + [36228] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, + sym__emphasis_open_underscore, + STATE(2989), 1, + sym__line, + STATE(3908), 1, + sym__inlines, + ACTIONS(5882), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(677), 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, + [36353] = 32, + ACTIONS(4394), 1, + anon_sym_LBRACK, + ACTIONS(4396), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4398), 1, + anon_sym_DOLLAR, + ACTIONS(4400), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4402), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4406), 1, + anon_sym_PIPE, + ACTIONS(4410), 1, + sym__code_span_start, + ACTIONS(4412), 1, + sym__highlight_span_start, + ACTIONS(4414), 1, + sym__insert_span_start, + ACTIONS(4416), 1, + sym__delete_span_start, + ACTIONS(4418), 1, + sym__edit_comment_span_start, + ACTIONS(4420), 1, + sym__single_quote_span_open, + ACTIONS(4422), 1, + sym__double_quote_span_open, + ACTIONS(4424), 1, + sym__shortcode_open_escaped, + ACTIONS(4426), 1, + sym__shortcode_open, + ACTIONS(4428), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4430), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4432), 1, + sym__cite_author_in_text, + ACTIONS(4434), 1, + sym__cite_suppress_author, + ACTIONS(4436), 1, + sym__strikeout_open, + ACTIONS(4438), 1, + sym__subscript_open, + ACTIONS(4440), 1, + sym__superscript_open, + ACTIONS(4442), 1, + sym__inline_note_start_token, + ACTIONS(4444), 1, + sym__strong_emphasis_open_star, + ACTIONS(4446), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4448), 1, + sym__emphasis_open_star, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -97728,7 +97901,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97752,68 +97925,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36853] = 32, - ACTIONS(4250), 1, + [36478] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3828), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97821,7 +97994,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97845,68 +98018,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36978] = 32, - ACTIONS(4400), 1, + [36603] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3829), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97914,7 +98087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97938,68 +98111,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37103] = 32, - ACTIONS(3948), 1, + [36728] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3830), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98007,7 +98180,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98031,7 +98204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37228] = 32, + [36853] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -98100,7 +98273,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98124,68 +98297,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37353] = 32, - ACTIONS(4100), 1, + [36978] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3927), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98193,7 +98366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98217,68 +98390,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37478] = 32, - ACTIONS(4802), 1, + [37103] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(3928), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98286,7 +98459,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98310,68 +98483,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37603] = 32, - ACTIONS(5102), 1, + [37228] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(3929), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98379,7 +98552,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98403,62 +98576,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37728] = 32, - ACTIONS(5352), 1, + [37353] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -98472,7 +98645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98496,68 +98669,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37853] = 32, - ACTIONS(4250), 1, + [37478] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3932), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98565,7 +98738,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98589,68 +98762,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37978] = 32, - ACTIONS(4400), 1, + [37603] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3933), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98658,7 +98831,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98682,68 +98855,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38103] = 32, - ACTIONS(3948), 1, + [37728] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3934), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98751,7 +98924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98775,7 +98948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38228] = 32, + [37853] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -98844,7 +99017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98868,68 +99041,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38353] = 32, - ACTIONS(4100), 1, + [37978] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(4030), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98937,7 +99110,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98961,68 +99134,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38478] = 32, - ACTIONS(4802), 1, + [38103] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(4031), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99030,7 +99203,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99054,68 +99227,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38603] = 32, - ACTIONS(5102), 1, + [38228] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(4032), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99123,7 +99296,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99147,62 +99320,155 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38728] = 32, - ACTIONS(5352), 1, + [38353] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(5162), 1, + sym__emphasis_open_underscore, + STATE(2999), 1, + sym__line, + STATE(4039), 1, + sym__inlines, + ACTIONS(5894), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(678), 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, + [38478] = 32, + ACTIONS(4394), 1, + anon_sym_LBRACK, + ACTIONS(4396), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4398), 1, + anon_sym_DOLLAR, + ACTIONS(4400), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4402), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4406), 1, + anon_sym_PIPE, + ACTIONS(4410), 1, + sym__code_span_start, + ACTIONS(4412), 1, + sym__highlight_span_start, + ACTIONS(4414), 1, + sym__insert_span_start, + ACTIONS(4416), 1, + sym__delete_span_start, + ACTIONS(4418), 1, + sym__edit_comment_span_start, + ACTIONS(4420), 1, + sym__single_quote_span_open, + ACTIONS(4422), 1, + sym__double_quote_span_open, + ACTIONS(4424), 1, + sym__shortcode_open_escaped, + ACTIONS(4426), 1, + sym__shortcode_open, + ACTIONS(4428), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4430), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4432), 1, + sym__cite_author_in_text, + ACTIONS(4434), 1, + sym__cite_suppress_author, + ACTIONS(4436), 1, + sym__strikeout_open, + ACTIONS(4438), 1, + sym__subscript_open, + ACTIONS(4440), 1, + sym__superscript_open, + ACTIONS(4442), 1, + sym__inline_note_start_token, + ACTIONS(4444), 1, + sym__strong_emphasis_open_star, + ACTIONS(4446), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4448), 1, + sym__emphasis_open_star, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -99216,7 +99482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99240,68 +99506,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38853] = 32, - ACTIONS(4250), 1, + [38603] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(4035), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99309,7 +99575,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99333,68 +99599,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38978] = 32, - ACTIONS(4400), 1, + [38728] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(4036), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99402,7 +99668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99426,68 +99692,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39103] = 32, - ACTIONS(3948), 1, + [38853] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(4037), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99495,7 +99761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99519,7 +99785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39228] = 32, + [38978] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -99588,7 +99854,100 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 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, + [39103] = 32, + ACTIONS(4456), 1, + anon_sym_LBRACK, + ACTIONS(4458), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4460), 1, + anon_sym_DOLLAR, + ACTIONS(4462), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4464), 1, + anon_sym_LBRACE, + ACTIONS(4466), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4468), 1, + anon_sym_PIPE, + ACTIONS(4472), 1, + sym__code_span_start, + ACTIONS(4474), 1, + sym__highlight_span_start, + ACTIONS(4476), 1, + sym__insert_span_start, + ACTIONS(4478), 1, + sym__delete_span_start, + ACTIONS(4480), 1, + sym__edit_comment_span_start, + ACTIONS(4482), 1, + sym__single_quote_span_open, + ACTIONS(4484), 1, + sym__double_quote_span_open, + ACTIONS(4486), 1, + sym__shortcode_open_escaped, + ACTIONS(4488), 1, + sym__shortcode_open, + ACTIONS(4490), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4492), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4494), 1, + sym__cite_author_in_text, + ACTIONS(4496), 1, + sym__cite_suppress_author, + ACTIONS(4498), 1, + sym__strikeout_open, + ACTIONS(4500), 1, + sym__subscript_open, + ACTIONS(4502), 1, + sym__superscript_open, + ACTIONS(4504), 1, + sym__inline_note_start_token, + ACTIONS(4506), 1, + sym__strong_emphasis_open_star, + ACTIONS(4508), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4510), 1, + sym__emphasis_open_star, + ACTIONS(4512), 1, + sym__emphasis_open_underscore, + STATE(2996), 1, + sym__line, + STATE(4124), 1, + sym__inlines, + ACTIONS(5888), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99612,68 +99971,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39353] = 32, - ACTIONS(4100), 1, + [39228] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(2996), 1, + STATE(2958), 1, sym__line, - STATE(4124), 1, + STATE(4125), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99681,7 +100040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99705,68 +100064,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39478] = 32, - ACTIONS(4802), 1, + [39353] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(3002), 1, sym__line, - STATE(4125), 1, + STATE(4126), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99774,7 +100133,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99798,68 +100157,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39603] = 32, - ACTIONS(5102), 1, + [39478] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(3002), 1, + STATE(2867), 1, sym__line, - STATE(4126), 1, + STATE(3281), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99867,7 +100226,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99891,62 +100250,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39728] = 32, - ACTIONS(5352), 1, + [39603] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -99960,7 +100319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99984,68 +100343,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39853] = 32, - ACTIONS(4250), 1, + [39728] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(4129), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100053,7 +100412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100077,68 +100436,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39978] = 32, - ACTIONS(4400), 1, + [39853] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(4130), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100146,7 +100505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100170,68 +100529,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40103] = 32, - ACTIONS(3948), 1, + [39978] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(4131), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100239,7 +100598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100263,7 +100622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40228] = 32, + [40103] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -100332,7 +100691,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100356,68 +100715,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40353] = 32, - ACTIONS(4100), 1, + [40228] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3480), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100425,7 +100784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100449,68 +100808,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40478] = 32, - ACTIONS(4802), 1, + [40353] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(3481), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100518,7 +100877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100542,68 +100901,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40603] = 32, - ACTIONS(5102), 1, + [40478] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(3482), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100611,7 +100970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100635,62 +100994,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40728] = 32, - ACTIONS(5352), 1, + [40603] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -100704,7 +101063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100728,68 +101087,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40853] = 32, - ACTIONS(4250), 1, + [40728] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3485), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100797,7 +101156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100821,68 +101180,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40978] = 32, - ACTIONS(4400), 1, + [40853] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3486), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100890,7 +101249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100914,68 +101273,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41103] = 32, - ACTIONS(3948), 1, + [40978] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3487), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100983,7 +101342,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101007,7 +101366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41228] = 32, + [41103] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -101076,7 +101435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101100,68 +101459,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41353] = 32, - ACTIONS(4100), 1, + [41228] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3548), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101169,7 +101528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101193,68 +101552,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41478] = 32, - ACTIONS(4802), 1, + [41353] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(3549), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101262,7 +101621,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101286,68 +101645,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41603] = 32, - ACTIONS(5102), 1, + [41478] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(3550), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101355,7 +101714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101379,62 +101738,62 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41728] = 32, - ACTIONS(5352), 1, + [41603] = 32, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, STATE(2989), 1, sym__line, @@ -101448,7 +101807,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101472,68 +101831,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41853] = 32, - ACTIONS(4250), 1, + [41728] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3553), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101541,7 +101900,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101565,68 +101924,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41978] = 32, - ACTIONS(4400), 1, + [41853] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3554), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101634,7 +101993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101658,68 +102017,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42103] = 32, - ACTIONS(3948), 1, + [41978] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3555), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101727,7 +102086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101751,7 +102110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42228] = 32, + [42103] = 32, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -101820,7 +102179,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101844,68 +102203,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42353] = 32, - ACTIONS(4100), 1, + [42228] = 32, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, STATE(2996), 1, sym__line, STATE(3616), 1, sym__inlines, - ACTIONS(5884), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101913,7 +102272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101937,68 +102296,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42478] = 32, - ACTIONS(4802), 1, + [42353] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, STATE(2958), 1, sym__line, STATE(3617), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102006,7 +102365,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102030,68 +102389,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42603] = 32, - ACTIONS(5102), 1, + [42478] = 32, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3002), 1, sym__line, STATE(3458), 1, sym__inlines, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102099,7 +102458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102123,68 +102482,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42728] = 32, - ACTIONS(4400), 1, + [42603] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(2999), 1, + STATE(2958), 1, sym__line, - STATE(4039), 1, + STATE(4127), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102192,7 +102551,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102216,68 +102575,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42853] = 32, - ACTIONS(4250), 1, + [42728] = 32, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, STATE(2959), 1, sym__line, STATE(3621), 1, sym__inlines, - ACTIONS(5890), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102285,7 +102644,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102309,68 +102668,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42978] = 32, - ACTIONS(4400), 1, + [42853] = 32, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, STATE(2999), 1, sym__line, STATE(3622), 1, sym__inlines, - ACTIONS(5892), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102378,7 +102737,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102402,68 +102761,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43103] = 32, - ACTIONS(3948), 1, + [42978] = 32, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, STATE(2932), 1, sym__line, STATE(3623), 1, sym__inlines, - ACTIONS(5894), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102471,7 +102830,193 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(684), 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, + [43103] = 32, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3413), 1, + anon_sym_DOLLAR, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3417), 1, + anon_sym_LBRACE, + ACTIONS(3419), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3421), 1, + anon_sym_PIPE, + ACTIONS(3425), 1, + sym__code_span_start, + ACTIONS(3427), 1, + sym__highlight_span_start, + ACTIONS(3429), 1, + sym__insert_span_start, + ACTIONS(3431), 1, + sym__delete_span_start, + ACTIONS(3433), 1, + sym__edit_comment_span_start, + ACTIONS(3435), 1, + sym__single_quote_span_open, + ACTIONS(3437), 1, + sym__double_quote_span_open, + ACTIONS(3439), 1, + sym__shortcode_open_escaped, + ACTIONS(3441), 1, + sym__shortcode_open, + ACTIONS(3443), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3445), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3447), 1, + sym__cite_author_in_text, + ACTIONS(3449), 1, + sym__cite_suppress_author, + ACTIONS(3451), 1, + sym__strikeout_open, + ACTIONS(3453), 1, + sym__subscript_open, + ACTIONS(3455), 1, + sym__superscript_open, + ACTIONS(3457), 1, + sym__inline_note_start_token, + ACTIONS(3459), 1, + sym__strong_emphasis_open_star, + ACTIONS(3461), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3463), 1, + sym__emphasis_open_star, + ACTIONS(3465), 1, + sym__emphasis_open_underscore, + STATE(2878), 1, + sym__line, + STATE(2899), 1, + sym__inlines, + ACTIONS(3407), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(687), 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, + [43228] = 32, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4614), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4616), 1, + anon_sym_DOLLAR, + ACTIONS(4618), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4620), 1, + anon_sym_LBRACE, + ACTIONS(4622), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4624), 1, + anon_sym_PIPE, + ACTIONS(4628), 1, + sym__code_span_start, + ACTIONS(4630), 1, + sym__highlight_span_start, + ACTIONS(4632), 1, + sym__insert_span_start, + ACTIONS(4634), 1, + sym__delete_span_start, + ACTIONS(4636), 1, + sym__edit_comment_span_start, + ACTIONS(4638), 1, + sym__single_quote_span_open, + ACTIONS(4640), 1, + sym__double_quote_span_open, + ACTIONS(4642), 1, + sym__shortcode_open_escaped, + ACTIONS(4644), 1, + sym__shortcode_open, + ACTIONS(4646), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4648), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4650), 1, + sym__cite_author_in_text, + ACTIONS(4652), 1, + sym__cite_suppress_author, + ACTIONS(4654), 1, + sym__strikeout_open, + ACTIONS(4656), 1, + sym__subscript_open, + ACTIONS(4658), 1, + sym__superscript_open, + ACTIONS(4660), 1, + sym__inline_note_start_token, + ACTIONS(4662), 1, + sym__strong_emphasis_open_star, + ACTIONS(4664), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4666), 1, + sym__emphasis_open_star, + ACTIONS(4668), 1, + sym__emphasis_open_underscore, + STATE(3002), 1, + sym__line, + STATE(3640), 1, + sym__inlines, + ACTIONS(5892), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102495,68 +103040,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43228] = 32, - ACTIONS(3409), 1, + [43353] = 32, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(2878), 1, + STATE(2958), 1, sym__line, - STATE(2899), 1, + STATE(3722), 1, sym__inlines, - ACTIONS(3407), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102564,7 +103109,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102588,68 +103133,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43353] = 32, - ACTIONS(4802), 1, + [43478] = 31, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, - STATE(2958), 1, + STATE(3329), 1, sym__line, - STATE(3722), 1, - sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5594), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102657,7 +103200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(663), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102681,66 +103224,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43478] = 31, - ACTIONS(5102), 1, + [43600] = 31, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, STATE(3447), 1, sym__line, - ACTIONS(5888), 7, + ACTIONS(5892), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102748,7 +103291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(666), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102772,66 +103315,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43600] = 31, - ACTIONS(4802), 1, + [43722] = 31, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, - STATE(3318), 1, + STATE(3409), 1, sym__line, - ACTIONS(5886), 7, + ACTIONS(5604), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102839,7 +103382,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(667), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102863,66 +103406,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43722] = 31, - ACTIONS(4100), 1, + [43844] = 31, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, - STATE(3425), 1, + STATE(3354), 1, sym__line, - ACTIONS(5884), 7, + ACTIONS(5882), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102930,7 +103473,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 23, + STATE(677), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102954,66 +103497,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43844] = 31, - ACTIONS(4250), 1, + [43966] = 31, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, - STATE(3443), 1, + STATE(3360), 1, sym__line, - ACTIONS(5890), 7, + ACTIONS(5886), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103021,7 +103564,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103045,7 +103588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43966] = 31, + [44088] = 31, ACTIONS(9), 1, anon_sym_LBRACK, ACTIONS(11), 1, @@ -103112,7 +103655,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(652), 23, + STATE(619), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103136,66 +103679,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [44088] = 31, - ACTIONS(3948), 1, + [44210] = 31, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, - STATE(3360), 1, + STATE(3448), 1, sym__line, - ACTIONS(5894), 7, + ACTIONS(2991), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103203,7 +103746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(655), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103227,66 +103770,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [44210] = 31, - ACTIONS(3085), 1, + [44332] = 31, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, - STATE(3448), 1, + STATE(3440), 1, sym__line, - ACTIONS(3083), 7, + ACTIONS(5894), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103294,7 +103837,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 23, + STATE(678), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103318,66 +103861,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [44332] = 31, - ACTIONS(4952), 1, + [44454] = 31, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, - STATE(3409), 1, + STATE(3425), 1, sym__line, - ACTIONS(5602), 7, + ACTIONS(5888), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103385,7 +103928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 23, + STATE(671), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103409,66 +103952,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [44454] = 31, - ACTIONS(4400), 1, + [44576] = 31, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, - STATE(3440), 1, + STATE(3238), 1, sym__line, - ACTIONS(5892), 7, + ACTIONS(2341), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103476,7 +104019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(662), 23, + STATE(617), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103500,66 +104043,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [44576] = 31, - ACTIONS(4556), 1, + [44698] = 31, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, - STATE(3329), 1, + STATE(3318), 1, sym__line, - ACTIONS(5594), 7, + ACTIONS(5890), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103567,7 +104110,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 23, + STATE(676), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103591,7 +104134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [44698] = 31, + [44820] = 31, ACTIONS(3409), 1, anon_sym_LBRACK, ACTIONS(3411), 1, @@ -103658,98 +104201,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(654), 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, - [44820] = 31, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, - anon_sym_DOLLAR, - ACTIONS(5358), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, - anon_sym_LBRACE, - ACTIONS(5362), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, - anon_sym_PIPE, - ACTIONS(5368), 1, - sym__code_span_start, - ACTIONS(5370), 1, - sym__highlight_span_start, - ACTIONS(5372), 1, - sym__insert_span_start, - ACTIONS(5374), 1, - sym__delete_span_start, - ACTIONS(5376), 1, - sym__edit_comment_span_start, - ACTIONS(5378), 1, - sym__single_quote_span_open, - ACTIONS(5380), 1, - sym__double_quote_span_open, - ACTIONS(5382), 1, - sym__shortcode_open_escaped, - ACTIONS(5384), 1, - sym__shortcode_open, - ACTIONS(5386), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, - sym__cite_author_in_text, - ACTIONS(5392), 1, - sym__cite_suppress_author, - ACTIONS(5394), 1, - sym__strikeout_open, - ACTIONS(5396), 1, - sym__subscript_open, - ACTIONS(5398), 1, - sym__superscript_open, - ACTIONS(5400), 1, - sym__inline_note_start_token, - ACTIONS(5402), 1, - sym__strong_emphasis_open_star, - ACTIONS(5404), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, - sym__emphasis_open_star, - ACTIONS(5408), 1, - sym__emphasis_open_underscore, - STATE(3354), 1, - sym__line, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(684), 23, + STATE(687), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103774,65 +104226,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [44942] = 31, - ACTIONS(2181), 1, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, - STATE(3238), 1, + STATE(3443), 1, sym__line, - ACTIONS(2179), 7, + ACTIONS(5884), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103840,7 +104292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 23, + STATE(658), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103865,61 +104317,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45064] = 30, - ACTIONS(4952), 1, + ACTIONS(2993), 1, anon_sym_LBRACK, - ACTIONS(4954), 1, + ACTIONS(2995), 1, anon_sym_BANG_LBRACK, - ACTIONS(4956), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4960), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(3005), 1, aux_sym_pandoc_str_token1, - ACTIONS(4964), 1, + ACTIONS(3007), 1, anon_sym_PIPE, - ACTIONS(4968), 1, + ACTIONS(3013), 1, sym__code_span_start, - ACTIONS(4970), 1, + ACTIONS(3015), 1, sym__highlight_span_start, - ACTIONS(4972), 1, + ACTIONS(3017), 1, sym__insert_span_start, - ACTIONS(4974), 1, + ACTIONS(3019), 1, sym__delete_span_start, - ACTIONS(4976), 1, + ACTIONS(3021), 1, sym__edit_comment_span_start, - ACTIONS(4978), 1, + ACTIONS(3023), 1, sym__single_quote_span_open, - ACTIONS(4980), 1, + ACTIONS(3025), 1, sym__double_quote_span_open, - ACTIONS(4982), 1, + ACTIONS(3027), 1, sym__shortcode_open_escaped, - ACTIONS(4984), 1, + ACTIONS(3029), 1, sym__shortcode_open, - ACTIONS(4986), 1, + ACTIONS(3031), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4988), 1, + ACTIONS(3033), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4990), 1, + ACTIONS(3035), 1, sym__cite_author_in_text, - ACTIONS(4992), 1, + ACTIONS(3037), 1, sym__cite_suppress_author, - ACTIONS(4994), 1, + ACTIONS(3039), 1, sym__strikeout_open, - ACTIONS(4996), 1, + ACTIONS(3041), 1, sym__subscript_open, - ACTIONS(4998), 1, + ACTIONS(3043), 1, sym__superscript_open, - ACTIONS(5000), 1, + ACTIONS(3045), 1, sym__inline_note_start_token, - ACTIONS(5002), 1, + ACTIONS(3047), 1, sym__strong_emphasis_open_star, - ACTIONS(5004), 1, + ACTIONS(3049), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5006), 1, + ACTIONS(3051), 1, sym__emphasis_open_star, - ACTIONS(5008), 1, + ACTIONS(3053), 1, sym__emphasis_open_underscore, ACTIONS(5896), 7, sym__html_comment, @@ -103929,7 +104381,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2259), 23, + STATE(2209), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103954,61 +104406,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45183] = 30, - ACTIONS(3409), 1, + ACTIONS(4124), 1, anon_sym_LBRACK, - ACTIONS(3411), 1, + ACTIONS(4126), 1, anon_sym_BANG_LBRACK, - ACTIONS(3413), 1, + ACTIONS(4128), 1, anon_sym_DOLLAR, - ACTIONS(3415), 1, + ACTIONS(4130), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3417), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(3419), 1, + ACTIONS(4134), 1, aux_sym_pandoc_str_token1, - ACTIONS(3421), 1, + ACTIONS(4136), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(4140), 1, sym__code_span_start, - ACTIONS(3427), 1, + ACTIONS(4142), 1, sym__highlight_span_start, - ACTIONS(3429), 1, + ACTIONS(4144), 1, sym__insert_span_start, - ACTIONS(3431), 1, + ACTIONS(4146), 1, sym__delete_span_start, - ACTIONS(3433), 1, + ACTIONS(4148), 1, sym__edit_comment_span_start, - ACTIONS(3435), 1, + ACTIONS(4150), 1, sym__single_quote_span_open, - ACTIONS(3437), 1, + ACTIONS(4152), 1, sym__double_quote_span_open, - ACTIONS(3439), 1, + ACTIONS(4154), 1, sym__shortcode_open_escaped, - ACTIONS(3441), 1, + ACTIONS(4156), 1, sym__shortcode_open, - ACTIONS(3443), 1, + ACTIONS(4158), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3445), 1, + ACTIONS(4160), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3447), 1, + ACTIONS(4162), 1, sym__cite_author_in_text, - ACTIONS(3449), 1, + ACTIONS(4164), 1, sym__cite_suppress_author, - ACTIONS(3451), 1, + ACTIONS(4166), 1, sym__strikeout_open, - ACTIONS(3453), 1, + ACTIONS(4168), 1, sym__subscript_open, - ACTIONS(3455), 1, + ACTIONS(4170), 1, sym__superscript_open, - ACTIONS(3457), 1, + ACTIONS(4172), 1, sym__inline_note_start_token, - ACTIONS(3459), 1, + ACTIONS(4174), 1, sym__strong_emphasis_open_star, - ACTIONS(3461), 1, + ACTIONS(4176), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3463), 1, + ACTIONS(4178), 1, sym__emphasis_open_star, - ACTIONS(3465), 1, + ACTIONS(4180), 1, sym__emphasis_open_underscore, ACTIONS(5898), 7, sym__html_comment, @@ -104018,7 +104470,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1840), 23, + STATE(2119), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104043,61 +104495,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45302] = 30, - ACTIONS(4556), 1, + ACTIONS(2343), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(2347), 1, anon_sym_BANG_LBRACK, - ACTIONS(4560), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR, - ACTIONS(4562), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4564), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, - ACTIONS(4566), 1, + ACTIONS(2357), 1, aux_sym_pandoc_str_token1, - ACTIONS(4568), 1, + ACTIONS(2359), 1, anon_sym_PIPE, - ACTIONS(4572), 1, + ACTIONS(2365), 1, sym__code_span_start, - ACTIONS(4574), 1, + ACTIONS(2367), 1, sym__highlight_span_start, - ACTIONS(4576), 1, + ACTIONS(2369), 1, sym__insert_span_start, - ACTIONS(4578), 1, + ACTIONS(2371), 1, sym__delete_span_start, - ACTIONS(4580), 1, + ACTIONS(2373), 1, sym__edit_comment_span_start, - ACTIONS(4582), 1, + ACTIONS(2375), 1, sym__single_quote_span_open, - ACTIONS(4584), 1, + ACTIONS(2377), 1, sym__double_quote_span_open, - ACTIONS(4586), 1, + ACTIONS(2379), 1, sym__shortcode_open_escaped, - ACTIONS(4588), 1, + ACTIONS(2381), 1, sym__shortcode_open, - ACTIONS(4590), 1, + ACTIONS(2383), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4592), 1, + ACTIONS(2385), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4594), 1, + ACTIONS(2387), 1, sym__cite_author_in_text, - ACTIONS(4596), 1, + ACTIONS(2389), 1, sym__cite_suppress_author, - ACTIONS(4598), 1, + ACTIONS(2391), 1, sym__strikeout_open, - ACTIONS(4600), 1, + ACTIONS(2393), 1, sym__subscript_open, - ACTIONS(4602), 1, + ACTIONS(2395), 1, sym__superscript_open, - ACTIONS(4604), 1, + ACTIONS(2397), 1, sym__inline_note_start_token, - ACTIONS(4606), 1, + ACTIONS(2399), 1, sym__strong_emphasis_open_star, - ACTIONS(4608), 1, + ACTIONS(2401), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4610), 1, + ACTIONS(2403), 1, sym__emphasis_open_star, - ACTIONS(4612), 1, + ACTIONS(2405), 1, sym__emphasis_open_underscore, ACTIONS(5900), 7, sym__html_comment, @@ -104107,7 +104559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2119), 23, + STATE(1169), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104132,61 +104584,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45421] = 30, - ACTIONS(2181), 1, + ACTIONS(4672), 1, anon_sym_LBRACK, - ACTIONS(2185), 1, + ACTIONS(4674), 1, anon_sym_BANG_LBRACK, - ACTIONS(2189), 1, + ACTIONS(4676), 1, anon_sym_DOLLAR, - ACTIONS(2191), 1, + ACTIONS(4678), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2193), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, + ACTIONS(4682), 1, aux_sym_pandoc_str_token1, - ACTIONS(2197), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(2203), 1, + ACTIONS(4688), 1, sym__code_span_start, - ACTIONS(2205), 1, + ACTIONS(4690), 1, sym__highlight_span_start, - ACTIONS(2207), 1, + ACTIONS(4692), 1, sym__insert_span_start, - ACTIONS(2209), 1, + ACTIONS(4694), 1, sym__delete_span_start, - ACTIONS(2211), 1, + ACTIONS(4696), 1, sym__edit_comment_span_start, - ACTIONS(2213), 1, + ACTIONS(4698), 1, sym__single_quote_span_open, - ACTIONS(2215), 1, + ACTIONS(4700), 1, sym__double_quote_span_open, - ACTIONS(2217), 1, + ACTIONS(4702), 1, sym__shortcode_open_escaped, - ACTIONS(2219), 1, + ACTIONS(4704), 1, sym__shortcode_open, - ACTIONS(2221), 1, + ACTIONS(4706), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2223), 1, + ACTIONS(4708), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2225), 1, + ACTIONS(4710), 1, sym__cite_author_in_text, - ACTIONS(2227), 1, + ACTIONS(4712), 1, sym__cite_suppress_author, - ACTIONS(2229), 1, + ACTIONS(4714), 1, sym__strikeout_open, - ACTIONS(2231), 1, + ACTIONS(4716), 1, sym__subscript_open, - ACTIONS(2233), 1, + ACTIONS(4718), 1, sym__superscript_open, - ACTIONS(2235), 1, + ACTIONS(4720), 1, sym__inline_note_start_token, - ACTIONS(2237), 1, + ACTIONS(4722), 1, sym__strong_emphasis_open_star, - ACTIONS(2239), 1, + ACTIONS(4724), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2241), 1, + ACTIONS(4726), 1, sym__emphasis_open_star, - ACTIONS(2243), 1, + ACTIONS(4728), 1, sym__emphasis_open_underscore, ACTIONS(5902), 7, sym__html_comment, @@ -104196,7 +104648,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1169), 23, + STATE(2259), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104221,61 +104673,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45540] = 30, - ACTIONS(4400), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4402), 1, + ACTIONS(4614), 1, anon_sym_BANG_LBRACK, - ACTIONS(4404), 1, + ACTIONS(4616), 1, anon_sym_DOLLAR, - ACTIONS(4406), 1, + ACTIONS(4618), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4408), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, - ACTIONS(4410), 1, + ACTIONS(4622), 1, aux_sym_pandoc_str_token1, - ACTIONS(4412), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(4416), 1, + ACTIONS(4628), 1, sym__code_span_start, - ACTIONS(4418), 1, + ACTIONS(4630), 1, sym__highlight_span_start, - ACTIONS(4420), 1, + ACTIONS(4632), 1, sym__insert_span_start, - ACTIONS(4422), 1, + ACTIONS(4634), 1, sym__delete_span_start, - ACTIONS(4424), 1, + ACTIONS(4636), 1, sym__edit_comment_span_start, - ACTIONS(4426), 1, + ACTIONS(4638), 1, sym__single_quote_span_open, - ACTIONS(4428), 1, + ACTIONS(4640), 1, sym__double_quote_span_open, - ACTIONS(4430), 1, + ACTIONS(4642), 1, sym__shortcode_open_escaped, - ACTIONS(4432), 1, + ACTIONS(4644), 1, sym__shortcode_open, - ACTIONS(4434), 1, + ACTIONS(4646), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4436), 1, + ACTIONS(4648), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4438), 1, + ACTIONS(4650), 1, sym__cite_author_in_text, - ACTIONS(4440), 1, + ACTIONS(4652), 1, sym__cite_suppress_author, - ACTIONS(4442), 1, + ACTIONS(4654), 1, sym__strikeout_open, - ACTIONS(4444), 1, + ACTIONS(4656), 1, sym__subscript_open, - ACTIONS(4446), 1, + ACTIONS(4658), 1, sym__superscript_open, - ACTIONS(4448), 1, + ACTIONS(4660), 1, sym__inline_note_start_token, - ACTIONS(4450), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4452), 1, + ACTIONS(4664), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4454), 1, + ACTIONS(4666), 1, sym__emphasis_open_star, - ACTIONS(4456), 1, + ACTIONS(4668), 1, sym__emphasis_open_underscore, ACTIONS(5904), 7, sym__html_comment, @@ -104285,7 +104737,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1534), 23, + STATE(1688), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104310,61 +104762,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45659] = 30, - ACTIONS(5352), 1, + ACTIONS(4394), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(4396), 1, anon_sym_BANG_LBRACK, - ACTIONS(5356), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR, - ACTIONS(5358), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(4404), 1, aux_sym_pandoc_str_token1, - ACTIONS(5364), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(5368), 1, + ACTIONS(4410), 1, sym__code_span_start, - ACTIONS(5370), 1, + ACTIONS(4412), 1, sym__highlight_span_start, - ACTIONS(5372), 1, + ACTIONS(4414), 1, sym__insert_span_start, - ACTIONS(5374), 1, + ACTIONS(4416), 1, sym__delete_span_start, - ACTIONS(5376), 1, + ACTIONS(4418), 1, sym__edit_comment_span_start, - ACTIONS(5378), 1, + ACTIONS(4420), 1, sym__single_quote_span_open, - ACTIONS(5380), 1, + ACTIONS(4422), 1, sym__double_quote_span_open, - ACTIONS(5382), 1, + ACTIONS(4424), 1, sym__shortcode_open_escaped, - ACTIONS(5384), 1, + ACTIONS(4426), 1, sym__shortcode_open, - ACTIONS(5386), 1, + ACTIONS(4428), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5388), 1, + ACTIONS(4430), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5390), 1, + ACTIONS(4432), 1, sym__cite_author_in_text, - ACTIONS(5392), 1, + ACTIONS(4434), 1, sym__cite_suppress_author, - ACTIONS(5394), 1, + ACTIONS(4436), 1, sym__strikeout_open, - ACTIONS(5396), 1, + ACTIONS(4438), 1, sym__subscript_open, - ACTIONS(5398), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(5400), 1, + ACTIONS(4442), 1, sym__inline_note_start_token, - ACTIONS(5402), 1, + ACTIONS(4444), 1, sym__strong_emphasis_open_star, - ACTIONS(5404), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5406), 1, + ACTIONS(4448), 1, sym__emphasis_open_star, - ACTIONS(5408), 1, + ACTIONS(4450), 1, sym__emphasis_open_underscore, ACTIONS(5906), 7, sym__html_comment, @@ -104399,61 +104851,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45778] = 30, - ACTIONS(4802), 1, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4806), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4808), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4810), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4812), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4814), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4818), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4820), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4822), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4824), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4826), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4828), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4830), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4832), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4834), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4836), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4838), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4840), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4842), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4844), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4846), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4848), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4850), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4852), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4854), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4856), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4858), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, ACTIONS(5908), 7, sym__html_comment, @@ -104463,7 +104915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1951), 23, + STATE(1370), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104488,61 +104940,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [45897] = 30, - ACTIONS(3948), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, - ACTIONS(3950), 1, + ACTIONS(4458), 1, anon_sym_BANG_LBRACK, - ACTIONS(3952), 1, + ACTIONS(4460), 1, anon_sym_DOLLAR, - ACTIONS(3954), 1, + ACTIONS(4462), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3956), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4466), 1, aux_sym_pandoc_str_token1, - ACTIONS(3960), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(3964), 1, + ACTIONS(4472), 1, sym__code_span_start, - ACTIONS(3966), 1, + ACTIONS(4474), 1, sym__highlight_span_start, - ACTIONS(3968), 1, + ACTIONS(4476), 1, sym__insert_span_start, - ACTIONS(3970), 1, + ACTIONS(4478), 1, sym__delete_span_start, - ACTIONS(3972), 1, + ACTIONS(4480), 1, sym__edit_comment_span_start, - ACTIONS(3974), 1, + ACTIONS(4482), 1, sym__single_quote_span_open, - ACTIONS(3976), 1, + ACTIONS(4484), 1, sym__double_quote_span_open, - ACTIONS(3978), 1, + ACTIONS(4486), 1, sym__shortcode_open_escaped, - ACTIONS(3980), 1, + ACTIONS(4488), 1, sym__shortcode_open, - ACTIONS(3982), 1, + ACTIONS(4490), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(4492), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3986), 1, + ACTIONS(4494), 1, sym__cite_author_in_text, - ACTIONS(3988), 1, + ACTIONS(4496), 1, sym__cite_suppress_author, - ACTIONS(3990), 1, + ACTIONS(4498), 1, sym__strikeout_open, - ACTIONS(3992), 1, + ACTIONS(4500), 1, sym__subscript_open, - ACTIONS(3994), 1, + ACTIONS(4502), 1, sym__superscript_open, - ACTIONS(3996), 1, + ACTIONS(4504), 1, sym__inline_note_start_token, - ACTIONS(3998), 1, + ACTIONS(4506), 1, sym__strong_emphasis_open_star, - ACTIONS(4000), 1, + ACTIONS(4508), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4002), 1, + ACTIONS(4510), 1, sym__emphasis_open_star, - ACTIONS(4004), 1, + ACTIONS(4512), 1, sym__emphasis_open_underscore, ACTIONS(5910), 7, sym__html_comment, @@ -104552,7 +105004,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1627), 23, + STATE(1802), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104577,61 +105029,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [46016] = 30, - ACTIONS(4250), 1, + ACTIONS(5106), 1, anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(5108), 1, anon_sym_BANG_LBRACK, - ACTIONS(4254), 1, + ACTIONS(5110), 1, anon_sym_DOLLAR, - ACTIONS(4256), 1, + ACTIONS(5112), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4258), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(5116), 1, aux_sym_pandoc_str_token1, - ACTIONS(4262), 1, + ACTIONS(5118), 1, anon_sym_PIPE, - ACTIONS(4266), 1, + ACTIONS(5122), 1, sym__code_span_start, - ACTIONS(4268), 1, + ACTIONS(5124), 1, sym__highlight_span_start, - ACTIONS(4270), 1, + ACTIONS(5126), 1, sym__insert_span_start, - ACTIONS(4272), 1, + ACTIONS(5128), 1, sym__delete_span_start, - ACTIONS(4274), 1, + ACTIONS(5130), 1, sym__edit_comment_span_start, - ACTIONS(4276), 1, + ACTIONS(5132), 1, sym__single_quote_span_open, - ACTIONS(4278), 1, + ACTIONS(5134), 1, sym__double_quote_span_open, - ACTIONS(4280), 1, + ACTIONS(5136), 1, sym__shortcode_open_escaped, - ACTIONS(4282), 1, + ACTIONS(5138), 1, sym__shortcode_open, - ACTIONS(4284), 1, + ACTIONS(5140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4286), 1, + ACTIONS(5142), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4288), 1, + ACTIONS(5144), 1, sym__cite_author_in_text, - ACTIONS(4290), 1, + ACTIONS(5146), 1, sym__cite_suppress_author, - ACTIONS(4292), 1, + ACTIONS(5148), 1, sym__strikeout_open, - ACTIONS(4294), 1, + ACTIONS(5150), 1, sym__subscript_open, - ACTIONS(4296), 1, + ACTIONS(5152), 1, sym__superscript_open, - ACTIONS(4298), 1, + ACTIONS(5154), 1, sym__inline_note_start_token, - ACTIONS(4300), 1, + ACTIONS(5156), 1, sym__strong_emphasis_open_star, - ACTIONS(4302), 1, + ACTIONS(5158), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4304), 1, + ACTIONS(5160), 1, sym__emphasis_open_star, - ACTIONS(4306), 1, + ACTIONS(5162), 1, sym__emphasis_open_underscore, ACTIONS(5912), 7, sym__html_comment, @@ -104641,7 +105093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2092), 23, + STATE(1534), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104666,61 +105118,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [46135] = 30, - ACTIONS(4100), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(4102), 1, + ACTIONS(5442), 1, anon_sym_BANG_LBRACK, - ACTIONS(4104), 1, + ACTIONS(5444), 1, anon_sym_DOLLAR, - ACTIONS(4106), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4108), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(5450), 1, aux_sym_pandoc_str_token1, - ACTIONS(4112), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(5456), 1, sym__code_span_start, - ACTIONS(4118), 1, + ACTIONS(5458), 1, sym__highlight_span_start, - ACTIONS(4120), 1, + ACTIONS(5460), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(5462), 1, sym__delete_span_start, - ACTIONS(4124), 1, + ACTIONS(5464), 1, sym__edit_comment_span_start, - ACTIONS(4126), 1, + ACTIONS(5466), 1, sym__single_quote_span_open, - ACTIONS(4128), 1, + ACTIONS(5468), 1, sym__double_quote_span_open, - ACTIONS(4130), 1, + ACTIONS(5470), 1, sym__shortcode_open_escaped, - ACTIONS(4132), 1, + ACTIONS(5472), 1, sym__shortcode_open, - ACTIONS(4134), 1, + ACTIONS(5474), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4136), 1, + ACTIONS(5476), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4138), 1, + ACTIONS(5478), 1, sym__cite_author_in_text, - ACTIONS(4140), 1, + ACTIONS(5480), 1, sym__cite_suppress_author, - ACTIONS(4142), 1, + ACTIONS(5482), 1, sym__strikeout_open, - ACTIONS(4144), 1, + ACTIONS(5484), 1, sym__subscript_open, - ACTIONS(4146), 1, + ACTIONS(5486), 1, sym__superscript_open, - ACTIONS(4148), 1, + ACTIONS(5488), 1, sym__inline_note_start_token, - ACTIONS(4150), 1, + ACTIONS(5490), 1, sym__strong_emphasis_open_star, - ACTIONS(4152), 1, + ACTIONS(5492), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4154), 1, + ACTIONS(5494), 1, sym__emphasis_open_star, - ACTIONS(4156), 1, + ACTIONS(5496), 1, sym__emphasis_open_underscore, ACTIONS(5914), 7, sym__html_comment, @@ -104730,7 +105182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1802), 23, + STATE(1627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104755,61 +105207,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [46254] = 30, - ACTIONS(5102), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(5104), 1, + ACTIONS(3411), 1, anon_sym_BANG_LBRACK, - ACTIONS(5106), 1, + ACTIONS(3413), 1, anon_sym_DOLLAR, - ACTIONS(5108), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5110), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(3419), 1, aux_sym_pandoc_str_token1, - ACTIONS(5114), 1, + ACTIONS(3421), 1, anon_sym_PIPE, - ACTIONS(5118), 1, + ACTIONS(3425), 1, sym__code_span_start, - ACTIONS(5120), 1, + ACTIONS(3427), 1, sym__highlight_span_start, - ACTIONS(5122), 1, + ACTIONS(3429), 1, sym__insert_span_start, - ACTIONS(5124), 1, + ACTIONS(3431), 1, sym__delete_span_start, - ACTIONS(5126), 1, + ACTIONS(3433), 1, sym__edit_comment_span_start, - ACTIONS(5128), 1, + ACTIONS(3435), 1, sym__single_quote_span_open, - ACTIONS(5130), 1, + ACTIONS(3437), 1, sym__double_quote_span_open, - ACTIONS(5132), 1, + ACTIONS(3439), 1, sym__shortcode_open_escaped, - ACTIONS(5134), 1, + ACTIONS(3441), 1, sym__shortcode_open, - ACTIONS(5136), 1, + ACTIONS(3443), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5138), 1, + ACTIONS(3445), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5140), 1, + ACTIONS(3447), 1, sym__cite_author_in_text, - ACTIONS(5142), 1, + ACTIONS(3449), 1, sym__cite_suppress_author, - ACTIONS(5144), 1, + ACTIONS(3451), 1, sym__strikeout_open, - ACTIONS(5146), 1, + ACTIONS(3453), 1, sym__subscript_open, - ACTIONS(5148), 1, + ACTIONS(3455), 1, sym__superscript_open, - ACTIONS(5150), 1, + ACTIONS(3457), 1, sym__inline_note_start_token, - ACTIONS(5152), 1, + ACTIONS(3459), 1, sym__strong_emphasis_open_star, - ACTIONS(5154), 1, + ACTIONS(3461), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5156), 1, + ACTIONS(3463), 1, sym__emphasis_open_star, - ACTIONS(5158), 1, + ACTIONS(3465), 1, sym__emphasis_open_underscore, ACTIONS(5916), 7, sym__html_comment, @@ -104819,7 +105271,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1688), 23, + STATE(1840), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104844,61 +105296,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [46373] = 30, - ACTIONS(9), 1, + ACTIONS(4184), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4186), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4188), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4190), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4194), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4196), 1, anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(4200), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4202), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4204), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4206), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4208), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4210), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4212), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4214), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4216), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4218), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4220), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4222), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4224), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4226), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4228), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4232), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4234), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4238), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4240), 1, sym__emphasis_open_underscore, ACTIONS(5918), 7, sym__html_comment, @@ -104908,7 +105360,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1370), 23, + STATE(1951), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104933,61 +105385,61 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, [46492] = 30, - ACTIONS(3085), 1, + ACTIONS(4244), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, + ACTIONS(4246), 1, anon_sym_BANG_LBRACK, - ACTIONS(3089), 1, + ACTIONS(4248), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4250), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3095), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4254), 1, aux_sym_pandoc_str_token1, - ACTIONS(3099), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(4260), 1, sym__code_span_start, - ACTIONS(3107), 1, + ACTIONS(4262), 1, sym__highlight_span_start, - ACTIONS(3109), 1, + ACTIONS(4264), 1, sym__insert_span_start, - ACTIONS(3111), 1, + ACTIONS(4266), 1, sym__delete_span_start, - ACTIONS(3113), 1, + ACTIONS(4268), 1, sym__edit_comment_span_start, - ACTIONS(3115), 1, + ACTIONS(4270), 1, sym__single_quote_span_open, - ACTIONS(3117), 1, + ACTIONS(4272), 1, sym__double_quote_span_open, - ACTIONS(3119), 1, + ACTIONS(4274), 1, sym__shortcode_open_escaped, - ACTIONS(3121), 1, + ACTIONS(4276), 1, sym__shortcode_open, - ACTIONS(3123), 1, + ACTIONS(4278), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3125), 1, + ACTIONS(4280), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3127), 1, + ACTIONS(4282), 1, sym__cite_author_in_text, - ACTIONS(3129), 1, + ACTIONS(4284), 1, sym__cite_suppress_author, - ACTIONS(3131), 1, + ACTIONS(4286), 1, sym__strikeout_open, - ACTIONS(3133), 1, + ACTIONS(4288), 1, sym__subscript_open, - ACTIONS(3135), 1, + ACTIONS(4290), 1, sym__superscript_open, - ACTIONS(3137), 1, + ACTIONS(4292), 1, sym__inline_note_start_token, - ACTIONS(3139), 1, + ACTIONS(4294), 1, sym__strong_emphasis_open_star, - ACTIONS(3141), 1, + ACTIONS(4296), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3143), 1, + ACTIONS(4298), 1, sym__emphasis_open_star, - ACTIONS(3145), 1, + ACTIONS(4300), 1, sym__emphasis_open_underscore, ACTIONS(5920), 7, sym__html_comment, @@ -104997,7 +105449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2209), 23, + STATE(2092), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105157,7 +105609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [46754] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(992), 1, sym__pandoc_attr_specifier, @@ -105203,7 +105655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [46804] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(995), 1, sym__pandoc_attr_specifier, @@ -105249,7 +105701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [46854] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(998), 1, sym__pandoc_attr_specifier, @@ -105295,7 +105747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [46904] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1001), 1, sym__pandoc_attr_specifier, @@ -105341,7 +105793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [46954] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1014), 1, sym__pandoc_attr_specifier, @@ -105387,7 +105839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47004] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1018), 1, sym__pandoc_attr_specifier, @@ -105479,7 +105931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47104] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1024), 1, sym__pandoc_attr_specifier, @@ -105525,7 +105977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47154] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1025), 1, sym__pandoc_attr_specifier, @@ -105571,7 +106023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47204] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1027), 1, sym__pandoc_attr_specifier, @@ -105617,7 +106069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47254] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1028), 1, sym__pandoc_attr_specifier, @@ -105663,7 +106115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47304] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1030), 1, sym__pandoc_attr_specifier, @@ -105709,7 +106161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47354] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(977), 1, sym__pandoc_attr_specifier, @@ -105755,7 +106207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47404] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1033), 1, sym__pandoc_attr_specifier, @@ -105801,7 +106253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47454] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1034), 1, sym__pandoc_attr_specifier, @@ -105847,7 +106299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47504] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1039), 1, sym__pandoc_attr_specifier, @@ -105893,7 +106345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47554] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1040), 1, sym__pandoc_attr_specifier, @@ -105939,7 +106391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47604] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1042), 1, sym__pandoc_attr_specifier, @@ -105985,7 +106437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47654] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1043), 1, sym__pandoc_attr_specifier, @@ -106031,7 +106483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47704] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1045), 1, sym__pandoc_attr_specifier, @@ -106077,7 +106529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47754] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1046), 1, sym__pandoc_attr_specifier, @@ -106123,7 +106575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47804] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1047), 1, sym__pandoc_attr_specifier, @@ -106169,7 +106621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47854] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1048), 1, sym__pandoc_attr_specifier, @@ -106215,7 +106667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47904] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1053), 1, sym__pandoc_attr_specifier, @@ -106261,7 +106713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [47954] = 4, - ACTIONS(2059), 1, + ACTIONS(2117), 1, anon_sym_LBRACE, STATE(1054), 1, sym__pandoc_attr_specifier, @@ -106350,7 +106802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [48049] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1251), 1, sym__pandoc_attr_specifier, @@ -106395,7 +106847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [48098] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1252), 1, sym__pandoc_attr_specifier, @@ -106618,7 +107070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [48339] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1189), 1, sym__pandoc_attr_specifier, @@ -106835,7 +107287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [48568] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1192), 1, sym__pandoc_attr_specifier, @@ -106880,7 +107332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [48617] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1195), 1, sym__pandoc_attr_specifier, @@ -106925,7 +107377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [48666] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1198), 1, sym__pandoc_attr_specifier, @@ -107013,7 +107465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [48760] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1211), 1, sym__pandoc_attr_specifier, @@ -107058,7 +107510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [48809] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1215), 1, sym__pandoc_attr_specifier, @@ -107191,7 +107643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [48952] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1221), 1, sym__pandoc_attr_specifier, @@ -107279,7 +107731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [49046] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1222), 1, sym__pandoc_attr_specifier, @@ -107324,7 +107776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49095] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1224), 1, sym__pandoc_attr_specifier, @@ -107412,7 +107864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [49189] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1225), 1, sym__pandoc_attr_specifier, @@ -107457,7 +107909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49238] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1227), 1, sym__pandoc_attr_specifier, @@ -108018,7 +108470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [49827] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1228), 1, sym__pandoc_attr_specifier, @@ -108063,7 +108515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49876] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1230), 1, sym__pandoc_attr_specifier, @@ -108151,7 +108603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [49970] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1231), 1, sym__pandoc_attr_specifier, @@ -108196,7 +108648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [50019] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1236), 1, sym__pandoc_attr_specifier, @@ -108456,7 +108908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [50293] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1237), 1, sym__pandoc_attr_specifier, @@ -108587,7 +109039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [50432] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1239), 1, sym__pandoc_attr_specifier, @@ -108678,7 +109130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2739), 38, + ACTIONS(2875), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -108718,7 +109170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [50571] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1240), 1, sym__pandoc_attr_specifier, @@ -108849,7 +109301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [50710] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1242), 1, sym__pandoc_attr_specifier, @@ -109111,7 +109563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [50988] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1243), 1, sym__pandoc_attr_specifier, @@ -109242,7 +109694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [51127] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1244), 1, sym__pandoc_attr_specifier, @@ -110364,7 +110816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [52305] = 4, - ACTIONS(2193), 1, + ACTIONS(2355), 1, anon_sym_LBRACE, STATE(1245), 1, sym__pandoc_attr_specifier, @@ -111395,7 +111847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53424] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2264), 1, sym__pandoc_attr_specifier, @@ -111439,7 +111891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53472] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2151), 1, sym__pandoc_attr_specifier, @@ -111483,7 +111935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53520] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2156), 1, sym__pandoc_attr_specifier, @@ -111527,7 +111979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53568] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2189), 1, sym__pandoc_attr_specifier, @@ -111571,7 +112023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53616] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2190), 1, sym__pandoc_attr_specifier, @@ -111615,7 +112067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53664] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(2250), 1, sym__pandoc_attr_specifier, @@ -111659,7 +112111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53712] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(2254), 1, sym__pandoc_attr_specifier, @@ -111703,7 +112155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53760] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(2268), 1, sym__pandoc_attr_specifier, @@ -111747,7 +112199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53808] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(2280), 1, sym__pandoc_attr_specifier, @@ -111791,7 +112243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53856] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(2323), 1, sym__pandoc_attr_specifier, @@ -111835,7 +112287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [53904] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(2329), 1, sym__pandoc_attr_specifier, @@ -111923,7 +112375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54000] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1539), 1, sym__pandoc_attr_specifier, @@ -111967,7 +112419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54048] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1540), 1, sym__pandoc_attr_specifier, @@ -112011,7 +112463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54096] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1542), 1, sym__pandoc_attr_specifier, @@ -112055,7 +112507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54144] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1543), 1, sym__pandoc_attr_specifier, @@ -112099,7 +112551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54192] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1545), 1, sym__pandoc_attr_specifier, @@ -112143,7 +112595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54240] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1546), 1, sym__pandoc_attr_specifier, @@ -112187,7 +112639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54288] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1548), 1, sym__pandoc_attr_specifier, @@ -112231,7 +112683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54336] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1549), 1, sym__pandoc_attr_specifier, @@ -112275,7 +112727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54384] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1554), 1, sym__pandoc_attr_specifier, @@ -112319,7 +112771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54432] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1555), 1, sym__pandoc_attr_specifier, @@ -112363,7 +112815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54480] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1557), 1, sym__pandoc_attr_specifier, @@ -112407,7 +112859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54528] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1558), 1, sym__pandoc_attr_specifier, @@ -112451,7 +112903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54576] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1992), 1, sym__pandoc_attr_specifier, @@ -112495,7 +112947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54624] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1560), 1, sym__pandoc_attr_specifier, @@ -112539,7 +112991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54672] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1561), 1, sym__pandoc_attr_specifier, @@ -112583,7 +113035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54720] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1562), 1, sym__pandoc_attr_specifier, @@ -112627,7 +113079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54768] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1563), 1, sym__pandoc_attr_specifier, @@ -112671,7 +113123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54816] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1569), 1, sym__pandoc_attr_specifier, @@ -112715,7 +113167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54864] = 4, - ACTIONS(4258), 1, + ACTIONS(4252), 1, anon_sym_LBRACE, STATE(1570), 1, sym__pandoc_attr_specifier, @@ -112759,7 +113211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54912] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1594), 1, sym__pandoc_attr_specifier, @@ -112803,7 +113255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [54960] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1597), 1, sym__pandoc_attr_specifier, @@ -112847,7 +113299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55008] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1600), 1, sym__pandoc_attr_specifier, @@ -112891,7 +113343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55056] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1603), 1, sym__pandoc_attr_specifier, @@ -112935,7 +113387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55104] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1616), 1, sym__pandoc_attr_specifier, @@ -112979,7 +113431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55152] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1620), 1, sym__pandoc_attr_specifier, @@ -113067,7 +113519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55248] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1632), 1, sym__pandoc_attr_specifier, @@ -113111,7 +113563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55296] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1633), 1, sym__pandoc_attr_specifier, @@ -113155,7 +113607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55344] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1635), 1, sym__pandoc_attr_specifier, @@ -113199,7 +113651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55392] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1636), 1, sym__pandoc_attr_specifier, @@ -113243,7 +113695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55440] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1638), 1, sym__pandoc_attr_specifier, @@ -113287,7 +113739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55488] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1639), 1, sym__pandoc_attr_specifier, @@ -113331,7 +113783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55536] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1641), 1, sym__pandoc_attr_specifier, @@ -113375,7 +113827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55584] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1642), 1, sym__pandoc_attr_specifier, @@ -113419,7 +113871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55632] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1647), 1, sym__pandoc_attr_specifier, @@ -113463,7 +113915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55680] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1648), 1, sym__pandoc_attr_specifier, @@ -113507,7 +113959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55728] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1650), 1, sym__pandoc_attr_specifier, @@ -113551,7 +114003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55776] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1651), 1, sym__pandoc_attr_specifier, @@ -113595,7 +114047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55824] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1993), 1, sym__pandoc_attr_specifier, @@ -113639,7 +114091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55872] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1653), 1, sym__pandoc_attr_specifier, @@ -113683,7 +114135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55920] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1654), 1, sym__pandoc_attr_specifier, @@ -113727,7 +114179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [55968] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1655), 1, sym__pandoc_attr_specifier, @@ -113771,7 +114223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56016] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1656), 1, sym__pandoc_attr_specifier, @@ -113815,7 +114267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56064] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1662), 1, sym__pandoc_attr_specifier, @@ -113859,7 +114311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56112] = 4, - ACTIONS(4408), 1, + ACTIONS(5114), 1, anon_sym_LBRACE, STATE(1663), 1, sym__pandoc_attr_specifier, @@ -113903,7 +114355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56160] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1687), 1, sym__pandoc_attr_specifier, @@ -113947,7 +114399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56208] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1690), 1, sym__pandoc_attr_specifier, @@ -113991,7 +114443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56256] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1693), 1, sym__pandoc_attr_specifier, @@ -114035,7 +114487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56304] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1696), 1, sym__pandoc_attr_specifier, @@ -114079,7 +114531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56352] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1709), 1, sym__pandoc_attr_specifier, @@ -114123,7 +114575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56400] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1713), 1, sym__pandoc_attr_specifier, @@ -114211,7 +114663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56496] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1725), 1, sym__pandoc_attr_specifier, @@ -114255,7 +114707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56544] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1726), 1, sym__pandoc_attr_specifier, @@ -114299,7 +114751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56592] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1728), 1, sym__pandoc_attr_specifier, @@ -114343,7 +114795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56640] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1729), 1, sym__pandoc_attr_specifier, @@ -114387,7 +114839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56688] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1731), 1, sym__pandoc_attr_specifier, @@ -114431,7 +114883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56736] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1732), 1, sym__pandoc_attr_specifier, @@ -114475,7 +114927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56784] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1734), 1, sym__pandoc_attr_specifier, @@ -114519,7 +114971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56832] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1735), 1, sym__pandoc_attr_specifier, @@ -114563,7 +115015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56880] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1740), 1, sym__pandoc_attr_specifier, @@ -114607,7 +115059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56928] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1741), 1, sym__pandoc_attr_specifier, @@ -114651,7 +115103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [56976] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1743), 1, sym__pandoc_attr_specifier, @@ -114695,7 +115147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57024] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1744), 1, sym__pandoc_attr_specifier, @@ -114781,7 +115233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [57116] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1994), 1, sym__pandoc_attr_specifier, @@ -114825,7 +115277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57164] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1746), 1, sym__pandoc_attr_specifier, @@ -114869,7 +115321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57212] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1747), 1, sym__pandoc_attr_specifier, @@ -114913,7 +115365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57260] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1748), 1, sym__pandoc_attr_specifier, @@ -114957,7 +115409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57308] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1749), 1, sym__pandoc_attr_specifier, @@ -115001,7 +115453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57356] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1755), 1, sym__pandoc_attr_specifier, @@ -115045,7 +115497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57404] = 4, - ACTIONS(3956), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, STATE(1756), 1, sym__pandoc_attr_specifier, @@ -115131,7 +115583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [57496] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1541), 1, sym__pandoc_attr_specifier, @@ -115175,7 +115627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57544] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1544), 1, sym__pandoc_attr_specifier, @@ -115219,7 +115671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57592] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1550), 1, sym__pandoc_attr_specifier, @@ -115263,7 +115715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57640] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1595), 1, sym__pandoc_attr_specifier, @@ -115475,7 +115927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [57864] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1596), 1, sym__pandoc_attr_specifier, @@ -115519,7 +115971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57912] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2274), 1, sym__pandoc_attr_specifier, @@ -115563,7 +116015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [57960] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1814), 1, sym__pandoc_attr_specifier, @@ -115649,7 +116101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [58052] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1818), 1, sym__pandoc_attr_specifier, @@ -115693,7 +116145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [58100] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1834), 1, sym__pandoc_attr_specifier, @@ -115779,7 +116231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [58192] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1847), 1, sym__pandoc_attr_specifier, @@ -115823,7 +116275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [58240] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1924), 1, sym__pandoc_attr_specifier, @@ -115909,7 +116361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [58332] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1930), 1, sym__pandoc_attr_specifier, @@ -116081,7 +116533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [58516] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1981), 1, sym__pandoc_attr_specifier, @@ -116629,7 +117081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [59092] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(1987), 1, sym__pandoc_attr_specifier, @@ -116673,7 +117125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [59140] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2030), 1, sym__pandoc_attr_specifier, @@ -116759,7 +117211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [59232] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2032), 1, sym__pandoc_attr_specifier, @@ -116803,7 +117255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [59280] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2034), 1, sym__pandoc_attr_specifier, @@ -117057,7 +117509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [59548] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2035), 1, sym__pandoc_attr_specifier, @@ -117185,7 +117637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [59684] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2043), 1, sym__pandoc_attr_specifier, @@ -117313,7 +117765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [59820] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2045), 1, sym__pandoc_attr_specifier, @@ -117441,7 +117893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [59956] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2060), 1, sym__pandoc_attr_specifier, @@ -117695,7 +118147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [60224] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2062), 1, sym__pandoc_attr_specifier, @@ -117823,7 +118275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [60360] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2065), 1, sym__pandoc_attr_specifier, @@ -118875,7 +119327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [61464] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2066), 1, sym__pandoc_attr_specifier, @@ -118919,7 +119371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61512] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2283), 1, sym__pandoc_attr_specifier, @@ -118963,7 +119415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61560] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2081), 1, sym__pandoc_attr_specifier, @@ -119007,7 +119459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61608] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2083), 1, sym__pandoc_attr_specifier, @@ -119051,7 +119503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61656] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2084), 1, sym__pandoc_attr_specifier, @@ -119095,7 +119547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61704] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2113), 1, sym__pandoc_attr_specifier, @@ -119139,7 +119591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61752] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2214), 1, sym__pandoc_attr_specifier, @@ -119183,7 +119635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61800] = 4, - ACTIONS(4108), 1, + ACTIONS(4464), 1, anon_sym_LBRACE, STATE(2215), 1, sym__pandoc_attr_specifier, @@ -119227,7 +119679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61848] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2080), 1, sym__pandoc_attr_specifier, @@ -119271,7 +119723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61896] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1580), 1, sym__pandoc_attr_specifier, @@ -119315,7 +119767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61944] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1583), 1, sym__pandoc_attr_specifier, @@ -119359,7 +119811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [61992] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1593), 1, sym__pandoc_attr_specifier, @@ -119403,7 +119855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62040] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1598), 1, sym__pandoc_attr_specifier, @@ -119447,7 +119899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62088] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1640), 1, sym__pandoc_attr_specifier, @@ -119491,7 +119943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62136] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1673), 1, sym__pandoc_attr_specifier, @@ -119621,7 +120073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62276] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1695), 1, sym__pandoc_attr_specifier, @@ -119665,7 +120117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62324] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1697), 1, sym__pandoc_attr_specifier, @@ -119709,7 +120161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62372] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1711), 1, sym__pandoc_attr_specifier, @@ -119753,7 +120205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62420] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1712), 1, sym__pandoc_attr_specifier, @@ -119797,7 +120249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62468] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1715), 1, sym__pandoc_attr_specifier, @@ -119841,7 +120293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62516] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1720), 1, sym__pandoc_attr_specifier, @@ -119885,7 +120337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62564] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1727), 1, sym__pandoc_attr_specifier, @@ -119929,7 +120381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62612] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1730), 1, sym__pandoc_attr_specifier, @@ -119973,7 +120425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62660] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1764), 1, sym__pandoc_attr_specifier, @@ -120017,7 +120469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62708] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1765), 1, sym__pandoc_attr_specifier, @@ -120061,7 +120513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62756] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1767), 1, sym__pandoc_attr_specifier, @@ -120105,7 +120557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62804] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1768), 1, sym__pandoc_attr_specifier, @@ -120191,7 +120643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62896] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1770), 1, sym__pandoc_attr_specifier, @@ -120235,7 +120687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62944] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1771), 1, sym__pandoc_attr_specifier, @@ -120279,7 +120731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [62992] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1772), 1, sym__pandoc_attr_specifier, @@ -120323,7 +120775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63040] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1773), 1, sym__pandoc_attr_specifier, @@ -120367,7 +120819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63088] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1781), 1, sym__pandoc_attr_specifier, @@ -120411,7 +120863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63136] = 4, - ACTIONS(4810), 1, + ACTIONS(4192), 1, anon_sym_LBRACE, STATE(1782), 1, sym__pandoc_attr_specifier, @@ -120497,7 +120949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63228] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1803), 1, sym__pandoc_attr_specifier, @@ -120541,7 +120993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63276] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1810), 1, sym__pandoc_attr_specifier, @@ -120585,7 +121037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63324] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1813), 1, sym__pandoc_attr_specifier, @@ -120629,7 +121081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63372] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1816), 1, sym__pandoc_attr_specifier, @@ -120673,7 +121125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63420] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1829), 1, sym__pandoc_attr_specifier, @@ -120717,7 +121169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63468] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1833), 1, sym__pandoc_attr_specifier, @@ -120805,7 +121257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63564] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1845), 1, sym__pandoc_attr_specifier, @@ -120849,7 +121301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63612] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1846), 1, sym__pandoc_attr_specifier, @@ -120893,7 +121345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63660] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1848), 1, sym__pandoc_attr_specifier, @@ -120937,7 +121389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63708] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1849), 1, sym__pandoc_attr_specifier, @@ -120981,7 +121433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63756] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1857), 1, sym__pandoc_attr_specifier, @@ -121025,7 +121477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63804] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1871), 1, sym__pandoc_attr_specifier, @@ -121069,7 +121521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63852] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1873), 1, sym__pandoc_attr_specifier, @@ -121113,7 +121565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63900] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1874), 1, sym__pandoc_attr_specifier, @@ -121157,7 +121609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63948] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1885), 1, sym__pandoc_attr_specifier, @@ -121201,7 +121653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [63996] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1886), 1, sym__pandoc_attr_specifier, @@ -121245,7 +121697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64044] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1888), 1, sym__pandoc_attr_specifier, @@ -121289,7 +121741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64092] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1889), 1, sym__pandoc_attr_specifier, @@ -121336,7 +121788,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2749), 37, + ACTIONS(2891), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -121375,7 +121827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64184] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1890), 1, sym__pandoc_attr_specifier, @@ -121419,7 +121871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64232] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1891), 1, sym__pandoc_attr_specifier, @@ -121463,7 +121915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64280] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1892), 1, sym__pandoc_attr_specifier, @@ -121507,7 +121959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64328] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1893), 1, sym__pandoc_attr_specifier, @@ -121551,7 +122003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64376] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1899), 1, sym__pandoc_attr_specifier, @@ -121595,7 +122047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [64424] = 4, - ACTIONS(5110), 1, + ACTIONS(4620), 1, anon_sym_LBRACE, STATE(1900), 1, sym__pandoc_attr_specifier, @@ -121815,7 +122267,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inline_note_token1, anon_sym_PIPE, [64664] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2063), 1, sym__pandoc_attr_specifier, @@ -121903,7 +122355,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inline_note_token1, anon_sym_PIPE, [64760] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2326), 1, sym__pandoc_attr_specifier, @@ -122781,7 +123233,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inline_note_token1, anon_sym_PIPE, [65716] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1995), 1, sym__pandoc_attr_specifier, @@ -122867,7 +123319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [65808] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2001), 1, sym__pandoc_attr_specifier, @@ -122911,7 +123363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [65856] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2002), 1, sym__pandoc_attr_specifier, @@ -123377,7 +123829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [66348] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2052), 1, sym__pandoc_attr_specifier, @@ -123463,7 +123915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [66440] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2058), 1, sym__pandoc_attr_specifier, @@ -123549,7 +124001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [66532] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2061), 1, sym__pandoc_attr_specifier, @@ -123593,7 +124045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [66580] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2064), 1, sym__pandoc_attr_specifier, @@ -123637,7 +124089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [66628] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2077), 1, sym__pandoc_attr_specifier, @@ -123681,7 +124133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [66676] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2082), 1, sym__pandoc_attr_specifier, @@ -124273,7 +124725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67300] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2110), 1, sym__pandoc_attr_specifier, @@ -124401,7 +124853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67436] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2112), 1, sym__pandoc_attr_specifier, @@ -124529,7 +124981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67572] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2130), 1, sym__pandoc_attr_specifier, @@ -124573,7 +125025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67620] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2135), 1, sym__pandoc_attr_specifier, @@ -124617,7 +125069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67668] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2160), 1, sym__pandoc_attr_specifier, @@ -124661,7 +125113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67716] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2163), 1, sym__pandoc_attr_specifier, @@ -124705,7 +125157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [67764] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2085), 1, sym__pandoc_attr_specifier, @@ -124749,7 +125201,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [67812] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2088), 1, sym__pandoc_attr_specifier, @@ -124793,7 +125245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [67860] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2091), 1, sym__pandoc_attr_specifier, @@ -124837,7 +125289,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [67908] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2094), 1, sym__pandoc_attr_specifier, @@ -124881,7 +125333,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [67956] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2107), 1, sym__pandoc_attr_specifier, @@ -124925,7 +125377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [68004] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2111), 1, sym__pandoc_attr_specifier, @@ -124969,7 +125421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [68052] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2187), 1, sym__pandoc_attr_specifier, @@ -125013,7 +125465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68100] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2191), 1, sym__pandoc_attr_specifier, @@ -125057,7 +125509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68148] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2116), 1, sym__pandoc_attr_specifier, @@ -125143,7 +125595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68240] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2117), 1, sym__pandoc_attr_specifier, @@ -125355,7 +125807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68464] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2120), 1, sym__pandoc_attr_specifier, @@ -125483,7 +125935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68600] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2121), 1, sym__pandoc_attr_specifier, @@ -125527,7 +125979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68648] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2123), 1, sym__pandoc_attr_specifier, @@ -125613,7 +126065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68740] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2124), 1, sym__pandoc_attr_specifier, @@ -125657,7 +126109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68788] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2129), 1, sym__pandoc_attr_specifier, @@ -125743,7 +126195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68880] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2131), 1, sym__pandoc_attr_specifier, @@ -125787,7 +126239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [68928] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2136), 1, sym__pandoc_attr_specifier, @@ -125873,7 +126325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [69020] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2140), 1, sym__pandoc_attr_specifier, @@ -125917,7 +126369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [69068] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2146), 1, sym__pandoc_attr_specifier, @@ -126003,7 +126455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [69160] = 4, - ACTIONS(5360), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, STATE(2149), 1, sym__pandoc_attr_specifier, @@ -126175,7 +126627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69344] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2138), 1, sym__pandoc_attr_specifier, @@ -126219,7 +126671,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69392] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2139), 1, sym__pandoc_attr_specifier, @@ -126263,7 +126715,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69440] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2141), 1, sym__pandoc_attr_specifier, @@ -126307,7 +126759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69488] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2142), 1, sym__pandoc_attr_specifier, @@ -126351,7 +126803,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69536] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2144), 1, sym__pandoc_attr_specifier, @@ -126395,7 +126847,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69584] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2145), 1, sym__pandoc_attr_specifier, @@ -126439,7 +126891,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69632] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2147), 1, sym__pandoc_attr_specifier, @@ -126483,7 +126935,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69680] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2148), 1, sym__pandoc_attr_specifier, @@ -126527,7 +126979,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69728] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2154), 1, sym__pandoc_attr_specifier, @@ -126571,7 +127023,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69776] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2155), 1, sym__pandoc_attr_specifier, @@ -126615,7 +127067,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69824] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2157), 1, sym__pandoc_attr_specifier, @@ -126659,7 +127111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [69872] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2158), 1, sym__pandoc_attr_specifier, @@ -127000,7 +127452,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2778), 37, + ACTIONS(2920), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -127251,7 +127703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [70496] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2213), 1, sym__pandoc_attr_specifier, @@ -127295,7 +127747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [70544] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(2234), 1, sym__pandoc_attr_specifier, @@ -127339,7 +127791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [70592] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1579), 1, sym__pandoc_attr_specifier, @@ -127383,7 +127835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [70640] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2176), 1, sym__pandoc_attr_specifier, @@ -127427,7 +127879,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [70688] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2177), 1, sym__pandoc_attr_specifier, @@ -127471,7 +127923,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [70736] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2178), 1, sym__pandoc_attr_specifier, @@ -127515,7 +127967,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [70784] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2179), 1, sym__pandoc_attr_specifier, @@ -127559,7 +128011,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [70832] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1591), 1, sym__pandoc_attr_specifier, @@ -127603,7 +128055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [70880] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2185), 1, sym__pandoc_attr_specifier, @@ -127647,7 +128099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [70928] = 4, - ACTIONS(3095), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, STATE(2186), 1, sym__pandoc_attr_specifier, @@ -127691,7 +128143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_PIPE, [70976] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1672), 1, sym__pandoc_attr_specifier, @@ -127735,7 +128187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71024] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1684), 1, sym__pandoc_attr_specifier, @@ -127779,7 +128231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71072] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1968), 1, sym__pandoc_attr_specifier, @@ -127823,7 +128275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71120] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1969), 1, sym__pandoc_attr_specifier, @@ -127867,7 +128319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71168] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1975), 1, sym__pandoc_attr_specifier, @@ -127911,7 +128363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71216] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1976), 1, sym__pandoc_attr_specifier, @@ -127955,7 +128407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71264] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1978), 1, sym__pandoc_attr_specifier, @@ -127999,7 +128451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71312] = 4, - ACTIONS(3019), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, STATE(1979), 1, sym__pandoc_attr_specifier, @@ -128337,7 +128789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71668] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2226), 1, sym__pandoc_attr_specifier, @@ -128381,7 +128833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71716] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2229), 1, sym__pandoc_attr_specifier, @@ -128425,7 +128877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71764] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2232), 1, sym__pandoc_attr_specifier, @@ -128469,7 +128921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71812] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2235), 1, sym__pandoc_attr_specifier, @@ -128513,7 +128965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71860] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(1527), 1, sym__pandoc_attr_specifier, @@ -128557,7 +129009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [71908] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2252), 1, sym__pandoc_attr_specifier, @@ -128687,7 +129139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72048] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2263), 1, sym__pandoc_attr_specifier, @@ -128731,7 +129183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72096] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1957), 1, sym__pandoc_attr_specifier, @@ -128775,7 +129227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72144] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2266), 1, sym__pandoc_attr_specifier, @@ -128819,7 +129271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72192] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2267), 1, sym__pandoc_attr_specifier, @@ -128863,7 +129315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72240] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2269), 1, sym__pandoc_attr_specifier, @@ -128907,7 +129359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72288] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2270), 1, sym__pandoc_attr_specifier, @@ -128951,7 +129403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72336] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2272), 1, sym__pandoc_attr_specifier, @@ -128995,7 +129447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72384] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2273), 1, sym__pandoc_attr_specifier, @@ -129039,7 +129491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72432] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2278), 1, sym__pandoc_attr_specifier, @@ -129083,7 +129535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72480] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2279), 1, sym__pandoc_attr_specifier, @@ -129127,7 +129579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72528] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2281), 1, sym__pandoc_attr_specifier, @@ -129171,7 +129623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72576] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2282), 1, sym__pandoc_attr_specifier, @@ -129257,7 +129709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72668] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2284), 1, sym__pandoc_attr_specifier, @@ -129301,7 +129753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72716] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2285), 1, sym__pandoc_attr_specifier, @@ -129345,7 +129797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72764] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2286), 1, sym__pandoc_attr_specifier, @@ -129389,7 +129841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72812] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2287), 1, sym__pandoc_attr_specifier, @@ -129433,7 +129885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72860] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2293), 1, sym__pandoc_attr_specifier, @@ -129477,7 +129929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [72908] = 4, - ACTIONS(4564), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, STATE(2294), 1, sym__pandoc_attr_specifier, @@ -129563,7 +130015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73000] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2318), 1, sym__pandoc_attr_specifier, @@ -129607,7 +130059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73048] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2321), 1, sym__pandoc_attr_specifier, @@ -129651,7 +130103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73096] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2324), 1, sym__pandoc_attr_specifier, @@ -129695,7 +130147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73144] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2327), 1, sym__pandoc_attr_specifier, @@ -129739,7 +130191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73192] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1872), 1, sym__pandoc_attr_specifier, @@ -129783,7 +130235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73240] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(2302), 1, sym__pandoc_attr_specifier, @@ -129871,7 +130323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73336] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1831), 1, sym__pandoc_attr_specifier, @@ -129915,7 +130367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73384] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1832), 1, sym__pandoc_attr_specifier, @@ -129959,7 +130411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73432] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1841), 1, sym__pandoc_attr_specifier, @@ -130003,7 +130455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73480] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1856), 1, sym__pandoc_attr_specifier, @@ -130047,7 +130499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73528] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1927), 1, sym__pandoc_attr_specifier, @@ -130091,7 +130543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73576] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1928), 1, sym__pandoc_attr_specifier, @@ -130135,7 +130587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [73624] = 4, - ACTIONS(4960), 1, + ACTIONS(4680), 1, anon_sym_LBRACE, STATE(1933), 1, sym__pandoc_attr_specifier, @@ -143466,7 +143918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [87609] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2361), 1, sym__pandoc_attr_specifier, @@ -143509,7 +143961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [87656] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2365), 1, sym__pandoc_attr_specifier, @@ -143552,7 +144004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [87703] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2370), 1, sym__pandoc_attr_specifier, @@ -143595,7 +144047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [87750] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2378), 1, sym__pandoc_attr_specifier, @@ -143638,7 +144090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [87797] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2356), 1, sym__pandoc_attr_specifier, @@ -143681,7 +144133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [87844] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2360), 1, sym__pandoc_attr_specifier, @@ -143849,7 +144301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88024] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2368), 1, sym__pandoc_attr_specifier, @@ -143892,7 +144344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88071] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2369), 1, sym__pandoc_attr_specifier, @@ -143935,7 +144387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88118] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2371), 1, sym__pandoc_attr_specifier, @@ -143978,7 +144430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88165] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2372), 1, sym__pandoc_attr_specifier, @@ -144021,7 +144473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88212] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2374), 1, sym__pandoc_attr_specifier, @@ -144064,7 +144516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88259] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2375), 1, sym__pandoc_attr_specifier, @@ -144107,7 +144559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88306] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2376), 1, sym__pandoc_attr_specifier, @@ -144150,7 +144602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88353] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2377), 1, sym__pandoc_attr_specifier, @@ -144193,7 +144645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88400] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2382), 1, sym__pandoc_attr_specifier, @@ -144236,7 +144688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88447] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2383), 1, sym__pandoc_attr_specifier, @@ -144279,7 +144731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88494] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2389), 1, sym__pandoc_attr_specifier, @@ -144322,7 +144774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88541] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2391), 1, sym__pandoc_attr_specifier, @@ -144529,7 +144981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88760] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2392), 1, sym__pandoc_attr_specifier, @@ -144572,7 +145024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88807] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2393), 1, sym__pandoc_attr_specifier, @@ -144615,7 +145067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88854] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2394), 1, sym__pandoc_attr_specifier, @@ -144658,7 +145110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88901] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2395), 1, sym__pandoc_attr_specifier, @@ -144701,7 +145153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88948] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2400), 1, sym__pandoc_attr_specifier, @@ -144744,7 +145196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [88995] = 4, - ACTIONS(3752), 1, + ACTIONS(3758), 1, anon_sym_LBRACE, STATE(2401), 1, sym__pandoc_attr_specifier, @@ -150489,7 +150941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2739), 36, + ACTIONS(2875), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -162091,11 +162543,11 @@ static const uint16_t ts_small_parse_table[] = { [107188] = 3, ACTIONS(6328), 1, sym_block_continuation, - ACTIONS(2385), 3, + ACTIONS(2307), 3, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2383), 34, + ACTIONS(2305), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -163643,7 +164095,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2739), 35, + ACTIONS(2875), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -164002,10 +164454,10 @@ static const uint16_t ts_small_parse_table[] = { [109194] = 3, ACTIONS(6330), 1, sym_block_continuation, - ACTIONS(2385), 2, + ACTIONS(2307), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2383), 34, + ACTIONS(2305), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -164044,7 +164496,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2749), 35, + ACTIONS(2891), 35, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -164084,7 +164536,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2778), 35, + ACTIONS(2920), 35, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -165601,11 +166053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [110876] = 2, - ACTIONS(2713), 3, + ACTIONS(2597), 3, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2711), 34, + ACTIONS(2595), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -166161,10 +166613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111464] = 2, - ACTIONS(2713), 2, + ACTIONS(2597), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2711), 34, + ACTIONS(2595), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -166214,17 +166666,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h6_marker, ACTIONS(6332), 1, ts_builtin_sym_end, - STATE(80), 1, + STATE(81), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, - STATE(100), 1, + STATE(99), 1, sym__atx_heading3, - STATE(104), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, STATE(2406), 2, sym_section, @@ -166251,17 +166703,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(6351), 1, sym_atx_h6_marker, - STATE(80), 1, + STATE(81), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, - STATE(100), 1, + STATE(99), 1, sym__atx_heading3, - STATE(104), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, STATE(2406), 2, sym_section, @@ -166288,17 +166740,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h6_marker, ACTIONS(6354), 1, ts_builtin_sym_end, - STATE(80), 1, + STATE(81), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, - STATE(100), 1, + STATE(99), 1, sym__atx_heading3, - STATE(104), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, STATE(2406), 2, sym_section, @@ -166325,17 +166777,17 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h6_marker, ACTIONS(6356), 1, ts_builtin_sym_end, - STATE(80), 1, + STATE(81), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, - STATE(100), 1, + STATE(99), 1, sym__atx_heading3, - STATE(104), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, STATE(2406), 2, sym_section, @@ -166360,19 +166812,19 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(41), 1, sym_atx_h6_marker, - ACTIONS(515), 1, + ACTIONS(572), 1, ts_builtin_sym_end, - STATE(80), 1, + STATE(81), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, - STATE(100), 1, + STATE(99), 1, sym__atx_heading3, - STATE(104), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, STATE(2406), 2, sym_section, @@ -169733,11 +170185,11 @@ static const uint16_t ts_small_parse_table[] = { [116521] = 3, ACTIONS(6650), 1, sym_block_continuation, - ACTIONS(2385), 3, + ACTIONS(2307), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2383), 8, + ACTIONS(2305), 8, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_close_escaped, @@ -169766,11 +170218,11 @@ static const uint16_t ts_small_parse_table[] = { [116561] = 3, ACTIONS(6658), 1, sym_block_continuation, - ACTIONS(2385), 3, + ACTIONS(2307), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2383), 8, + ACTIONS(2305), 8, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_open, @@ -169797,11 +170249,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, [116601] = 2, - ACTIONS(2713), 3, + ACTIONS(2597), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2711), 8, + ACTIONS(2595), 8, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_close_escaped, @@ -169977,11 +170429,11 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_break, sym__inline_whitespace, [116853] = 2, - ACTIONS(2713), 3, + ACTIONS(2597), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2711), 8, + ACTIONS(2595), 8, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_open, @@ -170313,11 +170765,11 @@ static const uint16_t ts_small_parse_table[] = { [117319] = 3, ACTIONS(6766), 1, sym_block_continuation, - ACTIONS(2385), 3, + ACTIONS(2307), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2383), 6, + ACTIONS(2305), 6, sym__language_specifier_token, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, @@ -171032,11 +171484,11 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_break, sym__inline_whitespace, [118349] = 2, - ACTIONS(2713), 3, + ACTIONS(2597), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2711), 6, + ACTIONS(2595), 6, sym__language_specifier_token, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, @@ -171455,7 +171907,7 @@ static const uint16_t ts_small_parse_table[] = { [118942] = 2, ACTIONS(7039), 1, sym_block_continuation, - ACTIONS(2383), 7, + ACTIONS(2305), 7, anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, aux_sym__commonmark_specifier_start_with_class_token2, @@ -171586,11 +172038,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, aux_sym_code_fence_content_repeat1, [119126] = 3, - ACTIONS(2385), 1, + ACTIONS(2307), 1, aux_sym__commonmark_double_quote_string_token1, ACTIONS(7069), 1, sym_block_continuation, - ACTIONS(2383), 5, + ACTIONS(2305), 5, sym__soft_line_ending, sym__shortcode_open, aux_sym_target_token2, @@ -171690,7 +172142,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, aux_sym_code_fence_content_repeat1, [119270] = 1, - ACTIONS(2711), 7, + ACTIONS(2595), 7, anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, aux_sym__commonmark_specifier_start_with_class_token2, @@ -171727,7 +172179,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, aux_sym_code_fence_content_repeat1, [119320] = 1, - ACTIONS(2895), 7, + ACTIONS(2789), 7, sym_atx_h1_marker, sym_atx_h2_marker, sym_atx_h3_marker, @@ -171851,9 +172303,9 @@ static const uint16_t ts_small_parse_table[] = { sym__eof, ACTIONS(7157), 1, sym__pipe_table_line_ending, - STATE(128), 1, + STATE(140), 1, sym__pipe_table_newline, - STATE(380), 1, + STATE(377), 1, sym__newline, STATE(2662), 1, aux_sym_pipe_table_repeat1, @@ -171970,15 +172422,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2757), 1, aux_sym_shortcode_repeat1, [119665] = 6, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7157), 1, sym__pipe_table_line_ending, ACTIONS(7189), 1, sym__eof, - STATE(133), 1, + STATE(141), 1, sym__pipe_table_newline, - STATE(252), 1, + STATE(241), 1, sym__newline, STATE(2665), 1, aux_sym_pipe_table_repeat1, @@ -172002,16 +172454,16 @@ static const uint16_t ts_small_parse_table[] = { sym__pipe_table_line_ending, ACTIONS(7191), 1, sym__eof, - STATE(131), 1, + STATE(145), 1, sym__pipe_table_newline, - STATE(395), 1, + STATE(390), 1, sym__newline, STATE(2888), 1, aux_sym_pipe_table_repeat1, [119722] = 2, - ACTIONS(2713), 1, + ACTIONS(2597), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2711), 5, + ACTIONS(2595), 5, sym__soft_line_ending, sym__shortcode_open, aux_sym_target_token2, @@ -172026,15 +172478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym__whitespace, [119742] = 6, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7157), 1, sym__pipe_table_line_ending, ACTIONS(7193), 1, sym__eof, - STATE(132), 1, + STATE(143), 1, sym__pipe_table_newline, - STATE(262), 1, + STATE(251), 1, sym__newline, STATE(2888), 1, aux_sym_pipe_table_repeat1, @@ -172051,15 +172503,15 @@ static const uint16_t ts_small_parse_table[] = { sym_shortcode, aux_sym__commonmark_double_quote_string_repeat1, [119778] = 6, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7157), 1, sym__pipe_table_line_ending, ACTIONS(7201), 1, sym__eof, - STATE(129), 1, + STATE(138), 1, sym__pipe_table_newline, - STATE(543), 1, + STATE(484), 1, sym__newline, STATE(2672), 1, aux_sym_pipe_table_repeat1, @@ -172090,7 +172542,7 @@ static const uint16_t ts_small_parse_table[] = { [119831] = 2, ACTIONS(7209), 1, sym_block_continuation, - ACTIONS(2383), 5, + ACTIONS(2305), 5, sym__key_specifier_token, anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, @@ -172105,15 +172557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym__whitespace, [119851] = 6, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7157), 1, sym__pipe_table_line_ending, ACTIONS(7213), 1, sym__eof, - STATE(130), 1, + STATE(139), 1, sym__pipe_table_newline, - STATE(569), 1, + STATE(465), 1, sym__newline, STATE(2888), 1, aux_sym_pipe_table_repeat1, @@ -172753,10 +173205,10 @@ static const uint16_t ts_small_parse_table[] = { [120793] = 3, ACTIONS(7235), 1, sym_block_continuation, - ACTIONS(2385), 2, + ACTIONS(2307), 2, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2383), 3, + ACTIONS(2305), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, @@ -173371,7 +173823,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, ACTIONS(7311), 1, sym__pipe_table_delimiter, - ACTIONS(2745), 3, + ACTIONS(2887), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -173390,7 +173842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, ACTIONS(7319), 1, sym__pipe_table_delimiter, - ACTIONS(2745), 3, + ACTIONS(2887), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -173406,9 +173858,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(3298), 1, sym__soft_line_break, [121731] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, - STATE(927), 1, + STATE(928), 1, sym__soft_line_break, STATE(2908), 1, aux_sym__inlines_repeat1, @@ -173455,7 +173907,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(933), 1, + STATE(934), 1, sym__soft_line_break, STATE(2783), 1, aux_sym__inlines_repeat1, @@ -173919,7 +174371,7 @@ static const uint16_t ts_small_parse_table[] = { [122453] = 2, ACTIONS(7401), 1, sym_block_continuation, - ACTIONS(2383), 4, + ACTIONS(2305), 4, sym__soft_line_ending, sym__key_specifier_token, anon_sym_RBRACE, @@ -173981,7 +174433,7 @@ static const uint16_t ts_small_parse_table[] = { [122541] = 2, ACTIONS(7413), 1, sym_block_continuation, - ACTIONS(2377), 4, + ACTIONS(2299), 4, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, @@ -174119,7 +174571,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pipe_table_delimiter, ACTIONS(7439), 1, sym__whitespace, - ACTIONS(2873), 3, + ACTIONS(2985), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -174182,7 +174634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pipe_table_delimiter, ACTIONS(7445), 1, sym__whitespace, - ACTIONS(2873), 3, + ACTIONS(2985), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -174191,7 +174643,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pipe_table_delimiter, ACTIONS(7447), 1, sym__whitespace, - ACTIONS(2967), 3, + ACTIONS(2881), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -174202,7 +174654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_span_token1, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(935), 1, + STATE(932), 1, sym__soft_line_break, STATE(2856), 1, aux_sym__inlines_repeat1, @@ -174219,7 +174671,7 @@ static const uint16_t ts_small_parse_table[] = { [122879] = 2, ACTIONS(7453), 1, sym_block_continuation, - ACTIONS(2377), 4, + ACTIONS(2299), 4, sym__pipe_table_delimiter, anon_sym_COLON, anon_sym_DASH, @@ -174289,13 +174741,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(3263), 1, sym__shortcode_sep, [122981] = 5, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7463), 1, aux_sym_pandoc_span_token1, ACTIONS(7465), 1, aux_sym_target_token1, - STATE(935), 1, + STATE(932), 1, sym__soft_line_break, STATE(2889), 1, aux_sym__inlines_repeat1, @@ -174310,9 +174762,9 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_break, sym__inline_whitespace, [123011] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, - STATE(927), 1, + STATE(928), 1, sym__soft_line_break, STATE(2779), 1, aux_sym__inlines_repeat1, @@ -174404,10 +174856,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(3295), 1, sym__shortcode_sep, [123145] = 2, - ACTIONS(2713), 2, + ACTIONS(2597), 2, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2711), 3, + ACTIONS(2595), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, @@ -174421,18 +174873,18 @@ static const uint16_t ts_small_parse_table[] = { sym__eof, sym__pipe_table_line_ending, [123167] = 5, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7463), 1, sym__whitespace, ACTIONS(7465), 1, aux_sym_inline_note_token1, - STATE(933), 1, + STATE(934), 1, sym__soft_line_break, STATE(2887), 1, aux_sym__inlines_repeat1, [123183] = 1, - ACTIONS(2711), 5, + ACTIONS(2595), 5, sym__key_specifier_token, anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, @@ -174511,20 +174963,20 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_break, sym__inline_whitespace, [123293] = 5, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, aux_sym_inline_note_token1, ACTIONS(7495), 1, sym__whitespace, - STATE(933), 1, + STATE(934), 1, sym__soft_line_break, STATE(2783), 1, aux_sym__inlines_repeat1, [123309] = 4, ACTIONS(7499), 1, sym__pipe_table_line_ending, - STATE(163), 1, + STATE(171), 1, sym__pipe_table_newline, STATE(2888), 1, aux_sym_pipe_table_repeat1, @@ -174532,13 +174984,13 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, sym__eof, [123323] = 5, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, aux_sym_target_token1, ACTIONS(7495), 1, aux_sym_pandoc_span_token1, - STATE(935), 1, + STATE(932), 1, sym__soft_line_break, STATE(2856), 1, aux_sym__inlines_repeat1, @@ -174610,7 +175062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pipe_table_delimiter, ACTIONS(7508), 1, sym__whitespace, - ACTIONS(2889), 3, + ACTIONS(2989), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -174651,7 +175103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pipe_table_delimiter, ACTIONS(7514), 1, sym__whitespace, - ACTIONS(2889), 3, + ACTIONS(2989), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -174729,7 +175181,7 @@ static const uint16_t ts_small_parse_table[] = { [123599] = 4, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(927), 1, + STATE(928), 1, sym__soft_line_break, STATE(2908), 1, aux_sym__inlines_repeat1, @@ -174772,11 +175224,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3708), 1, sym__shortcode_sep, [123661] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__superscript_close, - STATE(923), 1, + STATE(924), 1, sym__soft_line_break, STATE(2921), 1, aux_sym__inlines_repeat1, @@ -174802,12 +175254,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_close, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(925), 1, + STATE(931), 1, sym__soft_line_break, STATE(2916), 1, aux_sym__inlines_repeat1, [123711] = 1, - ACTIONS(2711), 4, + ACTIONS(2595), 4, sym__soft_line_ending, sym__key_specifier_token, anon_sym_RBRACE, @@ -174817,7 +175269,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_close_star, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(931), 1, + STATE(930), 1, sym__soft_line_break, STATE(2918), 1, aux_sym__inlines_repeat1, @@ -174834,7 +175286,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_close_star, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(934), 1, + STATE(926), 1, sym__soft_line_break, STATE(2920), 1, aux_sym__inlines_repeat1, @@ -174843,7 +175295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_close, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(923), 1, + STATE(924), 1, sym__soft_line_break, STATE(2921), 1, aux_sym__inlines_repeat1, @@ -174859,14 +175311,14 @@ static const uint16_t ts_small_parse_table[] = { [123781] = 2, ACTIONS(7319), 1, sym__pipe_table_delimiter, - ACTIONS(2873), 3, + ACTIONS(2985), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, [123790] = 2, ACTIONS(7536), 1, sym__pipe_table_delimiter, - ACTIONS(2873), 3, + ACTIONS(2985), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -174902,22 +175354,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(3675), 1, sym__commonmark_specifier_start_with_kv, [123841] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__double_quote_span_close, - STATE(930), 1, + STATE(925), 1, sym__soft_line_break, STATE(2934), 1, aux_sym__inlines_repeat1, [123854] = 1, - ACTIONS(2703), 4, + ACTIONS(2587), 4, sym__pipe_table_delimiter, anon_sym_COLON, anon_sym_DASH, sym__whitespace, [123861] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, aux_sym_insert_token1, @@ -174926,11 +175378,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2969), 1, aux_sym__inlines_repeat1, [123874] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__emphasis_close_underscore, - STATE(928), 1, + STATE(927), 1, sym__soft_line_break, STATE(2936), 1, aux_sym__inlines_repeat1, @@ -174943,11 +175395,11 @@ static const uint16_t ts_small_parse_table[] = { sym__key_specifier_token, sym__shortcode_close_escaped, [123898] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__double_quote_span_close, - STATE(930), 1, + STATE(925), 1, sym__soft_line_break, STATE(2951), 1, aux_sym__inlines_repeat1, @@ -174960,18 +175412,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [123922] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__emphasis_close_underscore, - STATE(928), 1, + STATE(927), 1, sym__soft_line_break, STATE(2948), 1, aux_sym__inlines_repeat1, [123935] = 2, ACTIONS(7548), 1, sym_block_continuation, - ACTIONS(2383), 3, + ACTIONS(2305), 3, sym__key_specifier_token, sym__shortcode_close_escaped, sym__whitespace, @@ -174986,7 +175438,7 @@ static const uint16_t ts_small_parse_table[] = { [123955] = 2, ACTIONS(7536), 1, sym__pipe_table_delimiter, - ACTIONS(2889), 3, + ACTIONS(2989), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -175035,7 +175487,7 @@ static const uint16_t ts_small_parse_table[] = { [124018] = 2, ACTIONS(7319), 1, sym__pipe_table_delimiter, - ACTIONS(2889), 3, + ACTIONS(2989), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -175051,12 +175503,12 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_close_underscore, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(928), 1, + STATE(927), 1, sym__soft_line_break, STATE(2948), 1, aux_sym__inlines_repeat1, [124049] = 3, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7552), 1, sym__whitespace, @@ -175064,11 +175516,11 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_break, sym__inline_whitespace, [124060] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__single_quote_span_close, - STATE(932), 1, + STATE(923), 1, sym__soft_line_break, STATE(2987), 1, aux_sym__inlines_repeat1, @@ -175077,16 +175529,16 @@ static const uint16_t ts_small_parse_table[] = { sym__double_quote_span_close, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(930), 1, + STATE(925), 1, sym__soft_line_break, STATE(2951), 1, aux_sym__inlines_repeat1, [124086] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__strikeout_close, - STATE(925), 1, + STATE(931), 1, sym__soft_line_break, STATE(2916), 1, aux_sym__inlines_repeat1, @@ -175107,44 +175559,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [124121] = 3, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7558), 1, sym__whitespace, - STATE(789), 2, + STATE(855), 2, sym__soft_line_break, sym__inline_whitespace, [124132] = 3, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7560), 1, sym__whitespace, - STATE(815), 2, + STATE(891), 2, sym__soft_line_break, sym__inline_whitespace, [124143] = 3, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7562), 1, sym__whitespace, - STATE(852), 2, + STATE(811), 2, sym__soft_line_break, sym__inline_whitespace, [124154] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__subscript_close, - STATE(924), 1, + STATE(933), 1, sym__soft_line_break, STATE(2963), 1, aux_sym__inlines_repeat1, [124167] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__strong_emphasis_close_underscore, - STATE(926), 1, + STATE(935), 1, sym__soft_line_break, STATE(2962), 1, aux_sym__inlines_repeat1, @@ -175163,29 +175615,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [124198] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__strong_emphasis_close_underscore, - STATE(926), 1, + STATE(935), 1, sym__soft_line_break, STATE(2977), 1, aux_sym__inlines_repeat1, [124211] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__subscript_close, - STATE(924), 1, + STATE(933), 1, sym__soft_line_break, STATE(3043), 1, aux_sym__inlines_repeat1, [124224] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__strong_emphasis_close_star, - STATE(934), 1, + STATE(926), 1, sym__soft_line_break, STATE(2920), 1, aux_sym__inlines_repeat1, @@ -175218,7 +175670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym__whitespace, [124273] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, aux_sym_insert_token1, @@ -175282,7 +175734,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_close_underscore, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(926), 1, + STATE(935), 1, sym__soft_line_break, STATE(2977), 1, aux_sym__inlines_repeat1, @@ -175298,7 +175750,7 @@ static const uint16_t ts_small_parse_table[] = { [124379] = 2, ACTIONS(7585), 1, sym_block_continuation, - ACTIONS(2383), 3, + ACTIONS(2305), 3, sym__key_specifier_token, sym__shortcode_close, sym__whitespace, @@ -175348,11 +175800,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [124448] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__single_quote_span_close, - STATE(932), 1, + STATE(923), 1, sym__soft_line_break, STATE(2950), 1, aux_sym__inlines_repeat1, @@ -175361,7 +175813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__single_quote_span_close, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(932), 1, + STATE(923), 1, sym__soft_line_break, STATE(2987), 1, aux_sym__inlines_repeat1, @@ -175375,11 +175827,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3377), 1, sym__pandoc_attr_specifier, [124487] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__strong_emphasis_close_star, - STATE(934), 1, + STATE(926), 1, sym__soft_line_break, STATE(2964), 1, aux_sym__inlines_repeat1, @@ -175394,7 +175846,7 @@ static const uint16_t ts_small_parse_table[] = { [124511] = 2, ACTIONS(7319), 1, sym__pipe_table_delimiter, - ACTIONS(2745), 3, + ACTIONS(2887), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -175427,11 +175879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym__whitespace, [124556] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__strikeout_close, - STATE(925), 1, + STATE(931), 1, sym__soft_line_break, STATE(2952), 1, aux_sym__inlines_repeat1, @@ -175454,16 +175906,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(3406), 1, sym_pipe_table_delimiter_cell, [124595] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__emphasis_close_star, - STATE(931), 1, + STATE(930), 1, sym__soft_line_break, STATE(3004), 1, aux_sym__inlines_repeat1, [124608] = 1, - ACTIONS(2703), 4, + ACTIONS(2587), 4, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, @@ -175477,11 +175929,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [124626] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7465), 1, sym__superscript_close, - STATE(923), 1, + STATE(924), 1, sym__soft_line_break, STATE(2913), 1, aux_sym__inlines_repeat1, @@ -175494,11 +175946,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [124650] = 4, - ACTIONS(3103), 1, + ACTIONS(3011), 1, sym__soft_line_ending, ACTIONS(7321), 1, sym__emphasis_close_star, - STATE(931), 1, + STATE(930), 1, sym__soft_line_break, STATE(2918), 1, aux_sym__inlines_repeat1, @@ -175847,7 +176299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__subscript_close, ACTIONS(7327), 1, sym__soft_line_ending, - STATE(924), 1, + STATE(933), 1, sym__soft_line_break, STATE(3043), 1, aux_sym__inlines_repeat1, @@ -175859,7 +176311,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4042), 1, sym__newline, [125176] = 3, - ACTIONS(2187), 1, + ACTIONS(2819), 1, aux_sym_target_token1, ACTIONS(7635), 1, aux_sym_pandoc_span_token1, @@ -175871,12 +176323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym__whitespace, [125192] = 1, - ACTIONS(2711), 3, + ACTIONS(2595), 3, sym__key_specifier_token, sym__shortcode_close_escaped, sym__whitespace, [125198] = 3, - ACTIONS(2431), 1, + ACTIONS(2721), 1, aux_sym_target_token1, ACTIONS(7639), 1, aux_sym_pandoc_span_token1, @@ -175911,7 +176363,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 1, sym__shortcode_key_value_specifier, [125248] = 3, - ACTIONS(2431), 1, + ACTIONS(2721), 1, aux_sym_target_token1, ACTIONS(7645), 1, aux_sym_pandoc_span_token1, @@ -175925,7 +176377,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3781), 1, sym__soft_line_break, [125268] = 3, - ACTIONS(2549), 1, + ACTIONS(2423), 1, aux_sym_target_token1, ACTIONS(7647), 1, aux_sym_pandoc_span_token1, @@ -175936,7 +176388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7649), 1, sym__eof, - STATE(399), 1, + STATE(394), 1, sym__newline, [125288] = 3, ACTIONS(6526), 1, @@ -175984,21 +176436,21 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [125350] = 3, - ACTIONS(2535), 1, + ACTIONS(2829), 1, aux_sym_target_token1, ACTIONS(7659), 1, aux_sym_pandoc_span_token1, STATE(967), 1, sym_target, [125360] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7661), 1, sym__eof, - STATE(326), 1, + STATE(280), 1, sym__newline, [125370] = 3, - ACTIONS(2535), 1, + ACTIONS(2829), 1, aux_sym_target_token1, ACTIONS(7663), 1, aux_sym_pandoc_span_token1, @@ -176019,14 +176471,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [125400] = 3, - ACTIONS(2535), 1, + ACTIONS(2829), 1, aux_sym_target_token1, ACTIONS(7667), 1, aux_sym_pandoc_span_token1, STATE(975), 1, sym_target, [125410] = 3, - ACTIONS(2535), 1, + ACTIONS(2829), 1, aux_sym_target_token1, ACTIONS(7669), 1, aux_sym_pandoc_span_token1, @@ -176037,7 +176489,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7671), 1, sym__eof, - STATE(448), 1, + STATE(433), 1, sym__newline, [125430] = 3, ACTIONS(6382), 1, @@ -176047,7 +176499,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [125440] = 3, - ACTIONS(2491), 1, + ACTIONS(2781), 1, aux_sym_target_token1, ACTIONS(7673), 1, aux_sym_pandoc_span_token1, @@ -176075,14 +176527,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 1, sym__shortcode_key_value_specifier, [125480] = 3, - ACTIONS(2501), 1, + ACTIONS(2349), 1, aux_sym_target_token1, ACTIONS(7679), 1, aux_sym_pandoc_span_token1, STATE(1139), 1, sym_target, [125490] = 3, - ACTIONS(2501), 1, + ACTIONS(2349), 1, aux_sym_target_token1, ACTIONS(7681), 1, aux_sym_pandoc_span_token1, @@ -176096,11 +176548,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [125510] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7683), 1, sym__eof, - STATE(327), 1, + STATE(201), 1, sym__newline, [125520] = 3, ACTIONS(6378), 1, @@ -176207,35 +176659,35 @@ static const uint16_t ts_small_parse_table[] = { STATE(3971), 1, sym__blank_line, [125668] = 3, - ACTIONS(2549), 1, + ACTIONS(2423), 1, aux_sym_target_token1, ACTIONS(7707), 1, aux_sym_pandoc_span_token1, STATE(1083), 1, sym_target, [125678] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7709), 1, sym__eof, - STATE(454), 1, + STATE(439), 1, sym__newline, [125688] = 3, - ACTIONS(2501), 1, + ACTIONS(2349), 1, aux_sym_target_token1, ACTIONS(7711), 1, aux_sym_pandoc_span_token1, STATE(1148), 1, sym_target, [125698] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7713), 1, sym__eof, - STATE(459), 1, + STATE(440), 1, sym__newline, [125708] = 3, - ACTIONS(2501), 1, + ACTIONS(2349), 1, aux_sym_target_token1, ACTIONS(7715), 1, aux_sym_pandoc_span_token1, @@ -176246,14 +176698,14 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7717), 1, sym__eof, - STATE(519), 1, + STATE(362), 1, sym__newline, [125728] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7719), 1, sym__eof, - STATE(460), 1, + STATE(441), 1, sym__newline, [125738] = 3, ACTIONS(7691), 1, @@ -176263,25 +176715,25 @@ static const uint16_t ts_small_parse_table[] = { STATE(3996), 1, sym__newline, [125748] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7723), 1, sym__eof, - STATE(461), 1, + STATE(442), 1, sym__newline, [125758] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7725), 1, sym__eof, - STATE(296), 1, + STATE(221), 1, sym__newline, [125768] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7727), 1, sym__eof, - STATE(462), 1, + STATE(443), 1, sym__newline, [125778] = 3, ACTIONS(7135), 1, @@ -176354,7 +176806,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4070), 1, sym__newline, [125878] = 3, - ACTIONS(2441), 1, + ACTIONS(2731), 1, aux_sym_target_token1, ACTIONS(7749), 1, aux_sym_pandoc_span_token1, @@ -176388,14 +176840,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [125926] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7755), 1, sym__eof, - STATE(463), 1, + STATE(444), 1, sym__newline, [125936] = 3, - ACTIONS(2441), 1, + ACTIONS(2731), 1, aux_sym_target_token1, ACTIONS(7757), 1, aux_sym_pandoc_span_token1, @@ -176413,23 +176865,23 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7761), 1, sym__eof, - STATE(450), 1, + STATE(435), 1, sym__newline, [125966] = 2, ACTIONS(7763), 1, sym_block_continuation, - ACTIONS(2377), 2, + ACTIONS(2299), 2, sym__block_close, sym__blank_line_start, [125974] = 3, - ACTIONS(2441), 1, + ACTIONS(2731), 1, aux_sym_target_token1, ACTIONS(7765), 1, aux_sym_pandoc_span_token1, STATE(1272), 1, sym_target, [125984] = 3, - ACTIONS(2441), 1, + ACTIONS(2731), 1, aux_sym_target_token1, ACTIONS(7767), 1, aux_sym_pandoc_span_token1, @@ -176507,7 +176959,7 @@ static const uint16_t ts_small_parse_table[] = { [126092] = 2, ACTIONS(7787), 1, sym_block_continuation, - ACTIONS(2377), 2, + ACTIONS(2299), 2, sym__line_ending, sym__eof, [126100] = 3, @@ -176577,21 +177029,21 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_ending, aux_sym_inline_note_token1, [126192] = 3, - ACTIONS(2391), 1, + ACTIONS(2605), 1, aux_sym_target_token1, ACTIONS(7801), 1, aux_sym_pandoc_span_token1, STATE(1473), 1, sym_target, [126202] = 3, - ACTIONS(2391), 1, + ACTIONS(2605), 1, aux_sym_target_token1, ACTIONS(7803), 1, aux_sym_pandoc_span_token1, STATE(1475), 1, sym_target, [126212] = 3, - ACTIONS(2549), 1, + ACTIONS(2423), 1, aux_sym_target_token1, ACTIONS(7805), 1, aux_sym_pandoc_span_token1, @@ -176602,31 +177054,31 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7807), 1, sym__eof, - STATE(409), 1, + STATE(404), 1, sym__newline, [126232] = 3, - ACTIONS(2745), 1, + ACTIONS(2887), 1, sym__line_ending, ACTIONS(7809), 1, sym__whitespace, ACTIONS(7811), 1, sym__pipe_table_delimiter, [126242] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7813), 1, sym__eof, - STATE(280), 1, + STATE(272), 1, sym__newline, [126252] = 3, - ACTIONS(2745), 1, + ACTIONS(2887), 1, sym__line_ending, ACTIONS(7815), 1, sym__whitespace, ACTIONS(7817), 1, sym__pipe_table_delimiter, [126262] = 3, - ACTIONS(2411), 1, + ACTIONS(2665), 1, aux_sym_target_token1, ACTIONS(7819), 1, aux_sym_pandoc_span_token1, @@ -176660,28 +177112,28 @@ static const uint16_t ts_small_parse_table[] = { STATE(3971), 1, sym__blank_line, [126310] = 3, - ACTIONS(2421), 1, + ACTIONS(2711), 1, aux_sym_target_token1, ACTIONS(7827), 1, aux_sym_pandoc_span_token1, STATE(1502), 1, sym_target, [126320] = 3, - ACTIONS(2411), 1, + ACTIONS(2665), 1, aux_sym_target_token1, ACTIONS(7829), 1, aux_sym_pandoc_span_token1, STATE(1468), 1, sym_target, [126330] = 3, - ACTIONS(2451), 1, + ACTIONS(2741), 1, aux_sym_target_token1, ACTIONS(7831), 1, aux_sym_pandoc_span_token1, STATE(1291), 1, sym_target, [126340] = 3, - ACTIONS(2451), 1, + ACTIONS(2741), 1, aux_sym_target_token1, ACTIONS(7833), 1, aux_sym_pandoc_span_token1, @@ -176697,7 +177149,7 @@ static const uint16_t ts_small_parse_table[] = { [126360] = 2, ACTIONS(7835), 1, sym_block_continuation, - ACTIONS(2383), 2, + ACTIONS(2305), 2, sym__key_specifier_token, aux_sym__commonmark_specifier_start_with_class_token2, [126368] = 2, @@ -176749,14 +177201,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [126436] = 3, - ACTIONS(2451), 1, + ACTIONS(2741), 1, aux_sym_target_token1, ACTIONS(7847), 1, aux_sym_pandoc_span_token1, STATE(1300), 1, sym_target, [126446] = 3, - ACTIONS(2451), 1, + ACTIONS(2741), 1, aux_sym_target_token1, ACTIONS(7849), 1, aux_sym_pandoc_span_token1, @@ -176824,21 +177276,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [126542] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7861), 1, sym__eof, - STATE(266), 1, + STATE(255), 1, sym__newline, [126552] = 3, - ACTIONS(2391), 1, + ACTIONS(2605), 1, aux_sym_target_token1, ACTIONS(7863), 1, aux_sym_pandoc_span_token1, STATE(1357), 1, sym_target, [126562] = 3, - ACTIONS(2391), 1, + ACTIONS(2605), 1, aux_sym_target_token1, ACTIONS(7865), 1, aux_sym_pandoc_span_token1, @@ -176851,21 +177303,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [126580] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7867), 1, sym__eof, - STATE(324), 1, + STATE(336), 1, sym__newline, [126590] = 3, - ACTIONS(2421), 1, + ACTIONS(2711), 1, aux_sym_target_token1, ACTIONS(7869), 1, aux_sym_pandoc_span_token1, STATE(1500), 1, sym_target, [126600] = 3, - ACTIONS(2967), 1, + ACTIONS(2881), 1, sym__line_ending, ACTIONS(7811), 1, sym__pipe_table_delimiter, @@ -176883,21 +177335,21 @@ static const uint16_t ts_small_parse_table[] = { sym__key_specifier_token, sym__shortcode_close, [126624] = 3, - ACTIONS(2461), 1, + ACTIONS(2751), 1, aux_sym_target_token1, ACTIONS(7875), 1, aux_sym_pandoc_span_token1, STATE(1318), 1, sym_target, [126634] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7877), 1, sym__eof, - STATE(237), 1, + STATE(226), 1, sym__newline, [126644] = 3, - ACTIONS(2461), 1, + ACTIONS(2751), 1, aux_sym_target_token1, ACTIONS(7879), 1, aux_sym_pandoc_span_token1, @@ -176910,14 +177362,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [126662] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7881), 1, sym__eof, - STATE(487), 1, + STATE(463), 1, sym__newline, [126672] = 3, - ACTIONS(2411), 1, + ACTIONS(2665), 1, aux_sym_target_token1, ACTIONS(7883), 1, aux_sym_pandoc_span_token1, @@ -176928,14 +177380,14 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7885), 1, sym__eof, - STATE(451), 1, + STATE(436), 1, sym__newline, [126692] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7887), 1, sym__eof, - STATE(430), 1, + STATE(416), 1, sym__newline, [126702] = 3, ACTIONS(7103), 1, @@ -176945,25 +177397,25 @@ static const uint16_t ts_small_parse_table[] = { STATE(2641), 1, sym_shortcode, [126712] = 3, - ACTIONS(2461), 1, + ACTIONS(2751), 1, aux_sym_target_token1, ACTIONS(7891), 1, aux_sym_pandoc_span_token1, STATE(1327), 1, sym_target, [126722] = 3, - ACTIONS(2461), 1, + ACTIONS(2751), 1, aux_sym_target_token1, ACTIONS(7893), 1, aux_sym_pandoc_span_token1, STATE(1328), 1, sym_target, [126732] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7895), 1, sym__eof, - STATE(240), 1, + STATE(291), 1, sym__newline, [126742] = 1, ACTIONS(7171), 3, @@ -176991,11 +177443,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 1, sym__shortcode_key_value_specifier, [126776] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7897), 1, sym__eof, - STATE(573), 1, + STATE(350), 1, sym__newline, [126786] = 3, ACTIONS(6382), 1, @@ -177012,7 +177464,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 1, sym__shortcode_key_value_specifier, [126806] = 3, - ACTIONS(2511), 1, + ACTIONS(2799), 1, aux_sym_target_token1, ACTIONS(7903), 1, aux_sym_pandoc_span_token1, @@ -177026,7 +177478,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [126826] = 1, - ACTIONS(2711), 3, + ACTIONS(2595), 3, sym__key_specifier_token, sym__shortcode_close, sym__whitespace, @@ -177044,21 +177496,21 @@ static const uint16_t ts_small_parse_table[] = { STATE(3659), 1, sym__newline, [126850] = 3, - ACTIONS(2511), 1, + ACTIONS(2799), 1, aux_sym_target_token1, ACTIONS(7907), 1, aux_sym_pandoc_span_token1, STATE(1167), 1, sym_target, [126860] = 3, - ACTIONS(2491), 1, + ACTIONS(2781), 1, aux_sym_target_token1, ACTIONS(7909), 1, aux_sym_pandoc_span_token1, STATE(1122), 1, sym_target, [126870] = 3, - ACTIONS(2491), 1, + ACTIONS(2781), 1, aux_sym_target_token1, ACTIONS(7911), 1, aux_sym_pandoc_span_token1, @@ -177072,21 +177524,21 @@ static const uint16_t ts_small_parse_table[] = { STATE(2984), 1, sym__commonmark_key_value_specifier, [126890] = 3, - ACTIONS(2511), 1, + ACTIONS(2799), 1, aux_sym_target_token1, ACTIONS(7913), 1, aux_sym_pandoc_span_token1, STATE(1175), 1, sym_target, [126900] = 3, - ACTIONS(2511), 1, + ACTIONS(2799), 1, aux_sym_target_token1, ACTIONS(7915), 1, aux_sym_pandoc_span_token1, STATE(1176), 1, sym_target, [126910] = 3, - ACTIONS(2549), 1, + ACTIONS(2423), 1, aux_sym_target_token1, ACTIONS(7917), 1, aux_sym_pandoc_span_token1, @@ -177127,14 +177579,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3811), 1, sym__newline, [126968] = 3, - ACTIONS(2471), 1, + ACTIONS(2761), 1, aux_sym_target_token1, ACTIONS(7921), 1, aux_sym_pandoc_span_token1, STATE(1345), 1, sym_target, [126978] = 3, - ACTIONS(2471), 1, + ACTIONS(2761), 1, aux_sym_target_token1, ACTIONS(7923), 1, aux_sym_pandoc_span_token1, @@ -177148,14 +177600,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3754), 1, sym__newline, [126998] = 3, - ACTIONS(2471), 1, + ACTIONS(2761), 1, aux_sym_target_token1, ACTIONS(7929), 1, aux_sym_pandoc_span_token1, STATE(1354), 1, sym_target, [127008] = 3, - ACTIONS(2471), 1, + ACTIONS(2761), 1, aux_sym_target_token1, ACTIONS(7931), 1, aux_sym_pandoc_span_token1, @@ -177167,11 +177619,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [127024] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7935), 1, sym__eof, - STATE(269), 1, + STATE(258), 1, sym__newline, [127034] = 2, ACTIONS(7799), 1, @@ -177280,7 +177732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7957), 1, sym__eof, - STATE(449), 1, + STATE(434), 1, sym__newline, [127188] = 3, ACTIONS(6378), 1, @@ -177294,7 +177746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7959), 1, sym__eof, - STATE(446), 1, + STATE(431), 1, sym__newline, [127208] = 3, ACTIONS(6382), 1, @@ -177304,21 +177756,21 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [127218] = 3, - ACTIONS(2481), 1, + ACTIONS(2771), 1, aux_sym_target_token1, ACTIONS(7963), 1, aux_sym_pandoc_span_token1, STATE(1422), 1, sym_target, [127228] = 3, - ACTIONS(2889), 1, + ACTIONS(2989), 1, sym__line_ending, ACTIONS(7817), 1, sym__pipe_table_delimiter, ACTIONS(7965), 1, sym__whitespace, [127238] = 3, - ACTIONS(2481), 1, + ACTIONS(2771), 1, aux_sym_target_token1, ACTIONS(7967), 1, aux_sym_pandoc_span_token1, @@ -177331,18 +177783,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, [127256] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(7969), 1, sym__eof, - STATE(576), 1, + STATE(353), 1, sym__newline, [127266] = 3, ACTIONS(25), 1, sym__line_ending, ACTIONS(7971), 1, sym__eof, - STATE(403), 1, + STATE(398), 1, sym__newline, [127276] = 3, ACTIONS(6378), 1, @@ -177359,28 +177811,28 @@ static const uint16_t ts_small_parse_table[] = { STATE(3673), 1, sym__newline, [127296] = 3, - ACTIONS(2889), 1, + ACTIONS(2989), 1, sym__line_ending, ACTIONS(7811), 1, sym__pipe_table_delimiter, ACTIONS(7977), 1, sym__whitespace, [127306] = 3, - ACTIONS(2481), 1, + ACTIONS(2771), 1, aux_sym_target_token1, ACTIONS(7979), 1, aux_sym_pandoc_span_token1, STATE(1096), 1, sym_target, [127316] = 3, - ACTIONS(2481), 1, + ACTIONS(2771), 1, aux_sym_target_token1, ACTIONS(7981), 1, aux_sym_pandoc_span_token1, STATE(1097), 1, sym_target, [127326] = 3, - ACTIONS(2873), 1, + ACTIONS(2985), 1, sym__line_ending, ACTIONS(7817), 1, sym__pipe_table_delimiter, @@ -177433,21 +177885,21 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(7995), 1, sym__eof, - STATE(447), 1, + STATE(432), 1, sym__newline, [127406] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7997), 1, sym__eof, - STATE(322), 1, + STATE(334), 1, sym__newline, [127416] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(7999), 1, sym__eof, - STATE(323), 1, + STATE(335), 1, sym__newline, [127426] = 3, ACTIONS(6382), 1, @@ -177457,11 +177909,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [127436] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(8001), 1, sym__eof, - STATE(498), 1, + STATE(471), 1, sym__newline, [127446] = 3, ACTIONS(7653), 1, @@ -177475,7 +177927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(8005), 1, sym__eof, - STATE(367), 1, + STATE(366), 1, sym__newline, [127466] = 3, ACTIONS(6378), 1, @@ -177492,14 +177944,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [127486] = 3, - ACTIONS(2521), 1, + ACTIONS(2809), 1, aux_sym_target_token1, ACTIONS(8009), 1, aux_sym_pandoc_span_token1, STATE(1020), 1, sym_target, [127496] = 3, - ACTIONS(2521), 1, + ACTIONS(2809), 1, aux_sym_target_token1, ACTIONS(8011), 1, aux_sym_pandoc_span_token1, @@ -177513,28 +177965,28 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 1, sym__shortcode_key_value_specifier, [127516] = 3, - ACTIONS(113), 1, + ACTIONS(115), 1, sym__line_ending, ACTIONS(8015), 1, sym__eof, - STATE(441), 1, + STATE(426), 1, sym__newline, [127526] = 3, - ACTIONS(2521), 1, + ACTIONS(2809), 1, aux_sym_target_token1, ACTIONS(8017), 1, aux_sym_pandoc_span_token1, STATE(978), 1, sym_target, [127536] = 3, - ACTIONS(2521), 1, + ACTIONS(2809), 1, aux_sym_target_token1, ACTIONS(8019), 1, aux_sym_pandoc_span_token1, STATE(979), 1, sym_target, [127546] = 3, - ACTIONS(2411), 1, + ACTIONS(2665), 1, aux_sym_target_token1, ACTIONS(8021), 1, aux_sym_pandoc_span_token1, @@ -177576,14 +178028,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 1, sym__shortcode_key_value_specifier, [127606] = 3, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, ACTIONS(8029), 1, sym__eof, - STATE(325), 1, + STATE(337), 1, sym__newline, [127616] = 3, - ACTIONS(2421), 1, + ACTIONS(2711), 1, aux_sym_target_token1, ACTIONS(8031), 1, aux_sym_pandoc_span_token1, @@ -177600,7 +178052,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(8035), 1, sym__eof, - STATE(471), 1, + STATE(461), 1, sym__newline, [127644] = 3, ACTIONS(6542), 1, @@ -177610,7 +178062,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2984), 1, sym__commonmark_key_value_specifier, [127654] = 3, - ACTIONS(2873), 1, + ACTIONS(2985), 1, sym__line_ending, ACTIONS(7811), 1, sym__pipe_table_delimiter, @@ -177631,7 +178083,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3977), 1, sym__newline, [127684] = 3, - ACTIONS(2421), 1, + ACTIONS(2711), 1, aux_sym_target_token1, ACTIONS(8043), 1, aux_sym_pandoc_span_token1, @@ -177652,35 +178104,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8047), 1, sym__whitespace, [127714] = 3, - ACTIONS(2431), 1, + ACTIONS(2721), 1, aux_sym_target_token1, ACTIONS(8049), 1, aux_sym_pandoc_span_token1, STATE(1333), 1, sym_target, [127724] = 3, - ACTIONS(2187), 1, + ACTIONS(2819), 1, aux_sym_target_token1, ACTIONS(8051), 1, aux_sym_pandoc_span_token1, STATE(1867), 1, sym_target, [127734] = 3, - ACTIONS(2187), 1, + ACTIONS(2819), 1, aux_sym_target_token1, ACTIONS(8053), 1, aux_sym_pandoc_span_token1, STATE(1869), 1, sym_target, [127744] = 3, - ACTIONS(2431), 1, + ACTIONS(2721), 1, aux_sym_target_token1, ACTIONS(8055), 1, aux_sym_pandoc_span_token1, STATE(1187), 1, sym_target, [127754] = 3, - ACTIONS(2491), 1, + ACTIONS(2781), 1, aux_sym_target_token1, ACTIONS(8057), 1, aux_sym_pandoc_span_token1, @@ -177694,7 +178146,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3971), 1, sym__blank_line, [127774] = 3, - ACTIONS(2187), 1, + ACTIONS(2819), 1, aux_sym_target_token1, ACTIONS(8061), 1, aux_sym_pandoc_span_token1, @@ -177745,22 +178197,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8069), 1, sym__whitespace, [127844] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(57), 1, + STATE(51), 1, sym__newline, [127851] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(58), 1, + STATE(52), 1, sym__newline, [127858] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(40), 1, + STATE(59), 1, sym__newline, [127865] = 2, - ACTIONS(2745), 1, + ACTIONS(2887), 1, sym__line_ending, ACTIONS(7817), 1, sym__pipe_table_delimiter, @@ -177779,9 +178231,9 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_ending, sym__single_quote_span_close, [127891] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(51), 1, + STATE(43), 1, sym__newline, [127898] = 2, ACTIONS(8063), 1, @@ -177882,12 +178334,12 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_ending, sym__whitespace, [128031] = 2, - ACTIONS(2383), 1, + ACTIONS(2305), 1, aux_sym_inline_note_token1, ACTIONS(8087), 1, sym_block_continuation, [128038] = 2, - ACTIONS(2377), 1, + ACTIONS(2299), 1, sym__block_close, ACTIONS(8089), 1, sym_block_continuation, @@ -177943,7 +178395,7 @@ static const uint16_t ts_small_parse_table[] = { sym__key_specifier_token, sym__shortcode_close, [128114] = 1, - ACTIONS(2575), 2, + ACTIONS(2461), 2, sym__line_ending, sym__eof, [128119] = 2, @@ -177990,19 +178442,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8103), 1, sym__fenced_code_block_end_backtick, [128178] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(42), 1, + STATE(58), 1, sym__newline, [128185] = 2, - ACTIONS(2889), 1, + ACTIONS(2989), 1, sym__line_ending, ACTIONS(8105), 1, sym__pipe_table_delimiter, [128192] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(43), 1, + STATE(39), 1, sym__newline, [128199] = 2, ACTIONS(6652), 1, @@ -178025,7 +178477,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3677), 1, sym__commonmark_double_quote_string, [128227] = 2, - ACTIONS(2889), 1, + ACTIONS(2989), 1, sym__line_ending, ACTIONS(7817), 1, sym__pipe_table_delimiter, @@ -178105,7 +178557,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3877), 1, sym__commonmark_double_quote_string, [128336] = 2, - ACTIONS(2873), 1, + ACTIONS(2985), 1, sym__line_ending, ACTIONS(8105), 1, sym__pipe_table_delimiter, @@ -178143,14 +178595,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8121), 1, sym__whitespace, [128388] = 2, - ACTIONS(2377), 1, + ACTIONS(2299), 1, sym__blank_line_start, ACTIONS(8123), 1, sym_block_continuation, [128395] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(48), 1, + STATE(40), 1, sym__newline, [128402] = 1, ACTIONS(7655), 2, @@ -178162,7 +178614,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3577), 1, sym__commonmark_double_quote_string, [128414] = 1, - ACTIONS(2711), 2, + ACTIONS(2595), 2, sym__key_specifier_token, aux_sym__commonmark_specifier_start_with_class_token2, [128419] = 2, @@ -178176,7 +178628,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3772), 1, sym__commonmark_double_quote_string, [128433] = 2, - ACTIONS(2873), 1, + ACTIONS(2985), 1, sym__line_ending, ACTIONS(7817), 1, sym__pipe_table_delimiter, @@ -178190,7 +178642,7 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_ending, sym__whitespace, [128452] = 1, - ACTIONS(2703), 2, + ACTIONS(2587), 2, sym__block_close, sym__blank_line_start, [128457] = 2, @@ -178235,7 +178687,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3434), 1, sym__commonmark_key_value_specifier, [128512] = 1, - ACTIONS(2703), 2, + ACTIONS(2587), 2, sym__line_ending, sym__eof, [128517] = 2, @@ -178325,9 +178777,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8105), 1, sym__pipe_table_delimiter, [128635] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(50), 1, + STATE(42), 1, sym__newline, [128642] = 1, ACTIONS(7655), 2, @@ -178343,7 +178795,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3985), 1, sym__commonmark_double_quote_string, [128659] = 2, - ACTIONS(2377), 1, + ACTIONS(2299), 1, sym__close_block, ACTIONS(8135), 1, sym_block_continuation, @@ -178372,9 +178824,9 @@ static const uint16_t ts_small_parse_table[] = { STATE(3989), 1, sym__commonmark_double_quote_string, [128699] = 2, - ACTIONS(229), 1, + ACTIONS(231), 1, sym__line_ending, - STATE(55), 1, + STATE(49), 1, sym__newline, [128706] = 2, ACTIONS(7045), 1, @@ -178742,7 +179194,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8339), 1, anon_sym_RPAREN, [129193] = 1, - ACTIONS(2703), 1, + ACTIONS(2587), 1, sym__close_block, [129197] = 1, ACTIONS(8341), 1, @@ -179477,7 +179929,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8769), 1, sym__superscript_close, [130173] = 1, - ACTIONS(2703), 1, + ACTIONS(2587), 1, sym__block_close, [130177] = 1, ACTIONS(8771), 1, @@ -179720,7 +180172,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8901), 1, aux_sym_citation_token2, [130497] = 1, - ACTIONS(2703), 1, + ACTIONS(2587), 1, sym__blank_line_start, [130501] = 1, ACTIONS(8903), 1, @@ -180320,7 +180772,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9253), 1, sym__strong_emphasis_close_star, [131297] = 1, - ACTIONS(2711), 1, + ACTIONS(2595), 1, aux_sym_inline_note_token1, [131301] = 1, ACTIONS(9255), 1, @@ -180683,16 +181135,16 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(584)] = 135, [SMALL_STATE(585)] = 270, [SMALL_STATE(586)] = 405, - [SMALL_STATE(587)] = 540, + [SMALL_STATE(587)] = 534, [SMALL_STATE(588)] = 669, [SMALL_STATE(589)] = 804, [SMALL_STATE(590)] = 939, [SMALL_STATE(591)] = 1074, - [SMALL_STATE(592)] = 1203, - [SMALL_STATE(593)] = 1338, - [SMALL_STATE(594)] = 1473, - [SMALL_STATE(595)] = 1608, - [SMALL_STATE(596)] = 1743, + [SMALL_STATE(592)] = 1209, + [SMALL_STATE(593)] = 1344, + [SMALL_STATE(594)] = 1479, + [SMALL_STATE(595)] = 1614, + [SMALL_STATE(596)] = 1749, [SMALL_STATE(597)] = 1878, [SMALL_STATE(598)] = 2013, [SMALL_STATE(599)] = 2148, @@ -180709,46 +181161,46 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(610)] = 3633, [SMALL_STATE(611)] = 3768, [SMALL_STATE(612)] = 3903, - [SMALL_STATE(613)] = 4037, - [SMALL_STATE(614)] = 4171, - [SMALL_STATE(615)] = 4305, - [SMALL_STATE(616)] = 4439, - [SMALL_STATE(617)] = 4569, - [SMALL_STATE(618)] = 4703, - [SMALL_STATE(619)] = 4837, - [SMALL_STATE(620)] = 4967, - [SMALL_STATE(621)] = 5097, - [SMALL_STATE(622)] = 5231, - [SMALL_STATE(623)] = 5365, - [SMALL_STATE(624)] = 5499, - [SMALL_STATE(625)] = 5633, - [SMALL_STATE(626)] = 5767, - [SMALL_STATE(627)] = 5901, - [SMALL_STATE(628)] = 6033, - [SMALL_STATE(629)] = 6165, - [SMALL_STATE(630)] = 6299, - [SMALL_STATE(631)] = 6433, - [SMALL_STATE(632)] = 6565, - [SMALL_STATE(633)] = 6699, - [SMALL_STATE(634)] = 6833, - [SMALL_STATE(635)] = 6967, - [SMALL_STATE(636)] = 7101, - [SMALL_STATE(637)] = 7235, - [SMALL_STATE(638)] = 7369, - [SMALL_STATE(639)] = 7497, - [SMALL_STATE(640)] = 7631, - [SMALL_STATE(641)] = 7765, - [SMALL_STATE(642)] = 7897, - [SMALL_STATE(643)] = 8031, - [SMALL_STATE(644)] = 8165, - [SMALL_STATE(645)] = 8299, - [SMALL_STATE(646)] = 8433, - [SMALL_STATE(647)] = 8561, - [SMALL_STATE(648)] = 8695, - [SMALL_STATE(649)] = 8829, - [SMALL_STATE(650)] = 8963, - [SMALL_STATE(651)] = 9097, - [SMALL_STATE(652)] = 9231, + [SMALL_STATE(613)] = 4035, + [SMALL_STATE(614)] = 4167, + [SMALL_STATE(615)] = 4295, + [SMALL_STATE(616)] = 4429, + [SMALL_STATE(617)] = 4563, + [SMALL_STATE(618)] = 4693, + [SMALL_STATE(619)] = 4827, + [SMALL_STATE(620)] = 4955, + [SMALL_STATE(621)] = 5089, + [SMALL_STATE(622)] = 5223, + [SMALL_STATE(623)] = 5357, + [SMALL_STATE(624)] = 5491, + [SMALL_STATE(625)] = 5625, + [SMALL_STATE(626)] = 5759, + [SMALL_STATE(627)] = 5893, + [SMALL_STATE(628)] = 6023, + [SMALL_STATE(629)] = 6157, + [SMALL_STATE(630)] = 6291, + [SMALL_STATE(631)] = 6423, + [SMALL_STATE(632)] = 6557, + [SMALL_STATE(633)] = 6691, + [SMALL_STATE(634)] = 6825, + [SMALL_STATE(635)] = 6955, + [SMALL_STATE(636)] = 7089, + [SMALL_STATE(637)] = 7223, + [SMALL_STATE(638)] = 7357, + [SMALL_STATE(639)] = 7491, + [SMALL_STATE(640)] = 7625, + [SMALL_STATE(641)] = 7759, + [SMALL_STATE(642)] = 7893, + [SMALL_STATE(643)] = 8027, + [SMALL_STATE(644)] = 8161, + [SMALL_STATE(645)] = 8295, + [SMALL_STATE(646)] = 8429, + [SMALL_STATE(647)] = 8563, + [SMALL_STATE(648)] = 8697, + [SMALL_STATE(649)] = 8831, + [SMALL_STATE(650)] = 8959, + [SMALL_STATE(651)] = 9091, + [SMALL_STATE(652)] = 9225, [SMALL_STATE(653)] = 9359, [SMALL_STATE(654)] = 9493, [SMALL_STATE(655)] = 9620, @@ -180791,14 +181243,14 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(692)] = 14322, [SMALL_STATE(693)] = 14450, [SMALL_STATE(694)] = 14578, - [SMALL_STATE(695)] = 14706, - [SMALL_STATE(696)] = 14834, - [SMALL_STATE(697)] = 14962, - [SMALL_STATE(698)] = 15090, - [SMALL_STATE(699)] = 15218, - [SMALL_STATE(700)] = 15346, - [SMALL_STATE(701)] = 15474, - [SMALL_STATE(702)] = 15602, + [SMALL_STATE(695)] = 14704, + [SMALL_STATE(696)] = 14832, + [SMALL_STATE(697)] = 14960, + [SMALL_STATE(698)] = 15088, + [SMALL_STATE(699)] = 15216, + [SMALL_STATE(700)] = 15344, + [SMALL_STATE(701)] = 15472, + [SMALL_STATE(702)] = 15600, [SMALL_STATE(703)] = 15728, [SMALL_STATE(704)] = 15856, [SMALL_STATE(705)] = 15984, @@ -180833,44 +181285,44 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(734)] = 19696, [SMALL_STATE(735)] = 19824, [SMALL_STATE(736)] = 19952, - [SMALL_STATE(737)] = 20078, - [SMALL_STATE(738)] = 20206, - [SMALL_STATE(739)] = 20334, - [SMALL_STATE(740)] = 20462, - [SMALL_STATE(741)] = 20590, - [SMALL_STATE(742)] = 20718, - [SMALL_STATE(743)] = 20846, - [SMALL_STATE(744)] = 20974, - [SMALL_STATE(745)] = 21102, - [SMALL_STATE(746)] = 21230, - [SMALL_STATE(747)] = 21358, - [SMALL_STATE(748)] = 21486, - [SMALL_STATE(749)] = 21614, - [SMALL_STATE(750)] = 21742, - [SMALL_STATE(751)] = 21870, - [SMALL_STATE(752)] = 21998, - [SMALL_STATE(753)] = 22126, - [SMALL_STATE(754)] = 22254, - [SMALL_STATE(755)] = 22382, - [SMALL_STATE(756)] = 22510, - [SMALL_STATE(757)] = 22638, - [SMALL_STATE(758)] = 22766, - [SMALL_STATE(759)] = 22894, - [SMALL_STATE(760)] = 23022, - [SMALL_STATE(761)] = 23150, - [SMALL_STATE(762)] = 23278, - [SMALL_STATE(763)] = 23406, - [SMALL_STATE(764)] = 23534, - [SMALL_STATE(765)] = 23662, - [SMALL_STATE(766)] = 23790, - [SMALL_STATE(767)] = 23918, - [SMALL_STATE(768)] = 24046, - [SMALL_STATE(769)] = 24174, - [SMALL_STATE(770)] = 24302, - [SMALL_STATE(771)] = 24430, - [SMALL_STATE(772)] = 24558, - [SMALL_STATE(773)] = 24686, - [SMALL_STATE(774)] = 24814, + [SMALL_STATE(737)] = 20080, + [SMALL_STATE(738)] = 20208, + [SMALL_STATE(739)] = 20336, + [SMALL_STATE(740)] = 20464, + [SMALL_STATE(741)] = 20592, + [SMALL_STATE(742)] = 20720, + [SMALL_STATE(743)] = 20848, + [SMALL_STATE(744)] = 20976, + [SMALL_STATE(745)] = 21104, + [SMALL_STATE(746)] = 21232, + [SMALL_STATE(747)] = 21360, + [SMALL_STATE(748)] = 21488, + [SMALL_STATE(749)] = 21616, + [SMALL_STATE(750)] = 21744, + [SMALL_STATE(751)] = 21872, + [SMALL_STATE(752)] = 22000, + [SMALL_STATE(753)] = 22128, + [SMALL_STATE(754)] = 22256, + [SMALL_STATE(755)] = 22384, + [SMALL_STATE(756)] = 22512, + [SMALL_STATE(757)] = 22640, + [SMALL_STATE(758)] = 22768, + [SMALL_STATE(759)] = 22896, + [SMALL_STATE(760)] = 23024, + [SMALL_STATE(761)] = 23152, + [SMALL_STATE(762)] = 23280, + [SMALL_STATE(763)] = 23408, + [SMALL_STATE(764)] = 23536, + [SMALL_STATE(765)] = 23664, + [SMALL_STATE(766)] = 23792, + [SMALL_STATE(767)] = 23920, + [SMALL_STATE(768)] = 24048, + [SMALL_STATE(769)] = 24176, + [SMALL_STATE(770)] = 24304, + [SMALL_STATE(771)] = 24432, + [SMALL_STATE(772)] = 24560, + [SMALL_STATE(773)] = 24688, + [SMALL_STATE(774)] = 24816, [SMALL_STATE(775)] = 24942, [SMALL_STATE(776)] = 25070, [SMALL_STATE(777)] = 25198, @@ -184326,352 +184778,352 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(2956), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(571), [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(509), [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 0), @@ -184679,2091 +185131,2091 @@ static const TSParseActionEntry ts_parse_actions[] = { [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 0), [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(205), [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(194), [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(501), [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(192), [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(190), [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(539), [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(743), [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 0), [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 0), [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(205), [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(194), [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(501), [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(192), [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(190), [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(539), [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(743), [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(508), [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(581), [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(205), [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(194), [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3155), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(192), [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(190), [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(539), [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(743), [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(791), [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 0), [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(56), [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(509), [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(57), [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3202), [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(405), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(581), [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 2, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 2, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 2, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 2, 0, 0), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 2, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 2, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 2, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 2, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 28), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 28), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 28), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 28), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 28), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 28), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 28), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 28), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), - [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2511), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(557), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(558), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(908), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 2, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 2, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 2, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 2, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 2, 0, 0), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 2, 0, 0), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 2, 0, 0), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 2, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 28), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 28), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 28), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 28), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 28), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 28), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 28), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 28), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2511), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2516), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(562), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(564), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(565), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3038), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(914), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(918), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(620), - [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2518), - [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(552), - [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3034), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3035), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(947), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3226), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), - [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), - [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), - [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), - [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(891), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(893), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(895), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3850), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2510), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(504), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3018), - [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3019), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3840), - [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), - [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2516), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3038), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(914), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(915), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), + [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2518), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3034), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3035), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(610), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3815), + [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3800), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), + [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3014), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3937), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), - [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(944), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3209), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3966), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), - [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3752), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2509), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), - [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3012), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3013), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3741), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(598), - [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), - [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(940), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3217), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3030), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3031), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4005), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), - [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), - [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3094), - [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3010), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3011), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), - [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), - [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(794), - [4791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3800), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), - [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), - [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), - [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(938), - [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), - [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(496), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3014), - [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), - [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), - [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), - [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3937), - [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [4929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3020), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), + [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), + [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3866), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3752), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2509), + [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), + [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3012), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3013), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), + [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3741), + [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), + [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), + [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(802), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3226), + [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(689), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(893), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(941), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3026), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3027), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), + [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), + [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), + [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(948), + [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3209), + [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [4953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), + [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3966), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(877), [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(675), - [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), - [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), - [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), - [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), - [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), - [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(721), - [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3020), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), - [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3866), - [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), - [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), - [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3901), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [5186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3179), - [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [5198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), - [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3890), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(605), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [5269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3925), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3926), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), - [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(937), - [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(521), - [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(522), - [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), - [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), - [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(686), - [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), - [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), - [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(941), - [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), - [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(528), - [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(529), - [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3026), - [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3027), - [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), - [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [5511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), - [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), - [5517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [5520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), - [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [5541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(502), - [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [5556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3815), - [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), - [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), - [5565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3850), + [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), + [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2510), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3018), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3019), + [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3840), + [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3901), + [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(940), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3179), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(537), + [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3890), + [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [5273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), + [5276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), + [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3094), + [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [5300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [5303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3010), + [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3011), + [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [5315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), + [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [5348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), + [5360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), + [5363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3217), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [5384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [5387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [5390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3030), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3031), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), + [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4005), + [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3925), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3926), + [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), + [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [5521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [5527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [5701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), - [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), - [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2511), - [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [5716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), - [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), - [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(557), - [5728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(558), - [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [5737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [5758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [5761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(908), - [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2511), + [5786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), + [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), + [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), + [5819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), + [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), @@ -186971,12 +187423,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 1), [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(376), - [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(437), - [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(439), - [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(444), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(472), - [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(372), + [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(579), + [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(577), + [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(578), + [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(496), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(527), + [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(571), [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 2), [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), @@ -187320,29 +187772,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), [7051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(2818), [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), [7056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), @@ -187369,7 +187821,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [7148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), @@ -187385,19 +187837,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 2, 0, 0), [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 2, 0, 0), [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), @@ -187565,9 +188017,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 4, 0, 0), [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), @@ -187610,24 +188062,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), @@ -187635,21 +188087,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), @@ -187663,10 +188115,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), @@ -187689,52 +188141,52 @@ static const TSParseActionEntry ts_parse_actions[] = { [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), @@ -187753,7 +188205,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 0), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), @@ -187764,14 +188216,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), @@ -187782,43 +188234,43 @@ static const TSParseActionEntry ts_parse_actions[] = { [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), @@ -187831,12 +188283,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 3, 0, 25), [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 4, 0, 33), [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), @@ -187916,7 +188368,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), @@ -187939,7 +188391,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), @@ -187953,19 +188405,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), @@ -187997,8 +188449,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), @@ -188026,9 +188478,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), @@ -188041,7 +188493,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), @@ -188049,8 +188501,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), @@ -188063,7 +188515,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), @@ -188097,13 +188549,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), @@ -188114,7 +188566,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), @@ -188159,7 +188611,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), @@ -188178,7 +188630,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), @@ -188201,25 +188653,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), @@ -188228,7 +188680,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), @@ -188238,7 +188690,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), @@ -188270,12 +188722,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), @@ -188301,7 +188753,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), @@ -188318,7 +188770,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), @@ -188345,7 +188797,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), @@ -188356,16 +188808,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), @@ -188378,10 +188830,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), @@ -188403,7 +188855,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), @@ -188610,6 +189062,7 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__pipe_table_delimiter = 81, ts_external_token__pandoc_line_break = 82, ts_external_token__triple_star_error = 83, + ts_external_token_grid_table = 84, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -188697,6 +189150,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pipe_table_delimiter] = sym__pipe_table_delimiter, [ts_external_token__pandoc_line_break] = sym__pandoc_line_break, [ts_external_token__triple_star_error] = sym__triple_star_error, + [ts_external_token_grid_table] = sym_grid_table, }; static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { @@ -188785,6 +189239,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, [ts_external_token__triple_star_error] = true, + [ts_external_token_grid_table] = true, }, [2] = { [ts_external_token__line_ending] = true, @@ -188840,6 +189295,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [3] = { [ts_external_token__line_ending] = true, @@ -188898,6 +189354,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [4] = { [ts_external_token__line_ending] = true, @@ -188954,6 +189411,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [5] = { [ts_external_token__line_ending] = true, @@ -189011,6 +189469,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [6] = { [ts_external_token__line_ending] = true, @@ -189068,6 +189527,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [7] = { [ts_external_token__line_ending] = true, @@ -189124,6 +189584,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [8] = { [ts_external_token__line_ending] = true, @@ -189158,35 +189619,6 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pandoc_line_break] = true, }, [9] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__code_span_start] = true, - [ts_external_token__html_comment] = true, - [ts_external_token__autolink] = true, - [ts_external_token__highlight_span_start] = true, - [ts_external_token__insert_span_start] = true, - [ts_external_token__delete_span_start] = true, - [ts_external_token__edit_comment_span_start] = true, - [ts_external_token__single_quote_span_open] = true, - [ts_external_token__double_quote_span_open] = true, - [ts_external_token__shortcode_open_escaped] = true, - [ts_external_token__shortcode_open] = true, - [ts_external_token__cite_author_in_text_with_open_bracket] = true, - [ts_external_token__cite_suppress_author_with_open_bracket] = true, - [ts_external_token__cite_author_in_text] = true, - [ts_external_token__cite_suppress_author] = true, - [ts_external_token__strikeout_open] = true, - [ts_external_token__subscript_open] = true, - [ts_external_token__superscript_open] = true, - [ts_external_token__inline_note_start_token] = true, - [ts_external_token__strong_emphasis_open_star] = true, - [ts_external_token__strong_emphasis_open_underscore] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token_inline_note_reference] = true, - [ts_external_token_html_element] = true, - [ts_external_token__pandoc_line_break] = true, - }, - [10] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token__block_close] = true, @@ -189243,6 +189675,36 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, + }, + [10] = { + [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_line_break] = true, }, [11] = { [ts_external_token__line_ending] = true, @@ -189299,6 +189761,7 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, }, [12] = { [ts_external_token__line_ending] = true, @@ -189519,6 +189982,7 @@ static const bool ts_external_scanner_states[102][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, @@ -189533,7 +189997,6 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strong_emphasis_open_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, @@ -189548,6 +190011,7 @@ static const bool ts_external_scanner_states[102][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, @@ -189556,7 +190020,6 @@ static const bool ts_external_scanner_states[102][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, @@ -189587,11 +190050,11 @@ static const bool ts_external_scanner_states[102][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, @@ -189621,8 +190084,8 @@ static const bool ts_external_scanner_states[102][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, @@ -189638,7 +190101,6 @@ static const bool ts_external_scanner_states[102][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, @@ -189651,6 +190113,7 @@ static const bool ts_external_scanner_states[102][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, @@ -189676,8 +190139,8 @@ static const bool ts_external_scanner_states[102][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__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, @@ -189699,7 +190162,6 @@ static const bool ts_external_scanner_states[102][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, @@ -189709,6 +190171,7 @@ static const bool ts_external_scanner_states[102][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, @@ -189738,12 +190201,12 @@ static const bool ts_external_scanner_states[102][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, [ts_external_token__superscript_open] = true, - [ts_external_token__superscript_close] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, @@ -189770,9 +190233,9 @@ static const bool ts_external_scanner_states[102][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, @@ -190252,7 +190715,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_markdown(void) { .max_reserved_word_set_size = 0, .metadata = { .major_version = 0, - .minor_version = 4, + .minor_version = 0, .patch_version = 0, }, }; 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 265a99539..891a0ad1e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -130,6 +130,13 @@ typedef enum { // so the parser raises Q-2-32 with the `**_foo_**` workaround. // See grammar.js (`_triple_star_error`) and CONTRIBUTING.md. TRIPLE_STAR, + + // KNOWN LIMITATION: QMD does not support Pandoc-style grid tables. + // The scanner detects them opaquely (border line `+----+` followed by + // one or more `+`/`|` body lines) and emits a single multi-line + // GRID_TABLE token so pampa can surface a structured diagnostic + // including the captured table text. See grammar.js (`grid_table`). + GRID_TABLE, } TokenType; #ifdef SCAN_DEBUG @@ -232,6 +239,8 @@ static char* token_names[] = { "PANDOC_LINE_BREAK", "TRIPLE_STAR", // simply for good error reporting + + "GRID_TABLE", // simply for good error reporting }; #endif @@ -884,11 +893,134 @@ static bool parse_atx_heading(Scanner *s, TSLexer *lexer, return false; } +// parse_grid_table_after_first_plus consumes the rest of a Pandoc-style +// grid table after the leading '+' has already been advanced. It greedily +// consumes border lines (`+----+`) and body lines (`| ... |`) across +// nested block-quote prefixes. On success it emits a single multi-line +// GRID_TABLE token spanning from the original '+' through the last +// matching body line. On failure it returns false (lexer state is +// abandoned, tree-sitter handles rewinding when scan() returns false). +// +// QMD does not actually support grid tables; the GRID_TABLE node exists +// purely so pampa can capture its full text and emit a structured +// diagnostic naming the construct. +static bool parse_grid_table_after_first_plus(Scanner *s, TSLexer *lexer) { + bool saw_dash_or_eq = false; + while (lexer->lookahead == '-' || lexer->lookahead == '=' || + lexer->lookahead == '+') { + if (lexer->lookahead == '-' || lexer->lookahead == '=') { + saw_dash_or_eq = true; + } + advance(s, lexer); + } + if (!saw_dash_or_eq) { + return false; + } + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(s, lexer); + } + if (lexer->lookahead != '\n' && lexer->lookahead != '\r' && + !lexer->eof(lexer)) { + return false; + } + + // First line is a valid '+----+' border. We require at least one + // following body line ('+' border or '|' data row) to commit to a + // grid table; a lone border line should fall back to paragraph parsing. + bool committed = false; + + for (;;) { + if (lexer->eof(lexer)) { + break; + } + // Consume the trailing newline of the previous line. + if (lexer->lookahead == '\r') { + advance(s, lexer); + if (lexer->lookahead == '\n') { + advance(s, lexer); + } + } else if (lexer->lookahead == '\n') { + advance(s, lexer); + } else { + break; + } + + // Strip block-quote prefixes for every currently-open BLOCK_QUOTE + // so nested grid tables (`> > +----+`) are captured correctly. + s->indentation = 0; + s->column = 0; + bool prefixes_ok = true; + for (size_t i = 0; i < s->open_blocks.size; i++) { + Block b = s->open_blocks.items[i]; + if (b == BLOCK_QUOTE) { + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(s, lexer); + } + if (lexer->lookahead != '>') { + prefixes_ok = false; + break; + } + advance(s, lexer); + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(s, lexer); + } + } else { + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(s, lexer); + } + } + } + if (!prefixes_ok) { + break; + } + + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(s, lexer); + } + + if (lexer->lookahead != '+' && lexer->lookahead != '|') { + break; + } + + // Consume the rest of this body line. + while (lexer->lookahead != '\n' && lexer->lookahead != '\r' && + !lexer->eof(lexer)) { + advance(s, lexer); + } + + committed = true; + mark_end(s, lexer); + } + + if (!committed) { + return false; + } + + s->indentation = 0; + s->column = 0; + EMIT_TOKEN(GRID_TABLE); +} + static bool parse_plus(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { - if (s->indentation <= 3 && + bool can_grid = valid_symbols[GRID_TABLE]; + bool can_list = s->indentation <= 3 && (valid_symbols[LIST_MARKER_PLUS] || - valid_symbols[LIST_MARKER_PLUS_DONT_INTERRUPT])) { - advance(s, lexer); + valid_symbols[LIST_MARKER_PLUS_DONT_INTERRUPT]); + if (!can_grid && !can_list) { + return false; + } + + advance(s, lexer); + + // Disambiguate based on the character following the leading '+': + // '-', '=', '+' → grid-table border line (must be valid) + // ' ', '\t', EOL → list marker (must be valid) + if (can_grid && (lexer->lookahead == '-' || lexer->lookahead == '=' || + lexer->lookahead == '+')) { + return parse_grid_table_after_first_plus(s, lexer); + } + + if (can_list) { uint8_t extra_indentation = 0; while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { extra_indentation += advance(s, lexer); diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/grid_table.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/grid_table.txt new file mode 100644 index 000000000..c67fafae3 --- /dev/null +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/grid_table.txt @@ -0,0 +1,88 @@ +================================================================================ +Plain grid table at top level +================================================================================ ++----+ +| oh | ++----+ +-------------------------------------------------------------------------------- +(document + (section + (grid_table))) + +================================================================================ +Grid table inside a single block quote +================================================================================ +> +----+ +> | oh | +> +----+ +-------------------------------------------------------------------------------- +(document + (section + (pandoc_block_quote + (block_quote_marker) + (grid_table)))) + +================================================================================ +Nested block quotes with intermediate non-grid lines +================================================================================ +> > +----+ +> > | oh | +> > +----+ +> | pipe-table-now | +> |-| +> | no | +> > +----+ +> > | no | +> > +----+ +-------------------------------------------------------------------------------- +(document + (section + (pandoc_block_quote + (block_quote_marker) + (pandoc_block_quote + (block_quote_marker) + (grid_table) + (block_continuation)) + (pandoc_paragraph + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_soft_break) + (pandoc_str) + (pandoc_str) + (pandoc_str) + (pandoc_soft_break) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (block_continuation)) + (pandoc_block_quote + (block_quote_marker) + (grid_table))))) + +================================================================================ +Single-line border-only is not a grid table, just a paragraph +================================================================================ ++----+ +-------------------------------------------------------------------------------- +(document + (section + (pandoc_paragraph + (pandoc_str) + (pandoc_str) + (pandoc_str)))) + +================================================================================ +Grid table with equals-sign header separator +================================================================================ ++====+ +| oh | ++----+ +-------------------------------------------------------------------------------- +(document + (section + (grid_table)))