@wdprlib/parser 3.1.2 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +10456 -8230
- package/dist/index.d.cts +313 -337
- package/dist/index.d.ts +313 -337
- package/dist/index.js +10460 -8234
- package/package.json +5 -3
- package/src/index.ts +170 -0
- package/src/lexer/anchor.ts +48 -0
- package/src/lexer/index.ts +21 -0
- package/src/lexer/lexer.ts +201 -0
- package/src/lexer/options.ts +19 -0
- package/src/lexer/punctuation.ts +70 -0
- package/src/lexer/quoted-string.ts +16 -0
- package/src/lexer/runs.ts +85 -0
- package/src/lexer/spacing-actions.ts +24 -0
- package/src/lexer/state.ts +103 -0
- package/src/lexer/syntax-actions.ts +80 -0
- package/src/lexer/text-actions.ts +41 -0
- package/src/lexer/token-actions.ts +136 -0
- package/src/lexer/token-factory.ts +62 -0
- package/src/lexer/tokenize.ts +18 -0
- package/src/lexer/tokens.ts +141 -0
- package/src/parser/constants.ts +175 -0
- package/src/parser/depth/index.ts +111 -0
- package/src/parser/depth/stack.ts +82 -0
- package/src/parser/index.ts +18 -0
- package/src/parser/parse/block.ts +42 -0
- package/src/parser/parse/context.ts +26 -0
- package/src/parser/parse/footnotes.ts +25 -0
- package/src/parser/parse/index.ts +42 -0
- package/src/parser/parse/options.ts +34 -0
- package/src/parser/parse/parser.ts +79 -0
- package/src/parser/parse/plain-non-ascii.ts +129 -0
- package/src/parser/parse/result.ts +57 -0
- package/src/parser/parse/source.ts +11 -0
- package/src/parser/postprocess/divAdjacentParagraph.ts +76 -0
- package/src/parser/postprocess/index.ts +15 -0
- package/src/parser/postprocess/spanStrip/clean-element.ts +168 -0
- package/src/parser/postprocess/spanStrip/cleanup.ts +25 -0
- package/src/parser/postprocess/spanStrip/empty-spans.ts +36 -0
- package/src/parser/postprocess/spanStrip/escaped.ts +78 -0
- package/src/parser/postprocess/spanStrip/factory.ts +23 -0
- package/src/parser/postprocess/spanStrip/index.ts +8 -0
- package/src/parser/postprocess/spanStrip/merge.ts +117 -0
- package/src/parser/postprocess/spanStrip/predicates.ts +59 -0
- package/src/parser/postprocess/spanStrip/split.ts +67 -0
- package/src/parser/preprocess/expr/chars.ts +15 -0
- package/src/parser/preprocess/expr/evaluate.ts +22 -0
- package/src/parser/preprocess/expr/index.ts +45 -0
- package/src/parser/preprocess/expr/kind.ts +19 -0
- package/src/parser/preprocess/expr/parse.ts +103 -0
- package/src/parser/preprocess/expr/scan.ts +34 -0
- package/src/parser/preprocess/expr/types.ts +14 -0
- package/src/parser/preprocess/index.ts +38 -0
- package/src/parser/preprocess/typography.ts +132 -0
- package/src/parser/preprocess/utils/bracket-depths.ts +98 -0
- package/src/parser/preprocess/utils/index.ts +13 -0
- package/src/parser/preprocess/utils/raw-regions.ts +153 -0
- package/src/parser/preprocess/whitespace/detection.ts +39 -0
- package/src/parser/preprocess/whitespace/index.ts +79 -0
- package/src/parser/preprocess/whitespace/leading-spaces.ts +11 -0
- package/src/parser/preprocess/whitespace/patterns.ts +23 -0
- package/src/parser/rules/block/align/body.ts +46 -0
- package/src/parser/rules/block/align/element.ts +13 -0
- package/src/parser/rules/block/align/index.ts +90 -0
- package/src/parser/rules/block/align/syntax.ts +113 -0
- package/src/parser/rules/block/bibliography/body.ts +81 -0
- package/src/parser/rules/block/bibliography/entries.ts +49 -0
- package/src/parser/rules/block/bibliography/entry-content.ts +73 -0
- package/src/parser/rules/block/bibliography/entry-key.ts +83 -0
- package/src/parser/rules/block/bibliography/index.ts +90 -0
- package/src/parser/rules/block/bibliography/open.ts +53 -0
- package/src/parser/rules/block/block-list/bare-content.ts +105 -0
- package/src/parser/rules/block/block-list/bare-paragraph.ts +60 -0
- package/src/parser/rules/block/block-list/index.ts +51 -0
- package/src/parser/rules/block/block-list/item-content.ts +132 -0
- package/src/parser/rules/block/block-list/li-content.ts +107 -0
- package/src/parser/rules/block/block-list/li-item.ts +77 -0
- package/src/parser/rules/block/block-list/list-block.ts +100 -0
- package/src/parser/rules/block/block-list/open.ts +51 -0
- package/src/parser/rules/block/block-list/tags.ts +50 -0
- package/src/parser/rules/block/blockquote/build.ts +62 -0
- package/src/parser/rules/block/blockquote/index.ts +80 -0
- package/src/parser/rules/block/blockquote/line.ts +79 -0
- package/src/parser/rules/block/blockquote/lines.ts +39 -0
- package/src/parser/rules/block/center/index.ts +72 -0
- package/src/parser/rules/block/center/open.ts +27 -0
- package/src/parser/rules/block/clear-float/index.ts +51 -0
- package/src/parser/rules/block/clear-float/syntax.ts +43 -0
- package/src/parser/rules/block/code/attributes.ts +30 -0
- package/src/parser/rules/block/code/content.ts +57 -0
- package/src/parser/rules/block/code/index.ts +100 -0
- package/src/parser/rules/block/collapsible/attributes.ts +95 -0
- package/src/parser/rules/block/collapsible/body.ts +69 -0
- package/src/parser/rules/block/collapsible/index.ts +117 -0
- package/src/parser/rules/block/collapsible/open.ts +51 -0
- package/src/parser/rules/block/collapsible/orphans.ts +31 -0
- package/src/parser/rules/block/collapsible/tags.ts +17 -0
- package/src/parser/rules/block/comment/consume.ts +37 -0
- package/src/parser/rules/block/comment/index.ts +47 -0
- package/src/parser/rules/block/content-separator/index.ts +49 -0
- package/src/parser/rules/block/content-separator/syntax.ts +33 -0
- package/src/parser/rules/block/definition-list/collect.ts +40 -0
- package/src/parser/rules/block/definition-list/index.ts +63 -0
- package/src/parser/rules/block/definition-list/item-key.ts +95 -0
- package/src/parser/rules/block/definition-list/item-value.ts +56 -0
- package/src/parser/rules/block/definition-list/items.ts +54 -0
- package/src/parser/rules/block/div/body.ts +41 -0
- package/src/parser/rules/block/div/close.ts +41 -0
- package/src/parser/rules/block/div/failed.ts +117 -0
- package/src/parser/rules/block/div/index.ts +112 -0
- package/src/parser/rules/block/div/nesting.ts +37 -0
- package/src/parser/rules/block/div/open.ts +59 -0
- package/src/parser/rules/block/div/paragraph-strip.ts +44 -0
- package/src/parser/rules/block/embed-block/content.ts +53 -0
- package/src/parser/rules/block/embed-block/index.ts +91 -0
- package/src/parser/rules/block/embed-block/open.ts +52 -0
- package/src/parser/rules/block/embed-block/tags.ts +5 -0
- package/src/parser/rules/block/footnoteblock/attributes.ts +73 -0
- package/src/parser/rules/block/footnoteblock/index.ts +82 -0
- package/src/parser/rules/block/footnoteblock/open.ts +53 -0
- package/src/parser/rules/block/heading/index.ts +87 -0
- package/src/parser/rules/block/heading/open.ts +50 -0
- package/src/parser/rules/block/heading/toc-text.ts +26 -0
- package/src/parser/rules/block/horizontal-rule/index.ts +44 -0
- package/src/parser/rules/block/horizontal-rule/syntax.ts +21 -0
- package/src/parser/rules/block/html/body.ts +114 -0
- package/src/parser/rules/block/html/diagnostics.ts +11 -0
- package/src/parser/rules/block/html/index.ts +95 -0
- package/src/parser/rules/block/html/open.ts +36 -0
- package/src/parser/rules/block/iframe/attributes.ts +106 -0
- package/src/parser/rules/block/iframe/index.ts +73 -0
- package/src/parser/rules/block/iframe/open.ts +58 -0
- package/src/parser/rules/block/iframe/source.ts +24 -0
- package/src/parser/rules/block/iframe/url.ts +38 -0
- package/src/parser/rules/block/iftags/body.ts +48 -0
- package/src/parser/rules/block/iftags/condition.ts +24 -0
- package/src/parser/rules/block/iftags/index.ts +108 -0
- package/src/parser/rules/block/include/arguments.ts +48 -0
- package/src/parser/rules/block/include/index.ts +75 -0
- package/src/parser/rules/block/include/location.ts +24 -0
- package/src/parser/rules/block/include/variables.ts +37 -0
- package/src/parser/rules/block/index.ts +127 -0
- package/src/parser/rules/block/list/index.ts +73 -0
- package/src/parser/rules/block/list/line.ts +77 -0
- package/src/parser/rules/block/list/native.ts +89 -0
- package/src/parser/rules/block/math/content.ts +54 -0
- package/src/parser/rules/block/math/index.ts +106 -0
- package/src/parser/rules/block/math/name.ts +35 -0
- package/src/parser/rules/block/module/backlinks/index.ts +31 -0
- package/src/parser/rules/block/module/backlinks/types.ts +21 -0
- package/src/parser/rules/block/module/body.ts +92 -0
- package/src/parser/rules/block/module/categories/index.ts +34 -0
- package/src/parser/rules/block/module/categories/types.ts +21 -0
- package/src/parser/rules/block/module/css/index.ts +37 -0
- package/src/parser/rules/block/module/element.ts +33 -0
- package/src/parser/rules/block/module/iftags/condition.ts +109 -0
- package/src/parser/rules/block/module/iftags/index.ts +26 -0
- package/src/parser/rules/block/module/iftags/preprocess.ts +140 -0
- package/src/parser/rules/block/module/iftags/resolve.ts +73 -0
- package/src/parser/rules/block/module/iftags/types.ts +63 -0
- package/src/parser/rules/block/module/include/directive.ts +91 -0
- package/src/parser/rules/block/module/include/index.ts +29 -0
- package/src/parser/rules/block/module/include/references.ts +42 -0
- package/src/parser/rules/block/module/include/resolve/cache.ts +44 -0
- package/src/parser/rules/block/module/include/resolve/index.ts +106 -0
- package/src/parser/rules/block/module/include/resolve/iterate.ts +202 -0
- package/src/parser/rules/block/module/include/resolve/replace.ts +31 -0
- package/src/parser/rules/block/module/include/resolve/types.ts +105 -0
- package/src/parser/rules/block/module/include/scanner.ts +121 -0
- package/src/parser/rules/block/module/index.ts +134 -0
- package/src/parser/rules/block/module/join/index.ts +34 -0
- package/src/parser/rules/block/module/join/types.ts +23 -0
- package/src/parser/rules/block/module/listpages/compiler.ts +73 -0
- package/src/parser/rules/block/module/listpages/extract.ts +76 -0
- package/src/parser/rules/block/module/listpages/extraction/listpages.ts +42 -0
- package/src/parser/rules/block/module/listpages/extraction/listusers.ts +30 -0
- package/src/parser/rules/block/module/listpages/extraction/query.ts +51 -0
- package/src/parser/rules/block/module/listpages/extraction/result.ts +18 -0
- package/src/parser/rules/block/module/listpages/extraction/template.ts +96 -0
- package/src/parser/rules/block/module/listpages/extraction/variables.ts +58 -0
- package/src/parser/rules/block/module/listpages/index.ts +83 -0
- package/src/parser/rules/block/module/listpages/normalization/date-selector.ts +53 -0
- package/src/parser/rules/block/module/listpages/normalization/numeric-selector.ts +32 -0
- package/src/parser/rules/block/module/listpages/normalization/order-parent.ts +82 -0
- package/src/parser/rules/block/module/listpages/normalization/selectors.ts +2 -0
- package/src/parser/rules/block/module/listpages/normalization/tags-category.ts +86 -0
- package/src/parser/rules/block/module/listpages/normalize.ts +74 -0
- package/src/parser/rules/block/module/listpages/parser.ts +106 -0
- package/src/parser/rules/block/module/listpages/resolution/items.ts +43 -0
- package/src/parser/rules/block/module/listpages/resolution/wrapper.ts +42 -0
- package/src/parser/rules/block/module/listpages/resolve.ts +60 -0
- package/src/parser/rules/block/module/listpages/template/format/content.ts +41 -0
- package/src/parser/rules/block/module/listpages/template/format/date.ts +116 -0
- package/src/parser/rules/block/module/listpages/template/format/index.ts +4 -0
- package/src/parser/rules/block/module/listpages/template/format/tags.ts +7 -0
- package/src/parser/rules/block/module/listpages/template/format/user.ts +9 -0
- package/src/parser/rules/block/module/listpages/template/getters/index.ts +36 -0
- package/src/parser/rules/block/module/listpages/template/getters/parameterized.ts +60 -0
- package/src/parser/rules/block/module/listpages/template/getters/simple.ts +65 -0
- package/src/parser/rules/block/module/listpages/template/getters/types.ts +3 -0
- package/src/parser/rules/block/module/listpages/template/syntax.ts +97 -0
- package/src/parser/rules/block/module/listpages/types/data-fetcher.ts +15 -0
- package/src/parser/rules/block/module/listpages/types/data-requirements.ts +52 -0
- package/src/parser/rules/block/module/listpages/types/external-data.ts +77 -0
- package/src/parser/rules/block/module/listpages/types/index.ts +17 -0
- package/src/parser/rules/block/module/listpages/types/normalized-query.ts +120 -0
- package/src/parser/rules/block/module/listpages/types/query.ts +67 -0
- package/src/parser/rules/block/module/listpages/types/template.ts +17 -0
- package/src/parser/rules/block/module/listpages/types/variables.ts +69 -0
- package/src/parser/rules/block/module/listpages/url-resolution/fields.ts +48 -0
- package/src/parser/rules/block/module/listpages/url-resolution/params.ts +19 -0
- package/src/parser/rules/block/module/listpages/url-resolution/query.ts +24 -0
- package/src/parser/rules/block/module/listpages/url-resolution/resolve.ts +53 -0
- package/src/parser/rules/block/module/listpages/url-resolution/value.ts +25 -0
- package/src/parser/rules/block/module/listpages/url-resolver.ts +29 -0
- package/src/parser/rules/block/module/listusers/compiler.ts +56 -0
- package/src/parser/rules/block/module/listusers/extract.ts +40 -0
- package/src/parser/rules/block/module/listusers/getters.ts +21 -0
- package/src/parser/rules/block/module/listusers/index.ts +36 -0
- package/src/parser/rules/block/module/listusers/parser.ts +54 -0
- package/src/parser/rules/block/module/listusers/resolve.ts +58 -0
- package/src/parser/rules/block/module/listusers/types.ts +93 -0
- package/src/parser/rules/block/module/listusers/variables.ts +15 -0
- package/src/parser/rules/block/module/mapping.ts +61 -0
- package/src/parser/rules/block/module/open.ts +57 -0
- package/src/parser/rules/block/module/page-tree/index.ts +38 -0
- package/src/parser/rules/block/module/page-tree/types.ts +29 -0
- package/src/parser/rules/block/module/rate/index.ts +28 -0
- package/src/parser/rules/block/module/rate/types.ts +19 -0
- package/src/parser/rules/block/module/resolution/contexts.ts +78 -0
- package/src/parser/rules/block/module/resolution/data-maps.ts +39 -0
- package/src/parser/rules/block/module/resolution/dynamic-modules.ts +93 -0
- package/src/parser/rules/block/module/resolution/styles.ts +53 -0
- package/src/parser/rules/block/module/resolution/walk-resolve.ts +107 -0
- package/src/parser/rules/block/module/resolve.ts +198 -0
- package/src/parser/rules/block/module/rule.ts +56 -0
- package/src/parser/rules/block/module/types-common.ts +70 -0
- package/src/parser/rules/block/module/types.ts +61 -0
- package/src/parser/rules/block/module/utils.ts +43 -0
- package/src/parser/rules/block/module/walk/children.ts +35 -0
- package/src/parser/rules/block/module/walk/index.ts +9 -0
- package/src/parser/rules/block/module/walk/map/index.ts +2 -0
- package/src/parser/rules/block/module/walk/map/stateful-definition-list.ts +25 -0
- package/src/parser/rules/block/module/walk/map/stateful-list.ts +40 -0
- package/src/parser/rules/block/module/walk/map/stateful-table.ts +23 -0
- package/src/parser/rules/block/module/walk/map/stateful-tabs.ts +19 -0
- package/src/parser/rules/block/module/walk/map/stateful.ts +71 -0
- package/src/parser/rules/block/module/walk/map/stateless-definition-list.ts +12 -0
- package/src/parser/rules/block/module/walk/map/stateless-list.ts +29 -0
- package/src/parser/rules/block/module/walk/map/stateless-table.ts +11 -0
- package/src/parser/rules/block/module/walk/map/stateless-tabs.ts +5 -0
- package/src/parser/rules/block/module/walk/map/stateless.ts +51 -0
- package/src/parser/rules/block/module/walk/map/types.ts +6 -0
- package/src/parser/rules/block/module/walk/traverse.ts +65 -0
- package/src/parser/rules/block/orphan-li/content.ts +60 -0
- package/src/parser/rules/block/orphan-li/index.ts +75 -0
- package/src/parser/rules/block/orphan-li/open.ts +25 -0
- package/src/parser/rules/block/orphan-li/tags.ts +40 -0
- package/src/parser/rules/block/paragraph/content.ts +12 -0
- package/src/parser/rules/block/paragraph/index.ts +60 -0
- package/src/parser/rules/block/paragraph/normalize.ts +52 -0
- package/src/parser/rules/block/paragraph/span-markers.ts +52 -0
- package/src/parser/rules/block/parsing/attributes/index.ts +32 -0
- package/src/parser/rules/block/parsing/attributes/names.ts +93 -0
- package/src/parser/rules/block/parsing/attributes/scanner.ts +75 -0
- package/src/parser/rules/block/parsing/attributes/values.ts +26 -0
- package/src/parser/rules/block/parsing/block-item.ts +29 -0
- package/src/parser/rules/block/parsing/content.ts +127 -0
- package/src/parser/rules/block/parsing/end-condition.ts +51 -0
- package/src/parser/rules/block/parsing/inline-content.ts +105 -0
- package/src/parser/rules/block/parsing/inline-newline.ts +41 -0
- package/src/parser/rules/block/parsing/non-boundary.ts +24 -0
- package/src/parser/rules/block/parsing/rule-dispatch.ts +44 -0
- package/src/parser/rules/block/table/index.ts +80 -0
- package/src/parser/rules/block/table/pipe/cell-start.ts +69 -0
- package/src/parser/rules/block/table/pipe/cell.ts +106 -0
- package/src/parser/rules/block/table/pipe/index.ts +2 -0
- package/src/parser/rules/block/table/pipe/row.ts +88 -0
- package/src/parser/rules/block/table/pipe/tokens.ts +14 -0
- package/src/parser/rules/block/table/pipe/trim.ts +50 -0
- package/src/parser/rules/block/table-block/body.ts +79 -0
- package/src/parser/rules/block/table-block/cell-attributes.ts +33 -0
- package/src/parser/rules/block/table-block/cell-boundary.ts +99 -0
- package/src/parser/rules/block/table-block/cell-content/index.ts +88 -0
- package/src/parser/rules/block/table-block/cell-content/segments.ts +134 -0
- package/src/parser/rules/block/table-block/cell-newline.ts +47 -0
- package/src/parser/rules/block/table-block/cell.ts +64 -0
- package/src/parser/rules/block/table-block/index.ts +113 -0
- package/src/parser/rules/block/table-block/row-boundary.ts +75 -0
- package/src/parser/rules/block/table-block/structure.ts +80 -0
- package/src/parser/rules/block/tabview/body.ts +64 -0
- package/src/parser/rules/block/tabview/index.ts +90 -0
- package/src/parser/rules/block/tabview/open.ts +50 -0
- package/src/parser/rules/block/tabview/tab.ts +92 -0
- package/src/parser/rules/block/tabview/tags.ts +30 -0
- package/src/parser/rules/block/toc/element.ts +11 -0
- package/src/parser/rules/block/toc/index.ts +44 -0
- package/src/parser/rules/block/toc/open.ts +84 -0
- package/src/parser/rules/block/utils.ts +15 -0
- package/src/parser/rules/common/attribute-safety.ts +109 -0
- package/src/parser/rules/common/block-name.ts +33 -0
- package/src/parser/rules/common/index.ts +2 -0
- package/src/parser/rules/contracts/index.ts +3 -0
- package/src/parser/rules/contracts/parse-context.ts +38 -0
- package/src/parser/rules/contracts/rule.ts +43 -0
- package/src/parser/rules/contracts/scope.ts +31 -0
- package/src/parser/rules/index.ts +49 -0
- package/src/parser/rules/inline/anchor/attributes.ts +54 -0
- package/src/parser/rules/inline/anchor/child.ts +26 -0
- package/src/parser/rules/inline/anchor/close.ts +34 -0
- package/src/parser/rules/inline/anchor/content.ts +59 -0
- package/src/parser/rules/inline/anchor/index.ts +103 -0
- package/src/parser/rules/inline/anchor/newline.ts +26 -0
- package/src/parser/rules/inline/anchor/open.ts +47 -0
- package/src/parser/rules/inline/anchor/paragraph-strip.ts +14 -0
- package/src/parser/rules/inline/anchor/syntax.ts +40 -0
- package/src/parser/rules/inline/anchor-name/index.ts +38 -0
- package/src/parser/rules/inline/anchor-name/name.ts +39 -0
- package/src/parser/rules/inline/anchor-name/syntax.ts +46 -0
- package/src/parser/rules/inline/bibcite/element.ts +14 -0
- package/src/parser/rules/inline/bibcite/index.ts +34 -0
- package/src/parser/rules/inline/bibcite/syntax.ts +64 -0
- package/src/parser/rules/inline/bold.ts +49 -0
- package/src/parser/rules/inline/color/index.ts +35 -0
- package/src/parser/rules/inline/color/syntax.ts +69 -0
- package/src/parser/rules/inline/comment/consume.ts +31 -0
- package/src/parser/rules/inline/comment/index.ts +64 -0
- package/src/parser/rules/inline/equation-ref/element.ts +8 -0
- package/src/parser/rules/inline/equation-ref/index.ts +34 -0
- package/src/parser/rules/inline/equation-ref/syntax.ts +45 -0
- package/src/parser/rules/inline/expr/branch.ts +104 -0
- package/src/parser/rules/inline/expr/conditional-branch.ts +27 -0
- package/src/parser/rules/inline/expr/conditional.ts +80 -0
- package/src/parser/rules/inline/expr/depth.ts +25 -0
- package/src/parser/rules/inline/expr/elements.ts +39 -0
- package/src/parser/rules/inline/expr/index.ts +84 -0
- package/src/parser/rules/inline/expr/syntax.ts +45 -0
- package/src/parser/rules/inline/footnote/child.ts +22 -0
- package/src/parser/rules/inline/footnote/close.ts +33 -0
- package/src/parser/rules/inline/footnote/content.ts +54 -0
- package/src/parser/rules/inline/footnote/elements.ts +38 -0
- package/src/parser/rules/inline/footnote/index.ts +54 -0
- package/src/parser/rules/inline/footnote/newline.ts +27 -0
- package/src/parser/rules/inline/footnote/open.ts +38 -0
- package/src/parser/rules/inline/formatting/container.ts +50 -0
- package/src/parser/rules/inline/guillemet/index.ts +56 -0
- package/src/parser/rules/inline/guillemet/text.ts +11 -0
- package/src/parser/rules/inline/html/gate.ts +64 -0
- package/src/parser/rules/inline/html/index.ts +81 -0
- package/src/parser/rules/inline/html/open.ts +37 -0
- package/src/parser/rules/inline/image/attributes.ts +22 -0
- package/src/parser/rules/inline/image/body.ts +36 -0
- package/src/parser/rules/inline/image/index.ts +89 -0
- package/src/parser/rules/inline/image/open.ts +56 -0
- package/src/parser/rules/inline/image/source.ts +62 -0
- package/src/parser/rules/inline/image/syntax.ts +76 -0
- package/src/parser/rules/inline/index.ts +150 -0
- package/src/parser/rules/inline/italic.ts +46 -0
- package/src/parser/rules/inline/line-break/backslash.ts +58 -0
- package/src/parser/rules/inline/line-break/elements.ts +9 -0
- package/src/parser/rules/inline/line-break/index.ts +3 -0
- package/src/parser/rules/inline/line-break/newline.ts +82 -0
- package/src/parser/rules/inline/line-break/underscore.ts +45 -0
- package/src/parser/rules/inline/link-anchor.ts +72 -0
- package/src/parser/rules/inline/link-bracket/anchor.ts +3 -0
- package/src/parser/rules/inline/link-bracket/direct-url.ts +5 -0
- package/src/parser/rules/inline/link-bracket/parsed.ts +81 -0
- package/src/parser/rules/inline/link-bracket/parts.ts +64 -0
- package/src/parser/rules/inline/link-bracket/prefix.ts +15 -0
- package/src/parser/rules/inline/link-single.ts +73 -0
- package/src/parser/rules/inline/link-star.ts +72 -0
- package/src/parser/rules/inline/link-triple/fallback.ts +10 -0
- package/src/parser/rules/inline/link-triple/index.ts +62 -0
- package/src/parser/rules/inline/link-triple/interwiki.ts +11 -0
- package/src/parser/rules/inline/link-triple/label.ts +35 -0
- package/src/parser/rules/inline/link-triple/syntax.ts +72 -0
- package/src/parser/rules/inline/link-triple/target.ts +36 -0
- package/src/parser/rules/inline/math-inline/index.ts +40 -0
- package/src/parser/rules/inline/math-inline/syntax.ts +55 -0
- package/src/parser/rules/inline/monospace.ts +50 -0
- package/src/parser/rules/inline/parsing/block-boundary.ts +42 -0
- package/src/parser/rules/inline/parsing/block-start-predicates.ts +117 -0
- package/src/parser/rules/inline/parsing/collect.ts +23 -0
- package/src/parser/rules/inline/parsing/inline-content.ts +115 -0
- package/src/parser/rules/inline/parsing/paragraph-boundary.ts +47 -0
- package/src/parser/rules/inline/parsing/plain-text.ts +69 -0
- package/src/parser/rules/inline/parsing/preserved-line-break.ts +11 -0
- package/src/parser/rules/inline/parsing/rules.ts +34 -0
- package/src/parser/rules/inline/parsing/simple-token.ts +26 -0
- package/src/parser/rules/inline/raw/angle.ts +40 -0
- package/src/parser/rules/inline/raw/double-at.ts +78 -0
- package/src/parser/rules/inline/raw/index.ts +26 -0
- package/src/parser/rules/inline/raw/result.ts +26 -0
- package/src/parser/rules/inline/size/content.ts +65 -0
- package/src/parser/rules/inline/size/index.ts +55 -0
- package/src/parser/rules/inline/size/open.ts +43 -0
- package/src/parser/rules/inline/size/value.ts +45 -0
- package/src/parser/rules/inline/span/content.ts +97 -0
- package/src/parser/rules/inline/span/elements.ts +108 -0
- package/src/parser/rules/inline/span/index.ts +79 -0
- package/src/parser/rules/inline/span/newline.ts +50 -0
- package/src/parser/rules/inline/span/syntax.ts +70 -0
- package/src/parser/rules/inline/strikethrough/index.ts +60 -0
- package/src/parser/rules/inline/strikethrough/parse.ts +14 -0
- package/src/parser/rules/inline/strikethrough/syntax.ts +24 -0
- package/src/parser/rules/inline/subscript.ts +47 -0
- package/src/parser/rules/inline/superscript.ts +49 -0
- package/src/parser/rules/inline/text/element.ts +5 -0
- package/src/parser/rules/inline/text/index.ts +85 -0
- package/src/parser/rules/inline/underline/child.ts +26 -0
- package/src/parser/rules/inline/underline/content.ts +29 -0
- package/src/parser/rules/inline/underline/index.ts +84 -0
- package/src/parser/rules/inline/user/element.ts +11 -0
- package/src/parser/rules/inline/user/index.ts +34 -0
- package/src/parser/rules/inline/user/syntax.ts +67 -0
- package/src/parser/rules/inline/utils.ts +4 -0
- package/src/parser/rules/tokens.ts +106 -0
- package/src/parser/rules/types.ts +9 -0
- package/src/parser/toc.ts +130 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { ParseContext } from "../../types";
|
|
2
|
+
import { parseBlockName } from "../utils";
|
|
3
|
+
import { parseBibliographyEntry, type BibliographyEntry } from "./entries";
|
|
4
|
+
|
|
5
|
+
export interface BibliographyBodyResult {
|
|
6
|
+
entries: BibliographyEntry[];
|
|
7
|
+
consumed: number;
|
|
8
|
+
foundClose: boolean;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function collectBibliographyBody(
|
|
12
|
+
ctx: ParseContext,
|
|
13
|
+
startPos: number,
|
|
14
|
+
): BibliographyBodyResult {
|
|
15
|
+
const entries: BibliographyEntry[] = [];
|
|
16
|
+
let pos = startPos;
|
|
17
|
+
let consumed = 0;
|
|
18
|
+
|
|
19
|
+
while (pos < ctx.tokens.length) {
|
|
20
|
+
const token = ctx.tokens[pos];
|
|
21
|
+
if (!token || token.type === "EOF") {
|
|
22
|
+
break;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const closeConsumed = consumeBibliographyClose(ctx, pos);
|
|
26
|
+
if (closeConsumed !== null) {
|
|
27
|
+
return {
|
|
28
|
+
entries,
|
|
29
|
+
consumed: consumed + closeConsumed,
|
|
30
|
+
foundClose: true,
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (token.type === "WHITESPACE" || token.type === "NEWLINE") {
|
|
35
|
+
pos++;
|
|
36
|
+
consumed++;
|
|
37
|
+
continue;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
if (token.type === "COLON" && token.lineStart) {
|
|
41
|
+
const result = parseBibliographyEntry(ctx, pos);
|
|
42
|
+
if (result) {
|
|
43
|
+
entries.push(result.entry);
|
|
44
|
+
pos += result.consumed;
|
|
45
|
+
consumed += result.consumed;
|
|
46
|
+
continue;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
pos++;
|
|
51
|
+
consumed++;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return { entries, consumed, foundClose: false };
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function consumeBibliographyClose(ctx: ParseContext, startPos: number): number | null {
|
|
58
|
+
const openToken = ctx.tokens[startPos];
|
|
59
|
+
if (openToken?.type !== "BLOCK_END_OPEN") {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const closeNameResult = parseBlockName(ctx, startPos + 1);
|
|
64
|
+
if (closeNameResult?.name !== "bibliography") {
|
|
65
|
+
return null;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
let pos = startPos + 1 + closeNameResult.consumed;
|
|
69
|
+
let consumed = 1 + closeNameResult.consumed;
|
|
70
|
+
|
|
71
|
+
while (ctx.tokens[pos]?.type === "WHITESPACE") {
|
|
72
|
+
pos++;
|
|
73
|
+
consumed++;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (ctx.tokens[pos]?.type === "BLOCK_CLOSE") {
|
|
77
|
+
consumed++;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return consumed;
|
|
81
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { DefinitionListItem, Element } from "@wdprlib/ast";
|
|
2
|
+
import type { ParseContext } from "../../types";
|
|
3
|
+
import { parseBibliographyContent } from "./entry-content";
|
|
4
|
+
import { parseBibliographyKey } from "./entry-key";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Internal representation of a single bibliography entry parsed from
|
|
8
|
+
* the `: label : content` line(s) inside the bibliography block.
|
|
9
|
+
*/
|
|
10
|
+
export interface BibliographyEntry {
|
|
11
|
+
/** The identifier used in `((bibcite label))` references. */
|
|
12
|
+
label: string;
|
|
13
|
+
/** Parsed inline elements for the label portion (the key). */
|
|
14
|
+
key: Element[];
|
|
15
|
+
/** Parsed inline elements for the citation text. */
|
|
16
|
+
content: Element[];
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Parses one bibliography entry from the token stream.
|
|
21
|
+
*/
|
|
22
|
+
export function parseBibliographyEntry(
|
|
23
|
+
ctx: ParseContext,
|
|
24
|
+
startPos: number,
|
|
25
|
+
): { entry: BibliographyEntry; consumed: number } | null {
|
|
26
|
+
const keyResult = parseBibliographyKey(ctx, startPos);
|
|
27
|
+
if (!keyResult) {
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const contentResult = parseBibliographyContent(ctx, startPos + keyResult.consumed);
|
|
32
|
+
|
|
33
|
+
return {
|
|
34
|
+
entry: {
|
|
35
|
+
label: keyResult.label,
|
|
36
|
+
key: keyResult.key,
|
|
37
|
+
content: contentResult.content,
|
|
38
|
+
},
|
|
39
|
+
consumed: keyResult.consumed + contentResult.consumed,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function toDefinitionListItems(entries: BibliographyEntry[]): DefinitionListItem[] {
|
|
44
|
+
return entries.map((entry) => ({
|
|
45
|
+
key_string: entry.label,
|
|
46
|
+
key: entry.key,
|
|
47
|
+
value: entry.content,
|
|
48
|
+
}));
|
|
49
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { Element } from "@wdprlib/ast";
|
|
2
|
+
import type { ParseContext } from "../../types";
|
|
3
|
+
import { parseInlineUntil } from "../../inline/utils";
|
|
4
|
+
import { parseBlockName } from "../utils";
|
|
5
|
+
|
|
6
|
+
export interface BibliographyContentResult {
|
|
7
|
+
content: Element[];
|
|
8
|
+
consumed: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function parseBibliographyContent(
|
|
12
|
+
ctx: ParseContext,
|
|
13
|
+
startPos: number,
|
|
14
|
+
): BibliographyContentResult {
|
|
15
|
+
const content: Element[] = [];
|
|
16
|
+
let pos = startPos;
|
|
17
|
+
let consumed = 0;
|
|
18
|
+
|
|
19
|
+
while (ctx.tokens[pos]?.type === "WHITESPACE") {
|
|
20
|
+
pos++;
|
|
21
|
+
consumed++;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
while (pos < ctx.tokens.length) {
|
|
25
|
+
const token = ctx.tokens[pos];
|
|
26
|
+
if (!token || token.type === "EOF") {
|
|
27
|
+
break;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
if (token.type === "BLOCK_END_OPEN") {
|
|
31
|
+
const closeNameResult = parseBlockName(ctx, pos + 1);
|
|
32
|
+
if (closeNameResult?.name === "bibliography") {
|
|
33
|
+
break;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (token.type === "NEWLINE") {
|
|
38
|
+
const nextToken = ctx.tokens[pos + 1];
|
|
39
|
+
if (nextToken?.type === "COLON" && nextToken.lineStart) {
|
|
40
|
+
pos++;
|
|
41
|
+
consumed++;
|
|
42
|
+
break;
|
|
43
|
+
}
|
|
44
|
+
if (nextToken?.type === "BLOCK_END_OPEN") {
|
|
45
|
+
pos++;
|
|
46
|
+
consumed++;
|
|
47
|
+
break;
|
|
48
|
+
}
|
|
49
|
+
if (nextToken?.type === "NEWLINE" || !nextToken || nextToken.type === "EOF") {
|
|
50
|
+
pos++;
|
|
51
|
+
consumed++;
|
|
52
|
+
break;
|
|
53
|
+
}
|
|
54
|
+
content.push({ element: "line-break" });
|
|
55
|
+
pos++;
|
|
56
|
+
consumed++;
|
|
57
|
+
continue;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const inlineCtx: ParseContext = { ...ctx, pos };
|
|
61
|
+
const result = parseInlineUntil(inlineCtx, "NEWLINE");
|
|
62
|
+
if (result.elements.length > 0) {
|
|
63
|
+
content.push(...result.elements);
|
|
64
|
+
pos += result.consumed;
|
|
65
|
+
consumed += result.consumed;
|
|
66
|
+
} else {
|
|
67
|
+
pos++;
|
|
68
|
+
consumed++;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
return { content, consumed };
|
|
73
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import type { Element } from "@wdprlib/ast";
|
|
2
|
+
import type { ParseContext } from "../../types";
|
|
3
|
+
|
|
4
|
+
export interface BibliographyKeyResult {
|
|
5
|
+
label: string;
|
|
6
|
+
key: Element[];
|
|
7
|
+
consumed: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export function parseBibliographyKey(
|
|
11
|
+
ctx: ParseContext,
|
|
12
|
+
startPos: number,
|
|
13
|
+
): BibliographyKeyResult | null {
|
|
14
|
+
let pos = startPos;
|
|
15
|
+
let consumed = 0;
|
|
16
|
+
|
|
17
|
+
const colonToken = ctx.tokens[pos];
|
|
18
|
+
if (!colonToken || colonToken.type !== "COLON" || !colonToken.lineStart) {
|
|
19
|
+
return null;
|
|
20
|
+
}
|
|
21
|
+
pos++;
|
|
22
|
+
consumed++;
|
|
23
|
+
|
|
24
|
+
const whitespaceAfterColon = ctx.tokens[pos];
|
|
25
|
+
if (!whitespaceAfterColon || whitespaceAfterColon.type !== "WHITESPACE") {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
while (ctx.tokens[pos]?.type === "WHITESPACE") {
|
|
30
|
+
pos++;
|
|
31
|
+
consumed++;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
let label = "";
|
|
35
|
+
let foundSecondColon = false;
|
|
36
|
+
const key: Element[] = [];
|
|
37
|
+
|
|
38
|
+
while (pos < ctx.tokens.length) {
|
|
39
|
+
const token = ctx.tokens[pos];
|
|
40
|
+
if (!token || token.type === "NEWLINE" || token.type === "EOF") {
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
if (token.type === "COLON") {
|
|
44
|
+
foundSecondColon = true;
|
|
45
|
+
pos++;
|
|
46
|
+
consumed++;
|
|
47
|
+
break;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
label += token.value;
|
|
51
|
+
key.push({ element: "text", data: token.value });
|
|
52
|
+
pos++;
|
|
53
|
+
consumed++;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (!foundSecondColon) {
|
|
57
|
+
return null;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
trimTrailingWhitespaceText(key);
|
|
61
|
+
|
|
62
|
+
return {
|
|
63
|
+
label: label.trim(),
|
|
64
|
+
key,
|
|
65
|
+
consumed,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function trimTrailingWhitespaceText(nodes: Element[]): void {
|
|
70
|
+
while (nodes.length > 0) {
|
|
71
|
+
const lastNode = nodes[nodes.length - 1];
|
|
72
|
+
if (
|
|
73
|
+
lastNode &&
|
|
74
|
+
lastNode.element === "text" &&
|
|
75
|
+
typeof lastNode.data === "string" &&
|
|
76
|
+
lastNode.data.trim() === ""
|
|
77
|
+
) {
|
|
78
|
+
nodes.pop();
|
|
79
|
+
} else {
|
|
80
|
+
break;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Block rule for the Wikidot bibliography block: `[[bibliography]] ... [[/bibliography]]`.
|
|
4
|
+
*
|
|
5
|
+
* A bibliography block holds labelled citation entries in a definition-list
|
|
6
|
+
* format. Each entry follows the pattern:
|
|
7
|
+
*
|
|
8
|
+
* ```
|
|
9
|
+
* : label : Citation description text
|
|
10
|
+
* ```
|
|
11
|
+
*
|
|
12
|
+
* At render time the entries are cross-referenced with inline `((bibcite label))`
|
|
13
|
+
* markers that appear elsewhere in the document. The parser stores the entries
|
|
14
|
+
* in the AST as a `bibliography-block` element whose `entries` field is an
|
|
15
|
+
* array of {@link DefinitionListItem} objects.
|
|
16
|
+
*
|
|
17
|
+
* Optional attributes on the opening tag:
|
|
18
|
+
* - `title` -- custom heading for the bibliography section.
|
|
19
|
+
* - `hide` -- when `"true"` or empty string, hides the block from output.
|
|
20
|
+
*
|
|
21
|
+
* If no closing `[[/bibliography]]` tag is found, the rule fails to avoid
|
|
22
|
+
* accidentally consuming the rest of the document.
|
|
23
|
+
*
|
|
24
|
+
* @module
|
|
25
|
+
*/
|
|
26
|
+
import type { Element } from "@wdprlib/ast";
|
|
27
|
+
import type { BlockRule, ParseContext, RuleResult } from "../../types";
|
|
28
|
+
import { currentToken } from "../../types";
|
|
29
|
+
import { collectBibliographyBody } from "./body";
|
|
30
|
+
import { toDefinitionListItems } from "./entries";
|
|
31
|
+
import { parseBibliographyOpen } from "./open";
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Block rule for Wikidot `[[bibliography]]...[[/bibliography]]`.
|
|
35
|
+
*
|
|
36
|
+
* Parsing strategy:
|
|
37
|
+
* 1. Match BLOCK_OPEN + block name "bibliography".
|
|
38
|
+
* 2. Parse optional attributes (`title`, `hide`).
|
|
39
|
+
* 3. Consume the closing `]]` and optional newline.
|
|
40
|
+
* 4. Loop over the body, parsing each `: label : content` line via
|
|
41
|
+
* `parseBibliographyEntry()`.
|
|
42
|
+
* 5. Require and consume `[[/bibliography]]`.
|
|
43
|
+
* 6. Convert entries into {@link DefinitionListItem} format and emit
|
|
44
|
+
* a `bibliography-block` element.
|
|
45
|
+
*/
|
|
46
|
+
export const bibliographyRule: BlockRule = {
|
|
47
|
+
name: "bibliography",
|
|
48
|
+
startTokens: ["BLOCK_OPEN"],
|
|
49
|
+
requiresLineStart: false,
|
|
50
|
+
|
|
51
|
+
parse(ctx: ParseContext): RuleResult<Element> {
|
|
52
|
+
const openToken = currentToken(ctx);
|
|
53
|
+
if (openToken.type !== "BLOCK_OPEN") {
|
|
54
|
+
return { success: false };
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const openResult = parseBibliographyOpen(ctx, ctx.pos);
|
|
58
|
+
if (!openResult) {
|
|
59
|
+
return { success: false };
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const bodyResult = collectBibliographyBody(ctx, openResult.pos);
|
|
63
|
+
const consumed = openResult.consumed + bodyResult.consumed;
|
|
64
|
+
|
|
65
|
+
if (!bodyResult.foundClose) {
|
|
66
|
+
ctx.diagnostics.push({
|
|
67
|
+
severity: "warning",
|
|
68
|
+
code: "unclosed-block",
|
|
69
|
+
message: "Missing closing tag [[/bibliography]] for [[bibliography]]",
|
|
70
|
+
position: openToken.position,
|
|
71
|
+
});
|
|
72
|
+
return { success: false };
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
return {
|
|
76
|
+
success: true,
|
|
77
|
+
elements: [
|
|
78
|
+
{
|
|
79
|
+
element: "bibliography-block",
|
|
80
|
+
data: {
|
|
81
|
+
entries: toDefinitionListItems(bodyResult.entries),
|
|
82
|
+
title: openResult.title,
|
|
83
|
+
hide: openResult.hide,
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
consumed,
|
|
88
|
+
};
|
|
89
|
+
},
|
|
90
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { ParseContext } from "../../types";
|
|
2
|
+
import { parseAttributes, parseBlockName } from "../utils";
|
|
3
|
+
|
|
4
|
+
export interface BibliographyOpenResult {
|
|
5
|
+
title: string | null;
|
|
6
|
+
hide: boolean;
|
|
7
|
+
pos: number;
|
|
8
|
+
consumed: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function parseBibliographyOpen(
|
|
12
|
+
ctx: ParseContext,
|
|
13
|
+
startPos: number,
|
|
14
|
+
): BibliographyOpenResult | null {
|
|
15
|
+
let pos = startPos;
|
|
16
|
+
let consumed = 0;
|
|
17
|
+
|
|
18
|
+
if (ctx.tokens[pos]?.type !== "BLOCK_OPEN") {
|
|
19
|
+
return null;
|
|
20
|
+
}
|
|
21
|
+
pos++;
|
|
22
|
+
consumed++;
|
|
23
|
+
|
|
24
|
+
const nameResult = parseBlockName(ctx, pos);
|
|
25
|
+
if (!nameResult || nameResult.name !== "bibliography") {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
pos += nameResult.consumed;
|
|
30
|
+
consumed += nameResult.consumed;
|
|
31
|
+
|
|
32
|
+
const attrResult = parseAttributes(ctx, pos);
|
|
33
|
+
pos += attrResult.consumed;
|
|
34
|
+
consumed += attrResult.consumed;
|
|
35
|
+
|
|
36
|
+
if (ctx.tokens[pos]?.type !== "BLOCK_CLOSE") {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
pos++;
|
|
40
|
+
consumed++;
|
|
41
|
+
|
|
42
|
+
if (ctx.tokens[pos]?.type === "NEWLINE") {
|
|
43
|
+
pos++;
|
|
44
|
+
consumed++;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
title: attrResult.attrs.title ?? null,
|
|
49
|
+
hide: attrResult.attrs.hide === "true" || attrResult.attrs.hide === "",
|
|
50
|
+
pos,
|
|
51
|
+
consumed,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import type { ListItem } from "@wdprlib/ast";
|
|
2
|
+
import type { ParseContext } from "../../types";
|
|
3
|
+
import { getCandidateInlineRules } from "../../inline/utils";
|
|
4
|
+
import {
|
|
5
|
+
appendBareParagraphElements,
|
|
6
|
+
appendBareParagraphLineBreakIfNeeded,
|
|
7
|
+
appendBareParagraphText,
|
|
8
|
+
createBareParagraphState,
|
|
9
|
+
flushBareParagraph,
|
|
10
|
+
unwrapSingleBareParagraph,
|
|
11
|
+
} from "./bare-paragraph";
|
|
12
|
+
import { isLiOpen, isListClose, isNestedListOpen, type ListBlockType } from "./tags";
|
|
13
|
+
|
|
14
|
+
export interface BareListContentResult {
|
|
15
|
+
item: ListItem | null;
|
|
16
|
+
consumed: number;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function parseBareListContent(
|
|
20
|
+
ctx: ParseContext,
|
|
21
|
+
startPos: number,
|
|
22
|
+
listType: ListBlockType,
|
|
23
|
+
): BareListContentResult {
|
|
24
|
+
const paragraphState = createBareParagraphState();
|
|
25
|
+
let consumed = 0;
|
|
26
|
+
let pos = startPos;
|
|
27
|
+
|
|
28
|
+
while (pos < ctx.tokens.length) {
|
|
29
|
+
const token = ctx.tokens[pos];
|
|
30
|
+
if (!token || token.type === "EOF") break;
|
|
31
|
+
|
|
32
|
+
if (token.type === "NEWLINE") {
|
|
33
|
+
pos++;
|
|
34
|
+
consumed++;
|
|
35
|
+
|
|
36
|
+
let consecutiveNewlines = 1;
|
|
37
|
+
while (ctx.tokens[pos]?.type === "NEWLINE") {
|
|
38
|
+
pos++;
|
|
39
|
+
consumed++;
|
|
40
|
+
consecutiveNewlines++;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
while (ctx.tokens[pos]?.type === "WHITESPACE" && ctx.tokens[pos]?.lineStart) {
|
|
44
|
+
pos++;
|
|
45
|
+
consumed++;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (isListBoundary(ctx, pos, listType)) {
|
|
49
|
+
break;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if (consecutiveNewlines >= 2) {
|
|
53
|
+
flushBareParagraph(paragraphState);
|
|
54
|
+
} else {
|
|
55
|
+
appendBareParagraphLineBreakIfNeeded(paragraphState);
|
|
56
|
+
}
|
|
57
|
+
continue;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
if (isListBoundary(ctx, pos, listType)) {
|
|
61
|
+
break;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
let matched = false;
|
|
65
|
+
const inlineCtx: ParseContext = { ...ctx, pos };
|
|
66
|
+
for (const rule of getCandidateInlineRules(ctx.inlineRules, token.type)) {
|
|
67
|
+
const result = rule.parse(inlineCtx);
|
|
68
|
+
if (result.success) {
|
|
69
|
+
appendBareParagraphElements(paragraphState, result.elements);
|
|
70
|
+
consumed += result.consumed;
|
|
71
|
+
pos += result.consumed;
|
|
72
|
+
matched = true;
|
|
73
|
+
break;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (!matched) {
|
|
78
|
+
appendBareParagraphText(paragraphState, token.value);
|
|
79
|
+
consumed++;
|
|
80
|
+
pos++;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
flushBareParagraph(paragraphState);
|
|
85
|
+
if (paragraphState.paragraphs.length === 0) {
|
|
86
|
+
return { item: null, consumed };
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return {
|
|
90
|
+
item: {
|
|
91
|
+
"item-type": "elements",
|
|
92
|
+
attributes: { _noMarker: "true" },
|
|
93
|
+
elements: unwrapSingleBareParagraph(paragraphState.paragraphs),
|
|
94
|
+
},
|
|
95
|
+
consumed,
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
function isListBoundary(ctx: ParseContext, pos: number, listType: ListBlockType): boolean {
|
|
100
|
+
return (
|
|
101
|
+
isListClose(ctx, pos, listType) ||
|
|
102
|
+
isLiOpen(ctx, pos) !== null ||
|
|
103
|
+
isNestedListOpen(ctx, pos) !== null
|
|
104
|
+
);
|
|
105
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { Element } from "@wdprlib/ast";
|
|
2
|
+
|
|
3
|
+
export interface BareParagraphState {
|
|
4
|
+
paragraphs: Element[];
|
|
5
|
+
current: Element[];
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export function createBareParagraphState(): BareParagraphState {
|
|
9
|
+
return {
|
|
10
|
+
paragraphs: [],
|
|
11
|
+
current: [],
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export function appendBareParagraphElements(state: BareParagraphState, elements: Element[]): void {
|
|
16
|
+
state.current.push(...elements);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function appendBareParagraphText(state: BareParagraphState, text: string): void {
|
|
20
|
+
state.current.push({ element: "text", data: text });
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function appendBareParagraphLineBreakIfNeeded(state: BareParagraphState): void {
|
|
24
|
+
if (state.current.length > 0) {
|
|
25
|
+
state.current.push({ element: "line-break" });
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function flushBareParagraph(state: BareParagraphState): void {
|
|
30
|
+
if (state.current.length === 0) return;
|
|
31
|
+
|
|
32
|
+
while (
|
|
33
|
+
state.current.length > 0 &&
|
|
34
|
+
state.current[state.current.length - 1]?.element === "line-break"
|
|
35
|
+
) {
|
|
36
|
+
state.current.pop();
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (state.current.length > 0) {
|
|
40
|
+
state.paragraphs.push({
|
|
41
|
+
element: "container",
|
|
42
|
+
data: {
|
|
43
|
+
type: "paragraph",
|
|
44
|
+
attributes: {},
|
|
45
|
+
elements: state.current,
|
|
46
|
+
},
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
state.current = [];
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function unwrapSingleBareParagraph(elements: Element[]): Element[] {
|
|
53
|
+
if (elements.length !== 1) return elements;
|
|
54
|
+
|
|
55
|
+
const first = elements[0];
|
|
56
|
+
if (first?.element !== "container" || first.data.type !== "paragraph") {
|
|
57
|
+
return elements;
|
|
58
|
+
}
|
|
59
|
+
return first.data.elements;
|
|
60
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Block rule for the explicit list syntax: `[[ul]]`/`[[ol]]` with `[[li]]` items.
|
|
4
|
+
*
|
|
5
|
+
* Wikidot supports two kinds of lists: the lightweight marker syntax
|
|
6
|
+
* handled by `list.ts`, and the block-level syntax handled here.
|
|
7
|
+
*
|
|
8
|
+
* @module
|
|
9
|
+
*/
|
|
10
|
+
import type { Element } from "@wdprlib/ast";
|
|
11
|
+
import type { BlockRule, ParseContext, RuleResult } from "../../types";
|
|
12
|
+
import { currentToken } from "../../types";
|
|
13
|
+
import { parseListBlock } from "./list-block";
|
|
14
|
+
import { isNestedListOpen } from "./tags";
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Block rule for Wikidot explicit list syntax (`[[ul]]`/`[[ol]]`).
|
|
18
|
+
*
|
|
19
|
+
* The entry point verifies that the BLOCK_OPEN is followed by the name
|
|
20
|
+
* `"ul"` or `"ol"`, then delegates to `parseListBlock()`. On success
|
|
21
|
+
* a trailing `<br />` element is appended, matching Wikidot's rendering.
|
|
22
|
+
*/
|
|
23
|
+
export const blockListRule: BlockRule = {
|
|
24
|
+
name: "block-list",
|
|
25
|
+
startTokens: ["BLOCK_OPEN"],
|
|
26
|
+
requiresLineStart: false,
|
|
27
|
+
|
|
28
|
+
parse(ctx: ParseContext): RuleResult<Element> {
|
|
29
|
+
const openToken = currentToken(ctx);
|
|
30
|
+
if (openToken.type !== "BLOCK_OPEN") {
|
|
31
|
+
return { success: false };
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const listOpen = isNestedListOpen(ctx, ctx.pos);
|
|
35
|
+
if (!listOpen) {
|
|
36
|
+
return { success: false };
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const result = parseListBlock(ctx, ctx.pos, listOpen.type);
|
|
40
|
+
|
|
41
|
+
if (!result) {
|
|
42
|
+
return { success: false };
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
return {
|
|
46
|
+
success: true,
|
|
47
|
+
elements: [result.element, { element: "line-break" }],
|
|
48
|
+
consumed: result.consumed,
|
|
49
|
+
};
|
|
50
|
+
},
|
|
51
|
+
};
|