@wdprlib/parser 4.4.0 → 5.1.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 +400 -175
- package/dist/index.d.cts +16 -13
- package/dist/index.d.ts +16 -13
- package/dist/index.js +388 -161
- package/package.json +2 -2
- package/src/index.ts +2 -0
- package/src/parser/parse/context.ts +7 -2
- package/src/parser/parse/index.ts +21 -3
- package/src/parser/parse/parser.ts +37 -28
- package/src/parser/preprocess/expr/index.ts +26 -0
- package/src/parser/preprocess/utils/raw-regions.ts +16 -7
- package/src/parser/rules/block/include/index.ts +20 -2
- package/src/parser/rules/block/module/include/resolve/index.ts +28 -0
- package/src/parser/rules/block/module/include/resolve/iterate.ts +28 -4
- package/src/parser/rules/block/module/include/scanner.ts +58 -1
- package/src/parser/rules/block/module/index.ts +2 -0
- package/src/parser/rules/block/module/listpages/index.ts +2 -0
- package/src/parser/rules/block/module/listpages/selectors.ts +64 -0
- package/src/parser/rules/block/module/listpages/types/external-data.ts +22 -0
- package/src/parser/rules/contracts/parse-context.ts +2 -0
- package/src/pipeline/process.ts +118 -34
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Position as Position2, Point, Version as Version2, Element as Element8, SyntaxTree as SyntaxTree5, ContainerType, ContainerData, AttributeMap, VariableMap, Alignment, LinkType, LinkLocation, LinkLabel, PageRef as
|
|
1
|
+
import { Position as Position2, Point, Version as Version2, Element as Element8, SyntaxTree as SyntaxTree5, ContainerType, ContainerData, AttributeMap, VariableMap, Alignment, LinkType, LinkLocation, LinkLabel, PageRef as PageRef7, ImageSource, FloatAlignment, ListType, ListItem, ListData, CodeBlockData as CodeBlockData2, TabData, TableCell, TableRow, TableData, DefinitionListItem, Module as Module5, CollapsibleData, ClearFloat, AnchorTarget, HeaderType, AlignType, HeadingLevel, Heading, DateItem, Embed, TocEntry as TocEntry2, GallerySize, GalleryOrder, GalleryItem, GalleryContent, GalleryData, Diagnostic as Diagnostic4, DiagnosticSeverity, ParseResult as ParseResult4 } from "@wdprlib/ast";
|
|
2
2
|
import { createPoint, createPosition, text, container, paragraph, bold, italics, heading, lineBreak, horizontalRule, link, list, listItemElements, listItemSubList } from "@wdprlib/ast";
|
|
3
3
|
import { WikitextMode, WikitextSettings as WikitextSettings5 } from "@wdprlib/ast";
|
|
4
4
|
import { createSettings, DEFAULT_SETTINGS } from "@wdprlib/ast";
|
|
@@ -212,11 +212,6 @@ declare class Parser {
|
|
|
212
212
|
* @since 2.0.0
|
|
213
213
|
*/
|
|
214
214
|
parse(): ParseResult;
|
|
215
|
-
private isAtEnd;
|
|
216
|
-
private currentToken;
|
|
217
|
-
private eofToken;
|
|
218
|
-
private skipWhitespace;
|
|
219
|
-
private parseBlock;
|
|
220
215
|
}
|
|
221
216
|
/**
|
|
222
217
|
* Parse a Wikidot markup string into an AST with diagnostics.
|
|
@@ -232,8 +227,8 @@ declare class Parser {
|
|
|
232
227
|
*/
|
|
233
228
|
declare function parse(source: string, options?: ParserOptions): ParseResult2;
|
|
234
229
|
import { WikitextPageContext as WikitextPageContext2 } from "@wdprlib/ast";
|
|
235
|
-
import { Diagnostic, PageRef as
|
|
236
|
-
import { PageRef as
|
|
230
|
+
import { Diagnostic, PageRef as PageRef5, SyntaxTree, WikitextPageContext, WikitextSettings as WikitextSettings3 } from "@wdprlib/ast";
|
|
231
|
+
import { PageRef as PageRef4, WikitextSettings as WikitextSettings2 } from "@wdprlib/ast";
|
|
237
232
|
interface IncludeAssignment {
|
|
238
233
|
key: string;
|
|
239
234
|
value: string;
|
|
@@ -246,7 +241,7 @@ interface IncludeAssignment {
|
|
|
246
241
|
* Implementations should validate and sanitize page references before
|
|
247
242
|
* using them in database queries or file system access.
|
|
248
243
|
*/
|
|
249
|
-
type IncludeFetcher = (pageRef:
|
|
244
|
+
type IncludeFetcher = (pageRef: PageRef4) => string | null;
|
|
250
245
|
/**
|
|
251
246
|
* Async callback to fetch page content for include resolution.
|
|
252
247
|
* Returns a promise of the wikitext source, or null if the page does not exist.
|
|
@@ -255,7 +250,7 @@ type IncludeFetcher = (pageRef: PageRef2) => string | null;
|
|
|
255
250
|
* Implementations should validate and sanitize page references before
|
|
256
251
|
* using them in database queries or file system access.
|
|
257
252
|
*/
|
|
258
|
-
type AsyncIncludeFetcher = (pageRef:
|
|
253
|
+
type AsyncIncludeFetcher = (pageRef: PageRef4) => Promise<string | null>;
|
|
259
254
|
/**
|
|
260
255
|
* Options for resolveIncludes / resolveIncludesAsync.
|
|
261
256
|
*/
|
|
@@ -280,7 +275,7 @@ interface ResolveIncludesOptions {
|
|
|
280
275
|
*/
|
|
281
276
|
interface IncludeReference {
|
|
282
277
|
/** Target page reference parsed from the directive. */
|
|
283
|
-
location:
|
|
278
|
+
location: PageRef4;
|
|
284
279
|
/** Variable assignments parsed from the directive, preserving source order. */
|
|
285
280
|
assignments: IncludeAssignment[];
|
|
286
281
|
/** Index of the opening `[[`. */
|
|
@@ -674,6 +669,8 @@ interface PageData {
|
|
|
674
669
|
ratingPercent?: number;
|
|
675
670
|
revisions: number;
|
|
676
671
|
}
|
|
672
|
+
type PageDataInput = Pick<PageData, "fullname" | "title" | "createdAt" | "updatedAt" | "tags"> & Partial<Omit<PageData, "fullname" | "title" | "createdAt" | "updatedAt" | "tags">>;
|
|
673
|
+
declare function definePageData(input: PageDataInput): PageData;
|
|
677
674
|
/**
|
|
678
675
|
* Site context information.
|
|
679
676
|
*/
|
|
@@ -834,7 +831,7 @@ interface ProcessWikitextCallbackContext<TPage extends WikitextPageContext> {
|
|
|
834
831
|
settings: WikitextSettings3;
|
|
835
832
|
}
|
|
836
833
|
interface ProcessWikitextDataProvider<TPage extends WikitextPageContext> {
|
|
837
|
-
fetchInclude?: (pageRef:
|
|
834
|
+
fetchInclude?: (pageRef: PageRef5, context: ProcessWikitextCallbackContext<TPage>) => Promise<string | null>;
|
|
838
835
|
fetchListPages?: (query: NormalizedListPagesQuery, requirement: ListPagesDataRequirement, context: ProcessWikitextCallbackContext<TPage>) => Promise<ListPagesExternalData | null | undefined>;
|
|
839
836
|
fetchListUsers?: (requirement: ListUsersDataRequirement, context: ProcessWikitextCallbackContext<TPage>) => Promise<ListUsersExternalData | null | undefined>;
|
|
840
837
|
fetchTagCloud?: (requirement: TagCloudDataRequirement, context: ProcessWikitextCallbackContext<TPage>) => Promise<TagCloudExternalData | null | undefined>;
|
|
@@ -967,6 +964,12 @@ interface ExtractionResult {
|
|
|
967
964
|
* @returns Extraction result containing requirements and compiled templates
|
|
968
965
|
*/
|
|
969
966
|
declare function extractDataRequirements(ast: SyntaxTree3): ExtractionResult;
|
|
967
|
+
type SelectorPage = Pick<PageData, "category" | "tags" | "hiddenTags">;
|
|
968
|
+
type CurrentPage = {
|
|
969
|
+
category: string;
|
|
970
|
+
tags: readonly string[];
|
|
971
|
+
};
|
|
972
|
+
declare function matchesListPagesSelectors(page: SelectorPage, query: Pick<NormalizedListPagesQuery, "category" | "tags">, currentPage: CurrentPage): boolean;
|
|
970
973
|
/**
|
|
971
974
|
* Compile a ListPages template string into an executable function.
|
|
972
975
|
*
|
|
@@ -1192,4 +1195,4 @@ interface ResolveOptions {
|
|
|
1192
1195
|
*/
|
|
1193
1196
|
declare function resolveModules(ast: SyntaxTree4, dataProvider: DataProvider, options: ResolveOptions): Promise<SyntaxTree4>;
|
|
1194
1197
|
import { STYLE_SLOT_PREFIX } from "@wdprlib/ast";
|
|
1195
|
-
export { tokenize, text, resolveTagCloud, resolveModules, resolveListUsers, resolveIncludesWithTrace, resolveIncludesAsyncWithTrace, resolveIncludesAsync, resolveIncludes, processWikitext, preprocessIftags, parseTags, parseParent, parseOrder, parseNumericSelector, parseDateSelector, parseCategory, parse, paragraph, normalizeQuery, listItemSubList, listItemElements, list, link, lineBreak, italics, isTagCloudModule, isListUsersModule, horizontalRule, heading, extractListUsersVariables, extractIncludeReferences, extractDataRequirements, createToken, createSettings, createPosition, createPoint, container, compileTemplate, compileListUsersTemplate, bold, WikitextSettings5 as WikitextSettings, WikitextMode, Version2 as Version, VariableMap, VariableContext, UserInfo, TokenType, Token, TocEntry2 as TocEntry, TagCloudTagData, TagCloudModuleData, TagCloudExternalData, TagCloudDataRequirement, TagCloudDataFetcher, TableRow, TableData, TableCell, TabData, SyntaxTree5 as SyntaxTree, SiteContext, STYLE_SLOT_PREFIX, ResolveOptions, ResolveIncludesTraceResult, ResolveIncludesOptions, ProcessedWikitextDocument, ProcessWikitextOptions, ProcessWikitextDataProvider, ProcessWikitextCallbackContext, Position2 as Position, Point, ParserOptions, Parser, ParseResult4 as ParseResult, ParseFunction,
|
|
1198
|
+
export { tokenize, text, resolveTagCloud, resolveModules, resolveListUsers, resolveIncludesWithTrace, resolveIncludesAsyncWithTrace, resolveIncludesAsync, resolveIncludes, processWikitext, preprocessIftags, parseTags, parseParent, parseOrder, parseNumericSelector, parseDateSelector, parseCategory, parse, paragraph, normalizeQuery, matchesListPagesSelectors, listItemSubList, listItemElements, list, link, lineBreak, italics, isTagCloudModule, isListUsersModule, horizontalRule, heading, extractListUsersVariables, extractIncludeReferences, extractDataRequirements, definePageData, createToken, createSettings, createPosition, createPoint, container, compileTemplate, compileListUsersTemplate, bold, WikitextSettings5 as WikitextSettings, WikitextMode, Version2 as Version, VariableMap, VariableContext, UserInfo, TokenType, Token, TocEntry2 as TocEntry, TagCloudTagData, TagCloudModuleData, TagCloudExternalData, TagCloudDataRequirement, TagCloudDataFetcher, TableRow, TableData, TableCell, TabData, SyntaxTree5 as SyntaxTree, SiteContext, STYLE_SLOT_PREFIX, ResolveOptions, ResolveIncludesTraceResult, ResolveIncludesOptions, ProcessedWikitextDocument, ProcessWikitextOptions, ProcessWikitextDataProvider, ProcessWikitextCallbackContext, Position2 as Position, Point, ParserOptions, Parser, ParseResult4 as ParseResult, ParseFunction, PageRef7 as PageRef, PageData, NormalizedTags, NormalizedParent, NormalizedOrder, NormalizedNumericSelector, NormalizedListPagesQuery, NormalizedDateSelector, NormalizedCategory, ModuleSourceTransform, ModuleParseResult, Module5 as Module, ListUsersVariableContext, ListUsersVariable, ListUsersUserData, ListUsersExternalData, ListUsersDataRequirement, ListUsersDataFetcher, ListUsersCompiledTemplate, ListType, ListPagesVariable, ListPagesQuery, ListPagesExternalData, ListPagesDataRequirement, ListPagesDataFetcher, ListItem, ListData, LinkType, LinkLocation, LinkLabel, LexerOptions, Lexer, IncludeReference, IncludeIterationTrace, IncludeFetcher, IncludeDependency, ImageSource, HeadingLevel, Heading, HeaderType, GallerySize, GalleryOrder, GalleryItem, GalleryData, GalleryContent, FloatAlignment, ExtractionResult, Embed, Element8 as Element, DiagnosticSeverity, Diagnostic4 as Diagnostic, DefinitionListItem, DateItem, DataRequirements, DataProvider, DEFAULT_SETTINGS, ContainerType, ContainerData, CompiledTemplate, CollapsibleData, CodeBlockData2 as CodeBlockData, ClearFloat, AttributeMap, AsyncIncludeFetcher, AnchorTarget, Alignment, AlignType };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Position as Position2, Point, Version as Version2, Element as Element8, SyntaxTree as SyntaxTree5, ContainerType, ContainerData, AttributeMap, VariableMap, Alignment, LinkType, LinkLocation, LinkLabel, PageRef as
|
|
1
|
+
import { Position as Position2, Point, Version as Version2, Element as Element8, SyntaxTree as SyntaxTree5, ContainerType, ContainerData, AttributeMap, VariableMap, Alignment, LinkType, LinkLocation, LinkLabel, PageRef as PageRef7, ImageSource, FloatAlignment, ListType, ListItem, ListData, CodeBlockData as CodeBlockData2, TabData, TableCell, TableRow, TableData, DefinitionListItem, Module as Module5, CollapsibleData, ClearFloat, AnchorTarget, HeaderType, AlignType, HeadingLevel, Heading, DateItem, Embed, TocEntry as TocEntry2, GallerySize, GalleryOrder, GalleryItem, GalleryContent, GalleryData, Diagnostic as Diagnostic4, DiagnosticSeverity, ParseResult as ParseResult4 } from "@wdprlib/ast";
|
|
2
2
|
import { createPoint, createPosition, text, container, paragraph, bold, italics, heading, lineBreak, horizontalRule, link, list, listItemElements, listItemSubList } from "@wdprlib/ast";
|
|
3
3
|
import { WikitextMode, WikitextSettings as WikitextSettings5 } from "@wdprlib/ast";
|
|
4
4
|
import { createSettings, DEFAULT_SETTINGS } from "@wdprlib/ast";
|
|
@@ -212,11 +212,6 @@ declare class Parser {
|
|
|
212
212
|
* @since 2.0.0
|
|
213
213
|
*/
|
|
214
214
|
parse(): ParseResult;
|
|
215
|
-
private isAtEnd;
|
|
216
|
-
private currentToken;
|
|
217
|
-
private eofToken;
|
|
218
|
-
private skipWhitespace;
|
|
219
|
-
private parseBlock;
|
|
220
215
|
}
|
|
221
216
|
/**
|
|
222
217
|
* Parse a Wikidot markup string into an AST with diagnostics.
|
|
@@ -232,8 +227,8 @@ declare class Parser {
|
|
|
232
227
|
*/
|
|
233
228
|
declare function parse(source: string, options?: ParserOptions): ParseResult2;
|
|
234
229
|
import { WikitextPageContext as WikitextPageContext2 } from "@wdprlib/ast";
|
|
235
|
-
import { Diagnostic, PageRef as
|
|
236
|
-
import { PageRef as
|
|
230
|
+
import { Diagnostic, PageRef as PageRef5, SyntaxTree, WikitextPageContext, WikitextSettings as WikitextSettings3 } from "@wdprlib/ast";
|
|
231
|
+
import { PageRef as PageRef4, WikitextSettings as WikitextSettings2 } from "@wdprlib/ast";
|
|
237
232
|
interface IncludeAssignment {
|
|
238
233
|
key: string;
|
|
239
234
|
value: string;
|
|
@@ -246,7 +241,7 @@ interface IncludeAssignment {
|
|
|
246
241
|
* Implementations should validate and sanitize page references before
|
|
247
242
|
* using them in database queries or file system access.
|
|
248
243
|
*/
|
|
249
|
-
type IncludeFetcher = (pageRef:
|
|
244
|
+
type IncludeFetcher = (pageRef: PageRef4) => string | null;
|
|
250
245
|
/**
|
|
251
246
|
* Async callback to fetch page content for include resolution.
|
|
252
247
|
* Returns a promise of the wikitext source, or null if the page does not exist.
|
|
@@ -255,7 +250,7 @@ type IncludeFetcher = (pageRef: PageRef2) => string | null;
|
|
|
255
250
|
* Implementations should validate and sanitize page references before
|
|
256
251
|
* using them in database queries or file system access.
|
|
257
252
|
*/
|
|
258
|
-
type AsyncIncludeFetcher = (pageRef:
|
|
253
|
+
type AsyncIncludeFetcher = (pageRef: PageRef4) => Promise<string | null>;
|
|
259
254
|
/**
|
|
260
255
|
* Options for resolveIncludes / resolveIncludesAsync.
|
|
261
256
|
*/
|
|
@@ -280,7 +275,7 @@ interface ResolveIncludesOptions {
|
|
|
280
275
|
*/
|
|
281
276
|
interface IncludeReference {
|
|
282
277
|
/** Target page reference parsed from the directive. */
|
|
283
|
-
location:
|
|
278
|
+
location: PageRef4;
|
|
284
279
|
/** Variable assignments parsed from the directive, preserving source order. */
|
|
285
280
|
assignments: IncludeAssignment[];
|
|
286
281
|
/** Index of the opening `[[`. */
|
|
@@ -674,6 +669,8 @@ interface PageData {
|
|
|
674
669
|
ratingPercent?: number;
|
|
675
670
|
revisions: number;
|
|
676
671
|
}
|
|
672
|
+
type PageDataInput = Pick<PageData, "fullname" | "title" | "createdAt" | "updatedAt" | "tags"> & Partial<Omit<PageData, "fullname" | "title" | "createdAt" | "updatedAt" | "tags">>;
|
|
673
|
+
declare function definePageData(input: PageDataInput): PageData;
|
|
677
674
|
/**
|
|
678
675
|
* Site context information.
|
|
679
676
|
*/
|
|
@@ -834,7 +831,7 @@ interface ProcessWikitextCallbackContext<TPage extends WikitextPageContext> {
|
|
|
834
831
|
settings: WikitextSettings3;
|
|
835
832
|
}
|
|
836
833
|
interface ProcessWikitextDataProvider<TPage extends WikitextPageContext> {
|
|
837
|
-
fetchInclude?: (pageRef:
|
|
834
|
+
fetchInclude?: (pageRef: PageRef5, context: ProcessWikitextCallbackContext<TPage>) => Promise<string | null>;
|
|
838
835
|
fetchListPages?: (query: NormalizedListPagesQuery, requirement: ListPagesDataRequirement, context: ProcessWikitextCallbackContext<TPage>) => Promise<ListPagesExternalData | null | undefined>;
|
|
839
836
|
fetchListUsers?: (requirement: ListUsersDataRequirement, context: ProcessWikitextCallbackContext<TPage>) => Promise<ListUsersExternalData | null | undefined>;
|
|
840
837
|
fetchTagCloud?: (requirement: TagCloudDataRequirement, context: ProcessWikitextCallbackContext<TPage>) => Promise<TagCloudExternalData | null | undefined>;
|
|
@@ -967,6 +964,12 @@ interface ExtractionResult {
|
|
|
967
964
|
* @returns Extraction result containing requirements and compiled templates
|
|
968
965
|
*/
|
|
969
966
|
declare function extractDataRequirements(ast: SyntaxTree3): ExtractionResult;
|
|
967
|
+
type SelectorPage = Pick<PageData, "category" | "tags" | "hiddenTags">;
|
|
968
|
+
type CurrentPage = {
|
|
969
|
+
category: string;
|
|
970
|
+
tags: readonly string[];
|
|
971
|
+
};
|
|
972
|
+
declare function matchesListPagesSelectors(page: SelectorPage, query: Pick<NormalizedListPagesQuery, "category" | "tags">, currentPage: CurrentPage): boolean;
|
|
970
973
|
/**
|
|
971
974
|
* Compile a ListPages template string into an executable function.
|
|
972
975
|
*
|
|
@@ -1192,4 +1195,4 @@ interface ResolveOptions {
|
|
|
1192
1195
|
*/
|
|
1193
1196
|
declare function resolveModules(ast: SyntaxTree4, dataProvider: DataProvider, options: ResolveOptions): Promise<SyntaxTree4>;
|
|
1194
1197
|
import { STYLE_SLOT_PREFIX } from "@wdprlib/ast";
|
|
1195
|
-
export { tokenize, text, resolveTagCloud, resolveModules, resolveListUsers, resolveIncludesWithTrace, resolveIncludesAsyncWithTrace, resolveIncludesAsync, resolveIncludes, processWikitext, preprocessIftags, parseTags, parseParent, parseOrder, parseNumericSelector, parseDateSelector, parseCategory, parse, paragraph, normalizeQuery, listItemSubList, listItemElements, list, link, lineBreak, italics, isTagCloudModule, isListUsersModule, horizontalRule, heading, extractListUsersVariables, extractIncludeReferences, extractDataRequirements, createToken, createSettings, createPosition, createPoint, container, compileTemplate, compileListUsersTemplate, bold, WikitextSettings5 as WikitextSettings, WikitextMode, Version2 as Version, VariableMap, VariableContext, UserInfo, TokenType, Token, TocEntry2 as TocEntry, TagCloudTagData, TagCloudModuleData, TagCloudExternalData, TagCloudDataRequirement, TagCloudDataFetcher, TableRow, TableData, TableCell, TabData, SyntaxTree5 as SyntaxTree, SiteContext, STYLE_SLOT_PREFIX, ResolveOptions, ResolveIncludesTraceResult, ResolveIncludesOptions, ProcessedWikitextDocument, ProcessWikitextOptions, ProcessWikitextDataProvider, ProcessWikitextCallbackContext, Position2 as Position, Point, ParserOptions, Parser, ParseResult4 as ParseResult, ParseFunction,
|
|
1198
|
+
export { tokenize, text, resolveTagCloud, resolveModules, resolveListUsers, resolveIncludesWithTrace, resolveIncludesAsyncWithTrace, resolveIncludesAsync, resolveIncludes, processWikitext, preprocessIftags, parseTags, parseParent, parseOrder, parseNumericSelector, parseDateSelector, parseCategory, parse, paragraph, normalizeQuery, matchesListPagesSelectors, listItemSubList, listItemElements, list, link, lineBreak, italics, isTagCloudModule, isListUsersModule, horizontalRule, heading, extractListUsersVariables, extractIncludeReferences, extractDataRequirements, definePageData, createToken, createSettings, createPosition, createPoint, container, compileTemplate, compileListUsersTemplate, bold, WikitextSettings5 as WikitextSettings, WikitextMode, Version2 as Version, VariableMap, VariableContext, UserInfo, TokenType, Token, TocEntry2 as TocEntry, TagCloudTagData, TagCloudModuleData, TagCloudExternalData, TagCloudDataRequirement, TagCloudDataFetcher, TableRow, TableData, TableCell, TabData, SyntaxTree5 as SyntaxTree, SiteContext, STYLE_SLOT_PREFIX, ResolveOptions, ResolveIncludesTraceResult, ResolveIncludesOptions, ProcessedWikitextDocument, ProcessWikitextOptions, ProcessWikitextDataProvider, ProcessWikitextCallbackContext, Position2 as Position, Point, ParserOptions, Parser, ParseResult4 as ParseResult, ParseFunction, PageRef7 as PageRef, PageData, NormalizedTags, NormalizedParent, NormalizedOrder, NormalizedNumericSelector, NormalizedListPagesQuery, NormalizedDateSelector, NormalizedCategory, ModuleSourceTransform, ModuleParseResult, Module5 as Module, ListUsersVariableContext, ListUsersVariable, ListUsersUserData, ListUsersExternalData, ListUsersDataRequirement, ListUsersDataFetcher, ListUsersCompiledTemplate, ListType, ListPagesVariable, ListPagesQuery, ListPagesExternalData, ListPagesDataRequirement, ListPagesDataFetcher, ListItem, ListData, LinkType, LinkLocation, LinkLabel, LexerOptions, Lexer, IncludeReference, IncludeIterationTrace, IncludeFetcher, IncludeDependency, ImageSource, HeadingLevel, Heading, HeaderType, GallerySize, GalleryOrder, GalleryItem, GalleryData, GalleryContent, FloatAlignment, ExtractionResult, Embed, Element8 as Element, DiagnosticSeverity, Diagnostic4 as Diagnostic, DefinitionListItem, DateItem, DataRequirements, DataProvider, DEFAULT_SETTINGS, ContainerType, ContainerData, CompiledTemplate, CollapsibleData, CodeBlockData2 as CodeBlockData, ClearFloat, AttributeMap, AsyncIncludeFetcher, AnchorTarget, Alignment, AlignType };
|