@wdprlib/parser 5.2.0 → 5.4.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 +2211 -1182
- package/dist/index.d.cts +15 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +2211 -1182
- package/package.json +3 -2
- package/src/build-info.generated.ts +2 -2
- package/src/lexer/lexer.ts +34 -5
- package/src/lexer/quoted-string.ts +4 -4
- package/src/lexer/syntax-actions.ts +6 -1
- package/src/lexer/text-actions.ts +15 -1
- package/src/lexer/url-schemes.ts +78 -0
- package/src/parser/constants.ts +4 -0
- package/src/parser/parse/block.ts +1 -1
- package/src/parser/postprocess/divAdjacentParagraph.ts +23 -21
- package/src/parser/postprocess/spanStrip/merge.ts +8 -2
- package/src/parser/preprocess/typography.ts +25 -3
- package/src/parser/preprocess/utils/raw-regions.ts +59 -14
- package/src/parser/preprocess/whitespace/index.ts +8 -1
- package/src/parser/rules/block/bibliography/entry-content.ts +1 -1
- package/src/parser/rules/block/block-list/bare-content.ts +3 -1
- package/src/parser/rules/block/block-list/bare-paragraph.ts +7 -2
- package/src/parser/rules/block/block-list/item-content.ts +7 -3
- package/src/parser/rules/block/block-list/li-content.ts +8 -3
- package/src/parser/rules/block/block-list/li-item.ts +1 -1
- package/src/parser/rules/block/blockquote/build.ts +1 -1
- package/src/parser/rules/block/code/boundary.ts +76 -0
- package/src/parser/rules/block/code/content.ts +11 -40
- package/src/parser/rules/block/code/index.ts +8 -31
- package/src/parser/rules/block/code/open.ts +46 -0
- package/src/parser/rules/block/definition-list/item-key.ts +1 -1
- package/src/parser/rules/block/definition-list/item-value.ts +1 -1
- package/src/parser/rules/block/div/failed.ts +2 -0
- package/src/parser/rules/block/index.ts +3 -0
- package/src/parser/rules/block/list/line.ts +6 -3
- package/src/parser/rules/block/math/boundary.ts +104 -0
- package/src/parser/rules/block/math/index.ts +17 -57
- package/src/parser/rules/block/module/listpages/resolution/items.ts +2 -2
- package/src/parser/rules/block/module/listpages/resolution/pager.ts +43 -0
- package/src/parser/rules/block/module/listpages/resolution/wrapper.ts +6 -1
- package/src/parser/rules/block/module/listpages/resolve.ts +1 -1
- package/src/parser/rules/block/module/listpages/types/external-data.ts +13 -0
- package/src/parser/rules/block/module/listpages/url-resolution/params.ts +5 -4
- package/src/parser/rules/block/module/resolution/data-maps.ts +75 -3
- package/src/parser/rules/block/module/resolution/resolve-async.ts +12 -3
- package/src/parser/rules/block/note/boundary.ts +88 -0
- package/src/parser/rules/block/note/index.ts +37 -0
- package/src/parser/rules/block/paragraph/index.ts +12 -4
- package/src/parser/rules/block/paragraph/normalize.ts +6 -1
- package/src/parser/rules/block/parsing/block-item.ts +1 -1
- package/src/parser/rules/block/parsing/content.ts +1 -1
- package/src/parser/rules/block/parsing/inline-content.ts +6 -3
- package/src/parser/rules/block/table/pipe/cell.ts +3 -1
- package/src/parser/rules/block/table-block/cell-content/index.ts +1 -1
- package/src/parser/rules/block/table-block/cell-content/segments.ts +5 -2
- package/src/parser/rules/block/table-block/cell-newline.ts +2 -1
- package/src/parser/rules/contracts/rule.ts +4 -2
- package/src/parser/rules/contracts/scope.ts +2 -0
- package/src/parser/rules/inline/anchor/child.ts +8 -2
- package/src/parser/rules/inline/anchor/content.ts +3 -1
- package/src/parser/rules/inline/anchor/index.ts +4 -1
- package/src/parser/rules/inline/anchor/newline.ts +2 -1
- package/src/parser/rules/inline/autolink.ts +153 -0
- package/src/parser/rules/inline/button/attributes.ts +17 -0
- package/src/parser/rules/inline/button/index.ts +17 -0
- package/src/parser/rules/inline/button/syntax.ts +56 -0
- package/src/parser/rules/inline/date/index.ts +17 -0
- package/src/parser/rules/inline/date/syntax.ts +46 -0
- package/src/parser/rules/inline/email/candidates.ts +134 -0
- package/src/parser/rules/inline/email/index.ts +36 -0
- package/src/parser/rules/inline/email/scan.ts +76 -0
- package/src/parser/rules/inline/expr/branch.ts +3 -1
- package/src/parser/rules/inline/footnote/boundary.ts +56 -0
- package/src/parser/rules/inline/footnote/content.ts +29 -41
- package/src/parser/rules/inline/footnote/elements.ts +9 -34
- package/src/parser/rules/inline/footnote/index.ts +4 -1
- package/src/parser/rules/inline/formatting/close.ts +12 -0
- package/src/parser/rules/inline/index.ts +14 -0
- package/src/parser/rules/inline/line-break/newline.ts +8 -1
- package/src/parser/rules/inline/link-bracket/direct-url.ts +11 -3
- package/src/parser/rules/inline/link-bracket/parsed.ts +9 -4
- package/src/parser/rules/inline/link-bracket/parts.ts +14 -36
- package/src/parser/rules/inline/link-bracket/special-target.ts +9 -0
- package/src/parser/rules/inline/link-single.ts +9 -7
- package/src/parser/rules/inline/link-triple/index.ts +1 -0
- package/src/parser/rules/inline/link-triple/label.ts +7 -1
- package/src/parser/rules/inline/parsing/automatic-line-break.ts +35 -0
- package/src/parser/rules/inline/parsing/block-boundary.ts +2 -0
- package/src/parser/rules/inline/parsing/block-start-predicates.ts +10 -0
- package/src/parser/rules/inline/parsing/inline-content.ts +36 -6
- package/src/parser/rules/inline/parsing/plain-text.ts +7 -2
- package/src/parser/rules/inline/parsing/preserved-line-break.ts +13 -0
- package/src/parser/rules/inline/parsing/raw-tag.ts +19 -0
- package/src/parser/rules/inline/raw/angle.ts +2 -1
- package/src/parser/rules/inline/raw/end.ts +21 -1
- package/src/parser/rules/inline/size/content.ts +1 -1
- package/src/parser/rules/inline/size/value.ts +11 -0
- package/src/parser/rules/inline/social/index.ts +17 -0
- package/src/parser/rules/inline/social/syntax.ts +40 -0
- package/src/parser/rules/inline/span/content.ts +3 -1
- package/src/parser/rules/inline/span/newline.ts +2 -1
- package/src/parser/rules/opaque-probe.ts +58 -0
- package/src/pipeline/process.ts +8 -1
- package/src/parser/rules/block/math/content.ts +0 -54
- package/src/parser/rules/block/math/name.ts +0 -35
- package/src/parser/rules/inline/footnote/child.ts +0 -22
- package/src/parser/rules/inline/footnote/newline.ts +0 -27
package/dist/index.d.cts
CHANGED
|
@@ -103,6 +103,8 @@ declare class Lexer {
|
|
|
103
103
|
* consume content up to the next `"` or newline.
|
|
104
104
|
*/
|
|
105
105
|
private blockOpenerDepth;
|
|
106
|
+
private rawTagBounds;
|
|
107
|
+
private rawClosesExhausted;
|
|
106
108
|
constructor(source: string, options?: LexerOptions);
|
|
107
109
|
/**
|
|
108
110
|
* Tokenize the entire source
|
|
@@ -691,8 +693,21 @@ interface SiteContext {
|
|
|
691
693
|
*/
|
|
692
694
|
interface ListPagesExternalData {
|
|
693
695
|
pages: PageData[];
|
|
696
|
+
/** Matching items before offset and limit; use the same visibility filters as pages. */
|
|
694
697
|
totalCount: number;
|
|
695
698
|
site: SiteContext;
|
|
699
|
+
/** Filled by module resolution when a page URL is available. */
|
|
700
|
+
pagination?: {
|
|
701
|
+
currentPage: number;
|
|
702
|
+
perPage: number;
|
|
703
|
+
totalPages: number;
|
|
704
|
+
/** Actual fetch offset, including the module's starting offset. */
|
|
705
|
+
offset: number;
|
|
706
|
+
/** Total item limit after URL resolution, not the fetch batch size. */
|
|
707
|
+
limit?: number;
|
|
708
|
+
urlPath: string;
|
|
709
|
+
parameter: string;
|
|
710
|
+
};
|
|
696
711
|
}
|
|
697
712
|
/**
|
|
698
713
|
* Normalized tags selector.
|
package/dist/index.d.ts
CHANGED
|
@@ -103,6 +103,8 @@ declare class Lexer {
|
|
|
103
103
|
* consume content up to the next `"` or newline.
|
|
104
104
|
*/
|
|
105
105
|
private blockOpenerDepth;
|
|
106
|
+
private rawTagBounds;
|
|
107
|
+
private rawClosesExhausted;
|
|
106
108
|
constructor(source: string, options?: LexerOptions);
|
|
107
109
|
/**
|
|
108
110
|
* Tokenize the entire source
|
|
@@ -691,8 +693,21 @@ interface SiteContext {
|
|
|
691
693
|
*/
|
|
692
694
|
interface ListPagesExternalData {
|
|
693
695
|
pages: PageData[];
|
|
696
|
+
/** Matching items before offset and limit; use the same visibility filters as pages. */
|
|
694
697
|
totalCount: number;
|
|
695
698
|
site: SiteContext;
|
|
699
|
+
/** Filled by module resolution when a page URL is available. */
|
|
700
|
+
pagination?: {
|
|
701
|
+
currentPage: number;
|
|
702
|
+
perPage: number;
|
|
703
|
+
totalPages: number;
|
|
704
|
+
/** Actual fetch offset, including the module's starting offset. */
|
|
705
|
+
offset: number;
|
|
706
|
+
/** Total item limit after URL resolution, not the fetch batch size. */
|
|
707
|
+
limit?: number;
|
|
708
|
+
urlPath: string;
|
|
709
|
+
parameter: string;
|
|
710
|
+
};
|
|
696
711
|
}
|
|
697
712
|
/**
|
|
698
713
|
* Normalized tags selector.
|