This is page 7 of 8. Use http://codebase.md/moisnx/arc?page={x} to view the full context. # Directory Structure ``` ├── .clang-format ├── .config │ └── arceditor │ ├── config.yaml │ ├── keybinds.conf │ └── themes │ ├── catppuccin-mocha.theme │ ├── cyberpunk-neon.theme │ ├── default.theme │ ├── dracula.theme │ ├── github_dark.theme │ ├── gruvbox_dark.theme │ ├── gruvbox_light.theme │ ├── high_constrast_dark.theme │ ├── monokai.theme │ ├── onedark.theme │ ├── solarized_dark.theme │ ├── solarized_light.theme │ ├── tokyo_night.theme │ └── vscode_light.theme ├── .github │ └── assets │ └── screenshot.gif ├── .gitignore ├── .gitmessage ├── .gitmodules ├── build.md ├── CMakeLists.txt ├── deps │ └── tree-sitter-markdown │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ │ ├── screenshot.png │ │ └── workflows │ │ ├── ci.yml │ │ ├── publish.yml │ │ └── release.yml │ ├── .gitignore │ ├── binding.gyp │ ├── bindings │ │ ├── go │ │ │ ├── binding_test.go │ │ │ ├── markdown_inline.go │ │ │ └── markdown.go │ │ ├── node │ │ │ ├── binding_test.js │ │ │ ├── binding.cc │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── inline.js │ │ ├── python │ │ │ ├── tests │ │ │ │ └── test_binding.py │ │ │ └── tree_sitter_markdown │ │ │ ├── __init__.py │ │ │ ├── __init__.pyi │ │ │ ├── binding.c │ │ │ └── py.typed │ │ ├── rust │ │ │ ├── benchmark.rs │ │ │ ├── build.rs │ │ │ ├── lib.rs │ │ │ └── parser.rs │ │ └── swift │ │ ├── .gitignore │ │ └── TreeSitterMarkdownTests │ │ └── TreeSitterMarkdownTests.swift │ ├── Cargo.toml │ ├── CMakeLists.txt │ ├── common │ │ ├── common.js │ │ ├── common.mak │ │ └── html_entities.json │ ├── CONTRIBUTING.md │ ├── go.mod │ ├── LICENSE │ ├── Makefile │ ├── package-lock.json │ ├── package.json │ ├── Package.resolved │ ├── Package.swift │ ├── pyproject.toml │ ├── README.md │ ├── scripts │ │ ├── build.js │ │ └── test.js │ ├── setup.py │ ├── tree-sitter-markdown │ │ ├── bindings │ │ │ ├── c │ │ │ │ ├── tree-sitter-markdown.h │ │ │ │ └── tree-sitter-markdown.pc.in │ │ │ └── swift │ │ │ └── TreeSitterMarkdown │ │ │ └── markdown.h │ │ ├── CMakeLists.txt │ │ ├── grammar.js │ │ ├── Makefile │ │ ├── package.json │ │ ├── queries │ │ │ ├── highlights.scm │ │ │ └── injections.scm │ │ ├── src │ │ │ ├── grammar.json │ │ │ ├── node-types.json │ │ │ ├── parser.c │ │ │ ├── scanner.c │ │ │ └── tree_sitter │ │ │ ├── alloc.h │ │ │ ├── array.h │ │ │ └── parser.h │ │ └── test │ │ └── corpus │ │ ├── extension_minus_metadata.txt │ │ ├── extension_pipe_table.txt │ │ ├── extension_plus_metadata.txt │ │ ├── extension_task_list.txt │ │ ├── failing.txt │ │ ├── issues.txt │ │ └── spec.txt │ ├── tree-sitter-markdown-inline │ │ ├── bindings │ │ │ ├── c │ │ │ │ ├── tree-sitter-markdown-inline.h │ │ │ │ └── tree-sitter-markdown-inline.pc.in │ │ │ └── swift │ │ │ └── TreeSitterMarkdownInline │ │ │ └── markdown_inline.h │ │ ├── CMakeLists.txt │ │ ├── grammar.js │ │ ├── Makefile │ │ ├── package.json │ │ ├── queries │ │ │ ├── highlights.scm │ │ │ └── injections.scm │ │ ├── src │ │ │ ├── grammar.json │ │ │ ├── node-types.json │ │ │ ├── parser.c │ │ │ ├── scanner.c │ │ │ └── tree_sitter │ │ │ ├── alloc.h │ │ │ ├── array.h │ │ │ └── parser.h │ │ └── test │ │ └── corpus │ │ ├── extension_latex.txt │ │ ├── extension_strikethrough.txt │ │ ├── extension_wikilink.txt │ │ ├── failing.txt │ │ ├── issues.txt │ │ ├── spec.txt │ │ └── tags.txt │ └── tree-sitter.json ├── LICENSE ├── Makefile ├── quickstart.md ├── README.md ├── src │ ├── core │ │ ├── buffer.cpp │ │ ├── buffer.h │ │ ├── config_manager.cpp │ │ ├── config_manager.h │ │ ├── editor_delta.h │ │ ├── editor_validation.h │ │ ├── editor.cpp │ │ └── editor.h │ ├── features │ │ ├── markdown_state.h │ │ ├── syntax_config_loader.cpp │ │ ├── syntax_config_loader.h │ │ ├── syntax_highlighter.cpp │ │ └── syntax_highlighter.h │ ├── main.cpp │ └── ui │ ├── input_handler.cpp │ ├── input_handler.h │ ├── renderer.cpp │ ├── renderer.h │ ├── style_manager.cpp │ └── style_manager.h └── treesitter ├── languages.yaml └── queries ├── _javascript │ ├── highlights.scm │ ├── locals.scm │ └── tags.scm ├── _jsx │ ├── highlights.scm │ ├── indents.scm │ └── textobjects.scm ├── _typescript │ ├── highlights.scm │ ├── indents.scm │ ├── locals.scm │ ├── tags.scm │ └── textobjects.scm ├── bash │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── c │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── cpp │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── css │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ └── rainbows.scm ├── ecma │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── README.md │ └── textobjects.scm ├── go │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── javascript │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── markdown │ ├── highlights.scm │ ├── injections.scm │ └── tags.scm ├── markdown.inline │ ├── highlights.scm │ └── injections.scm ├── python │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── rust │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── toml │ ├── highlights.scm │ ├── injections.scm │ ├── rainbows.scm │ └── textobjects.scm ├── tsx │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── typescript │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── locals.scm │ ├── rainbows.scm │ ├── tags.scm │ └── textobjects.scm ├── yaml │ ├── highlights.scm │ ├── indents.scm │ ├── injections.scm │ ├── rainbows.scm │ └── textobjects.scm └── zig ├── highlights.scm ├── indents.scm ├── injections.scm └── textobjects.scm ``` # Files -------------------------------------------------------------------------------- /deps/tree-sitter-markdown/tree-sitter-markdown/src/grammar.json: -------------------------------------------------------------------------------- ```json { "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "markdown", "rules": { "document": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "minus_metadata" }, { "type": "SYMBOL", "name": "plus_metadata" } ] }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_block_not_section" } } }, "named": true, "value": "section" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "section" } } ] }, "backslash_escape": { "type": "SYMBOL", "name": "_backslash_escape" }, "_backslash_escape": { "type": "PATTERN", "value": "\\\\[!-/:-@\\[-`\\{-~]" }, "entity_reference": { "type": "PATTERN", "value": "&(AEli|AElig|AM|AMP|Aacut|Aacute|Abreve|Acir|Acirc|Acy|Afr|Agrav|Agrave|Alpha|Amacr|And|Aogon|Aopf|ApplyFunction|Arin|Aring|Ascr|Assign|Atild|Atilde|Aum|Auml|Backslash|Barv|Barwed|Bcy|Because|Bernoullis|Beta|Bfr|Bopf|Breve|Bscr|Bumpeq|CHcy|COP|COPY|Cacute|Cap|CapitalDifferentialD|Cayleys|Ccaron|Ccedi|Ccedil|Ccirc|Cconint|Cdot|Cedilla|CenterDot|Cfr|Chi|CircleDot|CircleMinus|CirclePlus|CircleTimes|ClockwiseContourIntegral|CloseCurlyDoubleQuote|CloseCurlyQuote|Colon|Colone|Congruent|Conint|ContourIntegral|Copf|Coproduct|CounterClockwiseContourIntegral|Cross|Cscr|Cup|CupCap|DD|DDotrahd|DJcy|DScy|DZcy|Dagger|Darr|Dashv|Dcaron|Dcy|Del|Delta|Dfr|DiacriticalAcute|DiacriticalDot|DiacriticalDoubleAcute|DiacriticalGrave|DiacriticalTilde|Diamond|DifferentialD|Dopf|Dot|DotDot|DotEqual|DoubleContourIntegral|DoubleDot|DoubleDownArrow|DoubleLeftArrow|DoubleLeftRightArrow|DoubleLeftTee|DoubleLongLeftArrow|DoubleLongLeftRightArrow|DoubleLongRightArrow|DoubleRightArrow|DoubleRightTee|DoubleUpArrow|DoubleUpDownArrow|DoubleVerticalBar|DownArrow|DownArrowBar|DownArrowUpArrow|DownBreve|DownLeftRightVector|DownLeftTeeVector|DownLeftVector|DownLeftVectorBar|DownRightTeeVector|DownRightVector|DownRightVectorBar|DownTee|DownTeeArrow|Downarrow|Dscr|Dstrok|ENG|ET|ETH|Eacut|Eacute|Ecaron|Ecir|Ecirc|Ecy|Edot|Efr|Egrav|Egrave|Element|Emacr|EmptySmallSquare|EmptyVerySmallSquare|Eogon|Eopf|Epsilon|Equal|EqualTilde|Equilibrium|Escr|Esim|Eta|Eum|Euml|Exists|ExponentialE|Fcy|Ffr|FilledSmallSquare|FilledVerySmallSquare|Fopf|ForAll|Fouriertrf|Fscr|GJcy|G|GT|Gamma|Gammad|Gbreve|Gcedil|Gcirc|Gcy|Gdot|Gfr|Gg|Gopf|GreaterEqual|GreaterEqualLess|GreaterFullEqual|GreaterGreater|GreaterLess|GreaterSlantEqual|GreaterTilde|Gscr|Gt|HARDcy|Hacek|Hat|Hcirc|Hfr|HilbertSpace|Hopf|HorizontalLine|Hscr|Hstrok|HumpDownHump|HumpEqual|IEcy|IJlig|IOcy|Iacut|Iacute|Icir|Icirc|Icy|Idot|Ifr|Igrav|Igrave|Im|Imacr|ImaginaryI|Implies|Int|Integral|Intersection|InvisibleComma|InvisibleTimes|Iogon|Iopf|Iota|Iscr|Itilde|Iukcy|Ium|Iuml|Jcirc|Jcy|Jfr|Jopf|Jscr|Jsercy|Jukcy|KHcy|KJcy|Kappa|Kcedil|Kcy|Kfr|Kopf|Kscr|LJcy|L|LT|Lacute|Lambda|Lang|Laplacetrf|Larr|Lcaron|Lcedil|Lcy|LeftAngleBracket|LeftArrow|LeftArrowBar|LeftArrowRightArrow|LeftCeiling|LeftDoubleBracket|LeftDownTeeVector|LeftDownVector|LeftDownVectorBar|LeftFloor|LeftRightArrow|LeftRightVector|LeftTee|LeftTeeArrow|LeftTeeVector|LeftTriangle|LeftTriangleBar|LeftTriangleEqual|LeftUpDownVector|LeftUpTeeVector|LeftUpVector|LeftUpVectorBar|LeftVector|LeftVectorBar|Leftarrow|Leftrightarrow|LessEqualGreater|LessFullEqual|LessGreater|LessLess|LessSlantEqual|LessTilde|Lfr|Ll|Lleftarrow|Lmidot|LongLeftArrow|LongLeftRightArrow|LongRightArrow|Longleftarrow|Longleftrightarrow|Longrightarrow|Lopf|LowerLeftArrow|LowerRightArrow|Lscr|Lsh|Lstrok|Lt|Map|Mcy|MediumSpace|Mellintrf|Mfr|MinusPlus|Mopf|Mscr|Mu|NJcy|Nacute|Ncaron|Ncedil|Ncy|NegativeMediumSpace|NegativeThickSpace|NegativeThinSpace|NegativeVeryThinSpace|NestedGreaterGreater|NestedLessLess|NewLine|Nfr|NoBreak|NonBreakingSpace|Nopf|Not|NotCongruent|NotCupCap|NotDoubleVerticalBar|NotElement|NotEqual|NotEqualTilde|NotExists|NotGreater|NotGreaterEqual|NotGreaterFullEqual|NotGreaterGreater|NotGreaterLess|NotGreaterSlantEqual|NotGreaterTilde|NotHumpDownHump|NotHumpEqual|NotLeftTriangle|NotLeftTriangleBar|NotLeftTriangleEqual|NotLess|NotLessEqual|NotLessGreater|NotLessLess|NotLessSlantEqual|NotLessTilde|NotNestedGreaterGreater|NotNestedLessLess|NotPrecedes|NotPrecedesEqual|NotPrecedesSlantEqual|NotReverseElement|NotRightTriangle|NotRightTriangleBar|NotRightTriangleEqual|NotSquareSubset|NotSquareSubsetEqual|NotSquareSuperset|NotSquareSupersetEqual|NotSubset|NotSubsetEqual|NotSucceeds|NotSucceedsEqual|NotSucceedsSlantEqual|NotSucceedsTilde|NotSuperset|NotSupersetEqual|NotTilde|NotTildeEqual|NotTildeFullEqual|NotTildeTilde|NotVerticalBar|Nscr|Ntild|Ntilde|Nu|OElig|Oacut|Oacute|Ocir|Ocirc|Ocy|Odblac|Ofr|Ograv|Ograve|Omacr|Omega|Omicron|Oopf|OpenCurlyDoubleQuote|OpenCurlyQuote|Or|Oscr|Oslas|Oslash|Otild|Otilde|Otimes|Oum|Ouml|OverBar|OverBrace|OverBracket|OverParenthesis|PartialD|Pcy|Pfr|Phi|Pi|PlusMinus|Poincareplane|Popf|Pr|Precedes|PrecedesEqual|PrecedesSlantEqual|PrecedesTilde|Prime|Product|Proportion|Proportional|Pscr|Psi|QUO|QUOT|Qfr|Qopf|Qscr|RBarr|RE|REG|Racute|Rang|Rarr|Rarrtl|Rcaron|Rcedil|Rcy|Re|ReverseElement|ReverseEquilibrium|ReverseUpEquilibrium|Rfr|Rho|RightAngleBracket|RightArrow|RightArrowBar|RightArrowLeftArrow|RightCeiling|RightDoubleBracket|RightDownTeeVector|RightDownVector|RightDownVectorBar|RightFloor|RightTee|RightTeeArrow|RightTeeVector|RightTriangle|RightTriangleBar|RightTriangleEqual|RightUpDownVector|RightUpTeeVector|RightUpVector|RightUpVectorBar|RightVector|RightVectorBar|Rightarrow|Ropf|RoundImplies|Rrightarrow|Rscr|Rsh|RuleDelayed|SHCHcy|SHcy|SOFTcy|Sacute|Sc|Scaron|Scedil|Scirc|Scy|Sfr|ShortDownArrow|ShortLeftArrow|ShortRightArrow|ShortUpArrow|Sigma|SmallCircle|Sopf|Sqrt|Square|SquareIntersection|SquareSubset|SquareSubsetEqual|SquareSuperset|SquareSupersetEqual|SquareUnion|Sscr|Star|Sub|Subset|SubsetEqual|Succeeds|SucceedsEqual|SucceedsSlantEqual|SucceedsTilde|SuchThat|Sum|Sup|Superset|SupersetEqual|Supset|THOR|THORN|TRADE|TSHcy|TScy|Tab|Tau|Tcaron|Tcedil|Tcy|Tfr|Therefore|Theta|ThickSpace|ThinSpace|Tilde|TildeEqual|TildeFullEqual|TildeTilde|Topf|TripleDot|Tscr|Tstrok|Uacut|Uacute|Uarr|Uarrocir|Ubrcy|Ubreve|Ucir|Ucirc|Ucy|Udblac|Ufr|Ugrav|Ugrave|Umacr|UnderBar|UnderBrace|UnderBracket|UnderParenthesis|Union|UnionPlus|Uogon|Uopf|UpArrow|UpArrowBar|UpArrowDownArrow|UpDownArrow|UpEquilibrium|UpTee|UpTeeArrow|Uparrow|Updownarrow|UpperLeftArrow|UpperRightArrow|Upsi|Upsilon|Uring|Uscr|Utilde|Uum|Uuml|VDash|Vbar|Vcy|Vdash|Vdashl|Vee|Verbar|Vert|VerticalBar|VerticalLine|VerticalSeparator|VerticalTilde|VeryThinSpace|Vfr|Vopf|Vscr|Vvdash|Wcirc|Wedge|Wfr|Wopf|Wscr|Xfr|Xi|Xopf|Xscr|YAcy|YIcy|YUcy|Yacut|Yacute|Ycirc|Ycy|Yfr|Yopf|Yscr|Yuml|ZHcy|Zacute|Zcaron|Zcy|Zdot|ZeroWidthSpace|Zeta|Zfr|Zopf|Zscr|aacut|aacute|abreve|ac|acE|acd|acir|acirc|acut|acute|acy|aeli|aelig|af|afr|agrav|agrave|alefsym|aleph|alpha|amacr|amalg|am|amp|and|andand|andd|andslope|andv|ang|ange|angle|angmsd|angmsdaa|angmsdab|angmsdac|angmsdad|angmsdae|angmsdaf|angmsdag|angmsdah|angrt|angrtvb|angrtvbd|angsph|angst|angzarr|aogon|aopf|ap|apE|apacir|ape|apid|apos|approx|approxeq|arin|aring|ascr|ast|asymp|asympeq|atild|atilde|aum|auml|awconint|awint|bNot|backcong|backepsilon|backprime|backsim|backsimeq|barvee|barwed|barwedge|bbrk|bbrktbrk|bcong|bcy|bdquo|becaus|because|bemptyv|bepsi|bernou|beta|beth|between|bfr|bigcap|bigcirc|bigcup|bigodot|bigoplus|bigotimes|bigsqcup|bigstar|bigtriangledown|bigtriangleup|biguplus|bigvee|bigwedge|bkarow|blacklozenge|blacksquare|blacktriangle|blacktriangledown|blacktriangleleft|blacktriangleright|blank|blk12|blk14|blk34|block|bne|bnequiv|bnot|bopf|bot|bottom|bowtie|boxDL|boxDR|boxDl|boxDr|boxH|boxHD|boxHU|boxHd|boxHu|boxUL|boxUR|boxUl|boxUr|boxV|boxVH|boxVL|boxVR|boxVh|boxVl|boxVr|boxbox|boxdL|boxdR|boxdl|boxdr|boxh|boxhD|boxhU|boxhd|boxhu|boxminus|boxplus|boxtimes|boxuL|boxuR|boxul|boxur|boxv|boxvH|boxvL|boxvR|boxvh|boxvl|boxvr|bprime|breve|brvba|brvbar|bscr|bsemi|bsim|bsime|bsol|bsolb|bsolhsub|bull|bullet|bump|bumpE|bumpe|bumpeq|cacute|cap|capand|capbrcup|capcap|capcup|capdot|caps|caret|caron|ccaps|ccaron|ccedi|ccedil|ccirc|ccups|ccupssm|cdot|cedi|cedil|cemptyv|cen|cent|centerdot|cfr|chcy|check|checkmark|chi|cir|cirE|circ|circeq|circlearrowleft|circlearrowright|circledR|circledS|circledast|circledcirc|circleddash|cire|cirfnint|cirmid|cirscir|clubs|clubsuit|colon|colone|coloneq|comma|commat|comp|compfn|complement|complexes|cong|congdot|conint|copf|coprod|cop|copy|copysr|crarr|cross|cscr|csub|csube|csup|csupe|ctdot|cudarrl|cudarrr|cuepr|cuesc|cularr|cularrp|cup|cupbrcap|cupcap|cupcup|cupdot|cupor|cups|curarr|curarrm|curlyeqprec|curlyeqsucc|curlyvee|curlywedge|curre|curren|curvearrowleft|curvearrowright|cuvee|cuwed|cwconint|cwint|cylcty|dArr|dHar|dagger|daleth|darr|dash|dashv|dbkarow|dblac|dcaron|dcy|dd|ddagger|ddarr|ddotseq|de|deg|delta|demptyv|dfisht|dfr|dharl|dharr|diam|diamond|diamondsuit|diams|die|digamma|disin|div|divid|divide|divideontimes|divonx|djcy|dlcorn|dlcrop|dollar|dopf|dot|doteq|doteqdot|dotminus|dotplus|dotsquare|doublebarwedge|downarrow|downdownarrows|downharpoonleft|downharpoonright|drbkarow|drcorn|drcrop|dscr|dscy|dsol|dstrok|dtdot|dtri|dtrif|duarr|duhar|dwangle|dzcy|dzigrarr|eDDot|eDot|eacut|eacute|easter|ecaron|ecir|ecir|ecirc|ecolon|ecy|edot|ee|efDot|efr|eg|egrav|egrave|egs|egsdot|el|elinters|ell|els|elsdot|emacr|empty|emptyset|emptyv|emsp13|emsp14|emsp|eng|ensp|eogon|eopf|epar|eparsl|eplus|epsi|epsilon|epsiv|eqcirc|eqcolon|eqsim|eqslantgtr|eqslantless|equals|equest|equiv|equivDD|eqvparsl|erDot|erarr|escr|esdot|esim|eta|et|eth|eum|euml|euro|excl|exist|expectation|exponentiale|fallingdotseq|fcy|female|ffilig|fflig|ffllig|ffr|filig|fjlig|flat|fllig|fltns|fnof|fopf|forall|fork|forkv|fpartint|frac1|frac12|frac13|frac1|frac14|frac15|frac16|frac18|frac23|frac25|frac3|frac34|frac35|frac38|frac45|frac56|frac58|frac78|frasl|frown|fscr|gE|gEl|gacute|gamma|gammad|gap|gbreve|gcirc|gcy|gdot|ge|gel|geq|geqq|geqslant|ges|gescc|gesdot|gesdoto|gesdotol|gesl|gesles|gfr|gg|ggg|gimel|gjcy|gl|glE|gla|glj|gnE|gnap|gnapprox|gne|gneq|gneqq|gnsim|gopf|grave|gscr|gsim|gsime|gsiml|g|gt|gtcc|gtcir|gtdot|gtlPar|gtquest|gtrapprox|gtrarr|gtrdot|gtreqless|gtreqqless|gtrless|gtrsim|gvertneqq|gvnE|hArr|hairsp|half|hamilt|hardcy|harr|harrcir|harrw|hbar|hcirc|hearts|heartsuit|hellip|hercon|hfr|hksearow|hkswarow|hoarr|homtht|hookleftarrow|hookrightarrow|hopf|horbar|hscr|hslash|hstrok|hybull|hyphen|iacut|iacute|ic|icir|icirc|icy|iecy|iexc|iexcl|iff|ifr|igrav|igrave|ii|iiiint|iiint|iinfin|iiota|ijlig|imacr|image|imagline|imagpart|imath|imof|imped|in|incare|infin|infintie|inodot|int|intcal|integers|intercal|intlarhk|intprod|iocy|iogon|iopf|iota|iprod|iques|iquest|iscr|isin|isinE|isindot|isins|isinsv|isinv|it|itilde|iukcy|ium|iuml|jcirc|jcy|jfr|jmath|jopf|jscr|jsercy|jukcy|kappa|kappav|kcedil|kcy|kfr|kgreen|khcy|kjcy|kopf|kscr|lAarr|lArr|lAtail|lBarr|lE|lEg|lHar|lacute|laemptyv|lagran|lambda|lang|langd|langle|lap|laqu|laquo|larr|larrb|larrbfs|larrfs|larrhk|larrlp|larrpl|larrsim|larrtl|lat|latail|late|lates|lbarr|lbbrk|lbrace|lbrack|lbrke|lbrksld|lbrkslu|lcaron|lcedil|lceil|lcub|lcy|ldca|ldquo|ldquor|ldrdhar|ldrushar|ldsh|le|leftarrow|leftarrowtail|leftharpoondown|leftharpoonup|leftleftarrows|leftrightarrow|leftrightarrows|leftrightharpoons|leftrightsquigarrow|leftthreetimes|leg|leq|leqq|leqslant|les|lescc|lesdot|lesdoto|lesdotor|lesg|lesges|lessapprox|lessdot|lesseqgtr|lesseqqgtr|lessgtr|lesssim|lfisht|lfloor|lfr|lg|lgE|lhard|lharu|lharul|lhblk|ljcy|ll|llarr|llcorner|llhard|lltri|lmidot|lmoust|lmoustache|lnE|lnap|lnapprox|lne|lneq|lneqq|lnsim|loang|loarr|lobrk|longleftarrow|longleftrightarrow|longmapsto|longrightarrow|looparrowleft|looparrowright|lopar|lopf|loplus|lotimes|lowast|lowbar|loz|lozenge|lozf|lpar|lparlt|lrarr|lrcorner|lrhar|lrhard|lrm|lrtri|lsaquo|lscr|lsh|lsim|lsime|lsimg|lsqb|lsquo|lsquor|lstrok|l|lt|ltcc|ltcir|ltdot|lthree|ltimes|ltlarr|ltquest|ltrPar|ltri|ltrie|ltrif|lurdshar|luruhar|lvertneqq|lvnE|mDDot|mac|macr|male|malt|maltese|map|mapsto|mapstodown|mapstoleft|mapstoup|marker|mcomma|mcy|mdash|measuredangle|mfr|mho|micr|micro|mid|midast|midcir|middo|middot|minus|minusb|minusd|minusdu|mlcp|mldr|mnplus|models|mopf|mp|mscr|mstpos|mu|multimap|mumap|nGg|nGt|nGtv|nLeftarrow|nLeftrightarrow|nLl|nLt|nLtv|nRightarrow|nVDash|nVdash|nabla|nacute|nang|nap|napE|napid|napos|napprox|natur|natural|naturals|nbs|nbsp|nbump|nbumpe|ncap|ncaron|ncedil|ncong|ncongdot|ncup|ncy|ndash|ne|neArr|nearhk|nearr|nearrow|nedot|nequiv|nesear|nesim|nexist|nexists|nfr|ngE|nge|ngeq|ngeqq|ngeqslant|nges|ngsim|ngt|ngtr|nhArr|nharr|nhpar|ni|nis|nisd|niv|njcy|nlArr|nlE|nlarr|nldr|nle|nleftarrow|nleftrightarrow|nleq|nleqq|nleqslant|nles|nless|nlsim|nlt|nltri|nltrie|nmid|nopf|no|not|notin|notinE|notindot|notinva|notinvb|notinvc|notni|notniva|notnivb|notnivc|npar|nparallel|nparsl|npart|npolint|npr|nprcue|npre|nprec|npreceq|nrArr|nrarr|nrarrc|nrarrw|nrightarrow|nrtri|nrtrie|nsc|nsccue|nsce|nscr|nshortmid|nshortparallel|nsim|nsime|nsimeq|nsmid|nspar|nsqsube|nsqsupe|nsub|nsubE|nsube|nsubset|nsubseteq|nsubseteqq|nsucc|nsucceq|nsup|nsupE|nsupe|nsupset|nsupseteq|nsupseteqq|ntgl|ntild|ntilde|ntlg|ntriangleleft|ntrianglelefteq|ntriangleright|ntrianglerighteq|nu|num|numero|numsp|nvDash|nvHarr|nvap|nvdash|nvge|nvgt|nvinfin|nvlArr|nvle|nvlt|nvltrie|nvrArr|nvrtrie|nvsim|nwArr|nwarhk|nwarr|nwarrow|nwnear|oS|oacut|oacute|oast|ocir|ocir|ocirc|ocy|odash|odblac|odiv|odot|odsold|oelig|ofcir|ofr|ogon|ograv|ograve|ogt|ohbar|ohm|oint|olarr|olcir|olcross|oline|olt|omacr|omega|omicron|omid|ominus|oopf|opar|operp|oplus|or|orarr|ord|order|orderof|ord|ordf|ord|ordm|origof|oror|orslope|orv|oscr|oslas|oslash|osol|otild|otilde|otimes|otimesas|oum|ouml|ovbar|par|par|para|parallel|parsim|parsl|part|pcy|percnt|period|permil|perp|pertenk|pfr|phi|phiv|phmmat|phone|pi|pitchfork|piv|planck|planckh|plankv|plus|plusacir|plusb|pluscir|plusdo|plusdu|pluse|plusm|plusmn|plussim|plustwo|pm|pointint|popf|poun|pound|pr|prE|prap|prcue|pre|prec|precapprox|preccurlyeq|preceq|precnapprox|precneqq|precnsim|precsim|prime|primes|prnE|prnap|prnsim|prod|profalar|profline|profsurf|prop|propto|prsim|prurel|pscr|psi|puncsp|qfr|qint|qopf|qprime|qscr|quaternions|quatint|quest|questeq|quo|quot|rAarr|rArr|rAtail|rBarr|rHar|race|racute|radic|raemptyv|rang|rangd|range|rangle|raqu|raquo|rarr|rarrap|rarrb|rarrbfs|rarrc|rarrfs|rarrhk|rarrlp|rarrpl|rarrsim|rarrtl|rarrw|ratail|ratio|rationals|rbarr|rbbrk|rbrace|rbrack|rbrke|rbrksld|rbrkslu|rcaron|rcedil|rceil|rcub|rcy|rdca|rdldhar|rdquo|rdquor|rdsh|real|realine|realpart|reals|rect|re|reg|rfisht|rfloor|rfr|rhard|rharu|rharul|rho|rhov|rightarrow|rightarrowtail|rightharpoondown|rightharpoonup|rightleftarrows|rightleftharpoons|rightrightarrows|rightsquigarrow|rightthreetimes|ring|risingdotseq|rlarr|rlhar|rlm|rmoust|rmoustache|rnmid|roang|roarr|robrk|ropar|ropf|roplus|rotimes|rpar|rpargt|rppolint|rrarr|rsaquo|rscr|rsh|rsqb|rsquo|rsquor|rthree|rtimes|rtri|rtrie|rtrif|rtriltri|ruluhar|rx|sacute|sbquo|sc|scE|scap|scaron|sccue|sce|scedil|scirc|scnE|scnap|scnsim|scpolint|scsim|scy|sdot|sdotb|sdote|seArr|searhk|searr|searrow|sec|sect|semi|seswar|setminus|setmn|sext|sfr|sfrown|sharp|shchcy|shcy|shortmid|shortparallel|sh|shy|sigma|sigmaf|sigmav|sim|simdot|sime|simeq|simg|simgE|siml|simlE|simne|simplus|simrarr|slarr|smallsetminus|smashp|smeparsl|smid|smile|smt|smte|smtes|softcy|sol|solb|solbar|sopf|spades|spadesuit|spar|sqcap|sqcaps|sqcup|sqcups|sqsub|sqsube|sqsubset|sqsubseteq|sqsup|sqsupe|sqsupset|sqsupseteq|squ|square|squarf|squf|srarr|sscr|ssetmn|ssmile|sstarf|star|starf|straightepsilon|straightphi|strns|sub|subE|subdot|sube|subedot|submult|subnE|subne|subplus|subrarr|subset|subseteq|subseteqq|subsetneq|subsetneqq|subsim|subsub|subsup|succ|succapprox|succcurlyeq|succeq|succnapprox|succneqq|succnsim|succsim|sum|sung|sup|sup1|sup|sup2|sup|sup3|sup|supE|supdot|supdsub|supe|supedot|suphsol|suphsub|suplarr|supmult|supnE|supne|supplus|supset|supseteq|supseteqq|supsetneq|supsetneqq|supsim|supsub|supsup|swArr|swarhk|swarr|swarrow|swnwar|szli|szlig|target|tau|tbrk|tcaron|tcedil|tcy|tdot|telrec|tfr|there4|therefore|theta|thetasym|thetav|thickapprox|thicksim|thinsp|thkap|thksim|thor|thorn|tilde|time|times|timesb|timesbar|timesd|tint|toea|top|topbot|topcir|topf|topfork|tosa|tprime|trade|triangle|triangledown|triangleleft|trianglelefteq|triangleq|triangleright|trianglerighteq|tridot|trie|triminus|triplus|trisb|tritime|trpezium|tscr|tscy|tshcy|tstrok|twixt|twoheadleftarrow|twoheadrightarrow|uArr|uHar|uacut|uacute|uarr|ubrcy|ubreve|ucir|ucirc|ucy|udarr|udblac|udhar|ufisht|ufr|ugrav|ugrave|uharl|uharr|uhblk|ulcorn|ulcorner|ulcrop|ultri|umacr|um|uml|uogon|uopf|uparrow|updownarrow|upharpoonleft|upharpoonright|uplus|upsi|upsih|upsilon|upuparrows|urcorn|urcorner|urcrop|uring|urtri|uscr|utdot|utilde|utri|utrif|uuarr|uum|uuml|uwangle|vArr|vBar|vBarv|vDash|vangrt|varepsilon|varkappa|varnothing|varphi|varpi|varpropto|varr|varrho|varsigma|varsubsetneq|varsubsetneqq|varsupsetneq|varsupsetneqq|vartheta|vartriangleleft|vartriangleright|vcy|vdash|vee|veebar|veeeq|vellip|verbar|vert|vfr|vltri|vnsub|vnsup|vopf|vprop|vrtri|vscr|vsubnE|vsubne|vsupnE|vsupne|vzigzag|wcirc|wedbar|wedge|wedgeq|weierp|wfr|wopf|wp|wr|wreath|wscr|xcap|xcirc|xcup|xdtri|xfr|xhArr|xharr|xi|xlArr|xlarr|xmap|xnis|xodot|xopf|xoplus|xotime|xrArr|xrarr|xscr|xsqcup|xuplus|xutri|xvee|xwedge|yacut|yacute|yacy|ycirc|ycy|ye|yen|yfr|yicy|yopf|yscr|yucy|yum|yuml|zacute|zcaron|zcy|zdot|zeetrf|zeta|zfr|zhcy|zigrarr|zopf|zscr|zwj|zwnj);" }, "numeric_character_reference": { "type": "PATTERN", "value": "&#([0-9]{1,7}|[xX][0-9a-fA-F]{1,6});" }, "link_label": { "type": "SEQ", "members": [ { "type": "STRING", "value": "[" }, { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_text_inline_no_link" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SYMBOL", "name": "_soft_line_break" } ] } }, { "type": "STRING", "value": "]" } ] }, "link_destination": { "type": "PREC_DYNAMIC", "value": 10, "content": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "STRING", "value": "<" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_text_no_angle" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" } ] } }, { "type": "STRING", "value": ">" } ] }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SYMBOL", "name": "_link_destination_parenthesis" } ] }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SYMBOL", "name": "_link_destination_parenthesis" } ] } } ] } ] } }, "_link_destination_parenthesis": { "type": "SEQ", "members": [ { "type": "STRING", "value": "(" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SYMBOL", "name": "_link_destination_parenthesis" } ] } }, { "type": "STRING", "value": ")" } ] }, "_text_no_angle": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_whitespace" } ] }, "link_title": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "STRING", "value": "\"" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "SYMBOL", "name": "_trigger_error" } ] }, { "type": "BLANK" } ] } ] } ] } }, { "type": "STRING", "value": "\"" } ] }, { "type": "SEQ", "members": [ { "type": "STRING", "value": "'" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "SYMBOL", "name": "_trigger_error" } ] }, { "type": "BLANK" } ] } ] } ] } }, { "type": "STRING", "value": "'" } ] }, { "type": "SEQ", "members": [ { "type": "STRING", "value": "(" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "SYMBOL", "name": "_trigger_error" } ] }, { "type": "BLANK" } ] } ] } ] } }, { "type": "STRING", "value": ")" } ] } ] }, "_newline_token": { "type": "PATTERN", "value": "\\n|\\r\\n?" }, "_last_token_punctuation": { "type": "CHOICE", "members": [] }, "_block": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_block_not_section" }, { "type": "SYMBOL", "name": "section" } ] }, "_block_not_section": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_setext_heading1" }, "named": true, "value": "setext_heading" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_setext_heading2" }, "named": true, "value": "setext_heading" }, { "type": "SYMBOL", "name": "paragraph" }, { "type": "SYMBOL", "name": "indented_code_block" }, { "type": "SYMBOL", "name": "block_quote" }, { "type": "SYMBOL", "name": "thematic_break" }, { "type": "SYMBOL", "name": "list" }, { "type": "SYMBOL", "name": "fenced_code_block" }, { "type": "SYMBOL", "name": "_blank_line" }, { "type": "SYMBOL", "name": "html_block" }, { "type": "SYMBOL", "name": "link_reference_definition" }, { "type": "SYMBOL", "name": "pipe_table" } ] }, "section": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_section1" }, { "type": "SYMBOL", "name": "_section2" }, { "type": "SYMBOL", "name": "_section3" }, { "type": "SYMBOL", "name": "_section4" }, { "type": "SYMBOL", "name": "_section5" }, { "type": "SYMBOL", "name": "_section6" } ] }, "_section1": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_atx_heading1" }, "named": true, "value": "atx_heading" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_section6" }, { "type": "SYMBOL", "name": "_section5" }, { "type": "SYMBOL", "name": "_section4" }, { "type": "SYMBOL", "name": "_section3" }, { "type": "SYMBOL", "name": "_section2" } ] }, "named": true, "value": "section" }, { "type": "SYMBOL", "name": "_block_not_section" } ] } } ] } }, "_section2": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_atx_heading2" }, "named": true, "value": "atx_heading" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_section6" }, { "type": "SYMBOL", "name": "_section5" }, { "type": "SYMBOL", "name": "_section4" }, { "type": "SYMBOL", "name": "_section3" } ] }, "named": true, "value": "section" }, { "type": "SYMBOL", "name": "_block_not_section" } ] } } ] } }, "_section3": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_atx_heading3" }, "named": true, "value": "atx_heading" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_section6" }, { "type": "SYMBOL", "name": "_section5" }, { "type": "SYMBOL", "name": "_section4" } ] }, "named": true, "value": "section" }, { "type": "SYMBOL", "name": "_block_not_section" } ] } } ] } }, "_section4": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_atx_heading4" }, "named": true, "value": "atx_heading" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_section6" }, { "type": "SYMBOL", "name": "_section5" } ] }, "named": true, "value": "section" }, { "type": "SYMBOL", "name": "_block_not_section" } ] } } ] } }, "_section5": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_atx_heading5" }, "named": true, "value": "atx_heading" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_section6" }, "named": true, "value": "section" }, { "type": "SYMBOL", "name": "_block_not_section" } ] } } ] } }, "_section6": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_atx_heading6" }, "named": true, "value": "atx_heading" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_block_not_section" } } ] } }, "thematic_break": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_thematic_break" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_eof" } ] } ] }, "_atx_heading1": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "atx_h1_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_atx_heading_content" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" } ] } }, "_atx_heading2": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "atx_h2_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_atx_heading_content" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" } ] } }, "_atx_heading3": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "atx_h3_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_atx_heading_content" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" } ] } }, "_atx_heading4": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "atx_h4_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_atx_heading_content" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" } ] } }, "_atx_heading5": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "atx_h5_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_atx_heading_content" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" } ] } }, "_atx_heading6": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "atx_h6_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_atx_heading_content" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" } ] } }, "_atx_heading_content": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "FIELD", "name": "heading_content", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_line" }, "named": true, "value": "inline" } } ] } }, "_setext_heading1": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "heading_content", "content": { "type": "SYMBOL", "name": "paragraph" } }, { "type": "SYMBOL", "name": "setext_h1_underline" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_eof" } ] } ] }, "_setext_heading2": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "heading_content", "content": { "type": "SYMBOL", "name": "paragraph" } }, { "type": "SYMBOL", "name": "setext_h2_underline" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_eof" } ] } ] }, "indented_code_block": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_indented_chunk" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_indented_chunk" }, { "type": "SYMBOL", "name": "_blank_line" } ] } } ] } }, "_indented_chunk": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_indented_chunk_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "fenced_code_block": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_fenced_code_block_start_backtick" }, "named": true, "value": "fenced_code_block_delimiter" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "info_string" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "code_fence_content" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_fenced_code_block_end_backtick" }, "named": true, "value": "fenced_code_block_delimiter" }, { "type": "SYMBOL", "name": "_close_block" }, { "type": "SYMBOL", "name": "_newline" } ] }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_block_close" } ] }, { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_fenced_code_block_start_tilde" }, "named": true, "value": "fenced_code_block_delimiter" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "info_string" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_newline" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "code_fence_content" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_fenced_code_block_end_tilde" }, "named": true, "value": "fenced_code_block_delimiter" }, { "type": "SYMBOL", "name": "_close_block" }, { "type": "SYMBOL", "name": "_newline" } ] }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_block_close" } ] } ] } }, "code_fence_content": { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_line" } ] } }, "info_string": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "language" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" } ] } } ] }, { "type": "SEQ", "members": [ { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "}" } ] } }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "language" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" } ] } } ] }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" } ] } } ] } ] }, { "type": "BLANK" } ] } ] } ] }, "language": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "backslash_escape" }, { "type": "SYMBOL", "name": "entity_reference" }, { "type": "SYMBOL", "name": "numeric_character_reference" } ] } } }, "html_block": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_html_block_1" }, { "type": "SYMBOL", "name": "_html_block_2" }, { "type": "SYMBOL", "name": "_html_block_3" }, { "type": "SYMBOL", "name": "_html_block_4" }, { "type": "SYMBOL", "name": "_html_block_5" }, { "type": "SYMBOL", "name": "_html_block_6" }, { "type": "SYMBOL", "name": "_html_block_7" } ] } ] } }, "_html_block_1": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_1_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_1_end" }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_html_block_2": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_2_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "STRING", "value": "-->" }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_html_block_3": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_3_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "STRING", "value": "?>" }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_html_block_4": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_4_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "STRING", "value": ">" }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_html_block_5": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_5_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "STRING", "value": "]]>" }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_html_block_6": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_6_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_blank_line" } ] }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_html_block_7": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_html_block_7_start" }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SEQ", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_blank_line" } ] }, { "type": "SYMBOL", "name": "_close_block" } ] } ] } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "link_reference_definition": { "type": "PREC_DYNAMIC", "value": 10, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "link_label" }, { "type": "STRING", "value": ":" }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] }, { "type": "BLANK" } ] } ] }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "link_destination" }, { "type": "CHOICE", "members": [ { "type": "PREC_DYNAMIC", "value": 20, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_no_indented_chunk" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "link_title" } ] } }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_soft_line_break" }, { "type": "SYMBOL", "name": "_eof" } ] } ] } }, "_text_inline_no_link": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] } ] }, "paragraph": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_line" }, { "type": "SYMBOL", "name": "_soft_line_break" } ] } }, "named": true, "value": "inline" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_eof" } ] } ] }, "_blank_line": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_blank_line_start" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_eof" } ] } ] }, "block_quote": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_block_quote_start" }, "named": true, "value": "block_quote_marker" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_block" } }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "list": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_list_plus" }, { "type": "SYMBOL", "name": "_list_minus" }, { "type": "SYMBOL", "name": "_list_star" }, { "type": "SYMBOL", "name": "_list_dot" }, { "type": "SYMBOL", "name": "_list_parenthesis" } ] } }, "_list_plus": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_list_item_plus" }, "named": true, "value": "list_item" } } }, "_list_minus": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_list_item_minus" }, "named": true, "value": "list_item" } } }, "_list_star": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_list_item_star" }, "named": true, "value": "list_item" } } }, "_list_dot": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_list_item_dot" }, "named": true, "value": "list_item" } } }, "_list_parenthesis": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_list_item_parenthesis" }, "named": true, "value": "list_item" } } }, "list_marker_plus": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_list_marker_plus" }, { "type": "SYMBOL", "name": "_list_marker_plus_dont_interrupt" } ] }, "list_marker_minus": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_list_marker_minus" }, { "type": "SYMBOL", "name": "_list_marker_minus_dont_interrupt" } ] }, "list_marker_star": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_list_marker_star" }, { "type": "SYMBOL", "name": "_list_marker_star_dont_interrupt" } ] }, "list_marker_dot": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_list_marker_dot" }, { "type": "SYMBOL", "name": "_list_marker_dot_dont_interrupt" } ] }, "list_marker_parenthesis": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_list_marker_parenthesis" }, { "type": "SYMBOL", "name": "_list_marker_parenthesis_dont_interrupt" } ] }, "_list_item_plus": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "list_marker_plus" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_list_item_content" }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_list_item_minus": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "list_marker_minus" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_list_item_content" }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_list_item_star": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "list_marker_star" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_list_item_content" }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_list_item_dot": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "list_marker_dot" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_list_item_content" }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_list_item_parenthesis": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "list_marker_parenthesis" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_list_item_content" }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_list_item_content": { "type": "CHOICE", "members": [ { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_blank_line" }, { "type": "SYMBOL", "name": "_blank_line" }, { "type": "SYMBOL", "name": "_close_block" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] } }, { "type": "REPEAT1", "content": { "type": "SYMBOL", "name": "_block" } }, { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "task_list_marker_checked" }, { "type": "SYMBOL", "name": "task_list_marker_unchecked" } ] }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SYMBOL", "name": "paragraph" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_block" } } ] } } ] }, "_newline": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_line_ending" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_soft_line_break": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_soft_line_ending" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "_line": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "|" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] } ] } } }, "_word": { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "[^!-/:-@\\[-`\\{-~ \\t\\n\\r]+" }, { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "\\[[xX]\\]" }, { "type": "PATTERN", "value": "\\[[ \\t]\\]" } ] } ] }, "_whitespace": { "type": "PATTERN", "value": "[ \\t]+" }, "task_list_marker_checked": { "type": "PREC", "value": 1, "content": { "type": "PATTERN", "value": "\\[[xX]\\]" } }, "task_list_marker_unchecked": { "type": "PREC", "value": 1, "content": { "type": "PATTERN", "value": "\\[[ \\t]\\]" } }, "pipe_table": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_pipe_table_start" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "pipe_table_row" }, "named": true, "value": "pipe_table_header" }, { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "pipe_table_delimiter_row" }, { "type": "REPEAT", "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_pipe_table_newline" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "pipe_table_row" }, { "type": "BLANK" } ] } ] } }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_newline" }, { "type": "SYMBOL", "name": "_eof" } ] } ] } }, "_pipe_table_newline": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_pipe_table_line_ending" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "block_continuation" }, { "type": "BLANK" } ] } ] }, "pipe_table_delimiter_row": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "STRING", "value": "|" } ] }, { "type": "BLANK" } ] }, { "type": "REPEAT1", "content": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "pipe_table_delimiter_cell" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "STRING", "value": "|" } ] } } }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "pipe_table_delimiter_cell" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] }, { "type": "BLANK" } ] } ] }, "pipe_table_delimiter_cell": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "STRING", "value": ":" }, "named": true, "value": "pipe_table_align_left" }, { "type": "BLANK" } ] }, { "type": "REPEAT1", "content": { "type": "STRING", "value": "-" } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "STRING", "value": ":" }, "named": true, "value": "pipe_table_align_right" }, { "type": "BLANK" } ] } ] }, "pipe_table_row": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "STRING", "value": "|" } ] }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "REPEAT1", "content": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "pipe_table_cell" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_whitespace" }, "named": true, "value": "pipe_table_cell" } ] }, { "type": "STRING", "value": "|" } ] } } }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "pipe_table_cell" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "pipe_table_cell" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_whitespace" }, { "type": "BLANK" } ] } ] } ] } ] }, "pipe_table_cell": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SYMBOL", "name": "_backslash_escape" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] } ] }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_word" }, { "type": "SYMBOL", "name": "_whitespace" }, { "type": "SYMBOL", "name": "_backslash_escape" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "!" }, { "type": "STRING", "value": "\"" }, { "type": "STRING", "value": "#" }, { "type": "STRING", "value": "$" }, { "type": "STRING", "value": "%" }, { "type": "STRING", "value": "&" }, { "type": "STRING", "value": "'" }, { "type": "STRING", "value": "(" }, { "type": "STRING", "value": ")" }, { "type": "STRING", "value": "*" }, { "type": "STRING", "value": "+" }, { "type": "STRING", "value": "," }, { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "." }, { "type": "STRING", "value": "/" }, { "type": "STRING", "value": ":" }, { "type": "STRING", "value": ";" }, { "type": "STRING", "value": "<" }, { "type": "STRING", "value": "=" }, { "type": "STRING", "value": ">" }, { "type": "STRING", "value": "?" }, { "type": "STRING", "value": "@" }, { "type": "STRING", "value": "[" }, { "type": "STRING", "value": "\\" }, { "type": "STRING", "value": "]" }, { "type": "STRING", "value": "^" }, { "type": "STRING", "value": "_" }, { "type": "STRING", "value": "`" }, { "type": "STRING", "value": "{" }, { "type": "STRING", "value": "}" }, { "type": "STRING", "value": "~" } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_last_token_punctuation" }, { "type": "BLANK" } ] } ] } ] } } ] } } }, "extras": [], "conflicts": [ [ "link_reference_definition" ], [ "link_label", "_line" ], [ "link_reference_definition", "_line" ] ], "precedences": [ [ { "type": "SYMBOL", "name": "_setext_heading1" }, { "type": "SYMBOL", "name": "_block" } ], [ { "type": "SYMBOL", "name": "_setext_heading2" }, { "type": "SYMBOL", "name": "_block" } ], [ { "type": "SYMBOL", "name": "indented_code_block" }, { "type": "SYMBOL", "name": "_block" } ] ], "externals": [ { "type": "SYMBOL", "name": "_line_ending" }, { "type": "SYMBOL", "name": "_soft_line_ending" }, { "type": "SYMBOL", "name": "_block_close" }, { "type": "SYMBOL", "name": "block_continuation" }, { "type": "SYMBOL", "name": "_block_quote_start" }, { "type": "SYMBOL", "name": "_indented_chunk_start" }, { "type": "SYMBOL", "name": "atx_h1_marker" }, { "type": "SYMBOL", "name": "atx_h2_marker" }, { "type": "SYMBOL", "name": "atx_h3_marker" }, { "type": "SYMBOL", "name": "atx_h4_marker" }, { "type": "SYMBOL", "name": "atx_h5_marker" }, { "type": "SYMBOL", "name": "atx_h6_marker" }, { "type": "SYMBOL", "name": "setext_h1_underline" }, { "type": "SYMBOL", "name": "setext_h2_underline" }, { "type": "SYMBOL", "name": "_thematic_break" }, { "type": "SYMBOL", "name": "_list_marker_minus" }, { "type": "SYMBOL", "name": "_list_marker_plus" }, { "type": "SYMBOL", "name": "_list_marker_star" }, { "type": "SYMBOL", "name": "_list_marker_parenthesis" }, { "type": "SYMBOL", "name": "_list_marker_dot" }, { "type": "SYMBOL", "name": "_list_marker_minus_dont_interrupt" }, { "type": "SYMBOL", "name": "_list_marker_plus_dont_interrupt" }, { "type": "SYMBOL", "name": "_list_marker_star_dont_interrupt" }, { "type": "SYMBOL", "name": "_list_marker_parenthesis_dont_interrupt" }, { "type": "SYMBOL", "name": "_list_marker_dot_dont_interrupt" }, { "type": "SYMBOL", "name": "_fenced_code_block_start_backtick" }, { "type": "SYMBOL", "name": "_fenced_code_block_start_tilde" }, { "type": "SYMBOL", "name": "_blank_line_start" }, { "type": "SYMBOL", "name": "_fenced_code_block_end_backtick" }, { "type": "SYMBOL", "name": "_fenced_code_block_end_tilde" }, { "type": "SYMBOL", "name": "_html_block_1_start" }, { "type": "SYMBOL", "name": "_html_block_1_end" }, { "type": "SYMBOL", "name": "_html_block_2_start" }, { "type": "SYMBOL", "name": "_html_block_3_start" }, { "type": "SYMBOL", "name": "_html_block_4_start" }, { "type": "SYMBOL", "name": "_html_block_5_start" }, { "type": "SYMBOL", "name": "_html_block_6_start" }, { "type": "SYMBOL", "name": "_html_block_7_start" }, { "type": "SYMBOL", "name": "_close_block" }, { "type": "SYMBOL", "name": "_no_indented_chunk" }, { "type": "SYMBOL", "name": "_error" }, { "type": "SYMBOL", "name": "_trigger_error" }, { "type": "SYMBOL", "name": "_eof" }, { "type": "SYMBOL", "name": "minus_metadata" }, { "type": "SYMBOL", "name": "plus_metadata" }, { "type": "SYMBOL", "name": "_pipe_table_start" }, { "type": "SYMBOL", "name": "_pipe_table_line_ending" } ], "inline": [], "supertypes": [], "reserved": {} } ```