@ox-content/vite-plugin 3.0.0-alpha.12 → 3.0.0-alpha.14
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 +175 -72
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +75 -38
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +75 -38
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +172 -71
- package/dist/index.mjs.map +1 -1
- package/dist/markdown-tables.cjs +70 -0
- package/dist/markdown-tables.cjs.map +1 -0
- package/dist/markdown-tables.d.cts +25 -0
- package/dist/markdown-tables.d.cts.map +1 -0
- package/dist/markdown-tables.d.mts +25 -0
- package/dist/markdown-tables.d.mts.map +1 -0
- package/dist/markdown-tables.mjs +66 -0
- package/dist/markdown-tables.mjs.map +1 -0
- package/dist/styles/all.css +1 -0
- package/dist/styles/core.css +16 -16
- package/dist/styles/markdown-tables.css +16 -0
- package/dist/styles/social.css +68 -15
- package/dist/styles/tabs.css +15 -15
- package/dist/theme-tokens.cjs +95 -0
- package/dist/theme-tokens.cjs.map +1 -0
- package/dist/theme-tokens.d.cts +75 -0
- package/dist/theme-tokens.d.cts.map +1 -0
- package/dist/theme-tokens.d.mts +75 -0
- package/dist/theme-tokens.d.mts.map +1 -0
- package/dist/theme-tokens.mjs +91 -0
- package/dist/theme-tokens.mjs.map +1 -0
- package/dist/vitepress.cjs +2 -31
- package/dist/vitepress.cjs.map +1 -1
- package/dist/vitepress.mjs +2 -31
- package/dist/vitepress.mjs.map +1 -1
- package/package.json +24 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { RenderThemeTokenCssOptions, ThemeTokenSource, ThemeTokens, renderThemeTokenCss, tokensToCss } from "./theme-tokens.cjs";
|
|
1
2
|
import { a as JSXProps, c as jsxs, d as when, i as JSXNode, l as raw, n as JSXChild, o as each, r as JSXElementType, s as jsx, t as Fragment, u as renderToString } from "./jsx-html.cjs";
|
|
3
|
+
import { MarkdownTableEnhancementOptions, enhanceMarkdownTables, markdownTableScrollLabel } from "./markdown-tables.cjs";
|
|
2
4
|
import { EnvironmentOptions, Plugin } from "vite";
|
|
3
5
|
//#region src/header-chrome.d.ts
|
|
4
6
|
/**
|
|
@@ -75,19 +77,6 @@ interface ThemeWebFont {
|
|
|
75
77
|
}
|
|
76
78
|
type ThemeFontValue = string | ThemeWebFont;
|
|
77
79
|
//#endregion
|
|
78
|
-
//#region src/theme-tokens.d.ts
|
|
79
|
-
/**
|
|
80
|
-
* Free-form `--octc-*` custom properties for themes that need more than the
|
|
81
|
-
* typed `colors` / `fonts` / `layout` fields.
|
|
82
|
-
*
|
|
83
|
-
* Keys are written **without** the `--octc-` prefix, so `"surface-glass"`
|
|
84
|
-
* becomes `--octc-surface-glass`. This is the seam that keeps the two theme
|
|
85
|
-
* axes independent: a color package can restyle code-block line markers, brand
|
|
86
|
-
* accents, and surface textures purely through tokens, while a skin package
|
|
87
|
-
* lays out geometry against those same tokens without knowing any color.
|
|
88
|
-
*/
|
|
89
|
-
type ThemeTokens = Record<string, string>;
|
|
90
|
-
//#endregion
|
|
91
80
|
//#region src/theme.d.ts
|
|
92
81
|
/**
|
|
93
82
|
* Theme color configuration.
|
|
@@ -4215,12 +4204,33 @@ interface MathOptions {
|
|
|
4215
4204
|
* @default true
|
|
4216
4205
|
*/
|
|
4217
4206
|
enabled?: boolean;
|
|
4207
|
+
/**
|
|
4208
|
+
* What to do with a `$…$` run KaTeX cannot parse.
|
|
4209
|
+
*
|
|
4210
|
+
* The `$…$` heuristics are good but not perfect, and a page *about* math
|
|
4211
|
+
* syntax is exactly the page that trips them. This decides whether such a
|
|
4212
|
+
* page ships readable prose, red error text, or no build at all.
|
|
4213
|
+
*
|
|
4214
|
+
* - `'literal'` puts the source back the way it was written, delimiters
|
|
4215
|
+
* included, and warns.
|
|
4216
|
+
* - `'error'` fails the build.
|
|
4217
|
+
* - `'render'` emits KaTeX's own red error markup, which is what the
|
|
4218
|
+
* feature did before this option existed.
|
|
4219
|
+
*
|
|
4220
|
+
* @default 'literal'
|
|
4221
|
+
*/
|
|
4222
|
+
onError?: MathErrorPolicy;
|
|
4218
4223
|
}
|
|
4224
|
+
/**
|
|
4225
|
+
* What to do with a `$…$` run KaTeX cannot parse.
|
|
4226
|
+
*/
|
|
4227
|
+
type MathErrorPolicy = "literal" | "error" | "render";
|
|
4219
4228
|
/**
|
|
4220
4229
|
* Resolved math transform options.
|
|
4221
4230
|
*/
|
|
4222
4231
|
interface ResolvedMathOptions {
|
|
4223
4232
|
enabled: boolean;
|
|
4233
|
+
onError: MathErrorPolicy;
|
|
4224
4234
|
}
|
|
4225
4235
|
/**
|
|
4226
4236
|
* Options for markdown-it-attrs style attribute blocks.
|
|
@@ -4567,11 +4577,51 @@ interface EditThisPageOptions {
|
|
|
4567
4577
|
/**
|
|
4568
4578
|
* Source root inside the repository, used before the page path.
|
|
4569
4579
|
*
|
|
4570
|
-
* Set this when `srcDir` is nested in a package or docs workspace
|
|
4580
|
+
* Set this when `srcDir` is nested in a package or docs workspace: the
|
|
4581
|
+
* value says where `srcDir` lives inside the repository, and the page
|
|
4582
|
+
* path is measured from `srcDir` rather than from the directory the build
|
|
4583
|
+
* runs in.
|
|
4584
|
+
*
|
|
4585
|
+
* @example
|
|
4586
|
+
* ```ts
|
|
4587
|
+
* // repository holds packages/site/docs, srcDir is "docs"
|
|
4588
|
+
* rootDir: 'packages/site/docs'
|
|
4589
|
+
* // -> <repoUrl>/edit/<branch>/packages/site/docs/guide/nested.md
|
|
4590
|
+
* ```
|
|
4571
4591
|
*
|
|
4572
4592
|
* @default undefined
|
|
4573
4593
|
*/
|
|
4574
4594
|
rootDir?: string;
|
|
4595
|
+
/**
|
|
4596
|
+
* Forge whose edit-URL shape to use.
|
|
4597
|
+
*
|
|
4598
|
+
* Every forge exposes a web editor at a different path — GitLab puts a
|
|
4599
|
+
* `/-/` scope separator in front of it, Bitbucket edits through its source
|
|
4600
|
+
* view, Gitea and Forgejo use `_edit` — so a site on the wrong shape links
|
|
4601
|
+
* to a 404.
|
|
4602
|
+
*
|
|
4603
|
+
* Inferred from the `repoUrl` host when omitted (`gitlab.com`,
|
|
4604
|
+
* `bitbucket.org`, `codeberg.org`, `gitea.com`), falling back to
|
|
4605
|
+
* `'github'`. Set it explicitly for a self-hosted instance, whose hostname
|
|
4606
|
+
* says nothing about the software behind it.
|
|
4607
|
+
*
|
|
4608
|
+
* @default inferred from `repoUrl`
|
|
4609
|
+
*/
|
|
4610
|
+
provider?: EditThisPageProvider;
|
|
4611
|
+
/**
|
|
4612
|
+
* Edit-URL template, for a forge or an instance the shapes above miss.
|
|
4613
|
+
*
|
|
4614
|
+
* Understands `{repoUrl}`, `{branch}`, and `{path}`; other braces are
|
|
4615
|
+
* left as written. Takes precedence over `provider`.
|
|
4616
|
+
*
|
|
4617
|
+
* @example
|
|
4618
|
+
* ```ts
|
|
4619
|
+
* urlPattern: '{repoUrl}/ui/edit?ref={branch}&file={path}'
|
|
4620
|
+
* ```
|
|
4621
|
+
*
|
|
4622
|
+
* @default the pattern for the resolved `provider`
|
|
4623
|
+
*/
|
|
4624
|
+
urlPattern?: string;
|
|
4575
4625
|
/**
|
|
4576
4626
|
* Link text rendered in the page footer.
|
|
4577
4627
|
*
|
|
@@ -4581,6 +4631,12 @@ interface EditThisPageOptions {
|
|
|
4581
4631
|
*/
|
|
4582
4632
|
label?: string;
|
|
4583
4633
|
}
|
|
4634
|
+
/**
|
|
4635
|
+
* Forges with a known edit-URL shape.
|
|
4636
|
+
*
|
|
4637
|
+
* `'gitea'` covers Forgejo, which kept the same path.
|
|
4638
|
+
*/
|
|
4639
|
+
type EditThisPageProvider = "github" | "gitlab" | "bitbucket" | "gitea";
|
|
4584
4640
|
/**
|
|
4585
4641
|
* Resolved edit-link transform options.
|
|
4586
4642
|
*/
|
|
@@ -4589,6 +4645,8 @@ interface ResolvedEditThisPageOptions {
|
|
|
4589
4645
|
repoUrl?: string;
|
|
4590
4646
|
branch: string;
|
|
4591
4647
|
rootDir?: string;
|
|
4648
|
+
provider?: EditThisPageProvider;
|
|
4649
|
+
urlPattern?: string;
|
|
4592
4650
|
label: string;
|
|
4593
4651
|
}
|
|
4594
4652
|
/**
|
|
@@ -6278,6 +6336,8 @@ interface SsgTransformOptions {
|
|
|
6278
6336
|
baseUrl?: string;
|
|
6279
6337
|
/** Source file path for relative link resolution */
|
|
6280
6338
|
sourcePath?: string;
|
|
6339
|
+
/** Absolute source root, used to place pages inside the repository */
|
|
6340
|
+
srcDir?: string;
|
|
6281
6341
|
}
|
|
6282
6342
|
declare function transformMarkdown(source: string, filePath: string, options: ResolvedOptions, ssgOptions?: SsgTransformOptions): Promise<TransformResult>;
|
|
6283
6343
|
//#endregion
|
|
@@ -7250,29 +7310,6 @@ declare function resolveCascadeOptions(value: boolean | CascadeOptions | undefin
|
|
|
7250
7310
|
*/
|
|
7251
7311
|
declare function resolveRedirectsOptions(value: boolean | RedirectsOptions | Record<string, string> | undefined, env?: NodeJS.ProcessEnv): ResolvedRedirectsOptions;
|
|
7252
7312
|
//#endregion
|
|
7253
|
-
//#region src/markdown-tables.d.ts
|
|
7254
|
-
interface MarkdownTableEnhancementOptions {
|
|
7255
|
-
/**
|
|
7256
|
-
* Tables to enhance. Defaults to Markdown content tables styled by
|
|
7257
|
-
* `@ox-content/vite-plugin/styles/core.css`.
|
|
7258
|
-
*/
|
|
7259
|
-
selector?: string;
|
|
7260
|
-
/**
|
|
7261
|
-
* Accessible name applied only when an overflowing table has no existing
|
|
7262
|
-
* `aria-label` or `aria-labelledby`.
|
|
7263
|
-
*/
|
|
7264
|
-
label?: string;
|
|
7265
|
-
}
|
|
7266
|
-
declare function markdownTableScrollLabel(locale?: string): string;
|
|
7267
|
-
/**
|
|
7268
|
-
* Makes overflowing Markdown tables keyboard-scrollable without wrapping or
|
|
7269
|
-
* replacing the native `<table>` element.
|
|
7270
|
-
*
|
|
7271
|
-
* Run this after rendering Markdown and again after layout-changing updates.
|
|
7272
|
-
* Narrow tables stay out of the tab order when overflow can be measured.
|
|
7273
|
-
*/
|
|
7274
|
-
declare function enhanceMarkdownTables(root?: ParentNode, options?: MarkdownTableEnhancementOptions): number;
|
|
7275
|
-
//#endregion
|
|
7276
7313
|
//#region src/feeds.d.ts
|
|
7277
7314
|
/** Inputs for rendering feed bodies. */
|
|
7278
7315
|
interface FeedsRenderInput {
|
|
@@ -7897,5 +7934,5 @@ declare function oxContent(options?: OxContentOptions): Plugin[];
|
|
|
7897
7934
|
*/
|
|
7898
7935
|
declare function generateVirtualModule(path: string, options: ResolvedOptions): string;
|
|
7899
7936
|
//#endregion
|
|
7900
|
-
export { A11yOptions, AbbreviationsOptions, AttrsOptions, BadgeOptions, type BasePageProps, type BibliographyEntry, BlogAuthor, BlogFeedError, BlogFeedFailurePolicy, BlogFeedSource, BlogOptions, type BudouxLanguage, type BudouxOptions, type BudouxParser, BuiltinEmbedOptions, BuiltinPmOptions, CardOptions, CascadeOptions, type CitationFailureMode, type CitationReference, type CitationsOptions, CodeAnnotationKind, CodeAnnotationSyntax, CodeAnnotationsOptions, type CodeBlockDiagnostic, CodeBlockLintOptions, CodeBlockTypecheckOptions, CodeGroupOptions, CodeImportOptions, type CollectedDocsTest, CollectionEntry, CollectionIncludeField, CollectionManifest, CollectionOptions, CollectionQueryBuilder, CollectionQueryOperator, CollectionsOptions, type ComponentRegistry, ConditionalBlockOptions, ContainerOptions, ContainerTypeOptions, ContributorsOptions, type CrossReferenceEntry, type CrossReferenceFailureMode, type CrossReferenceKind, type CrossReferenceLabelOptions, type CrossReferencesOptions, DEFAULT_HTML_TEMPLATE, DEFAULT_MARKDOWN_EXTENSIONS, DataTableOptions, DefaultTheme, DefinitionListOptions, type DiscoverDocumentMdxIslandsInput, type DiscoverDocumentMdxIslandsResult, type DiscoverRegisteredMdxComponentsInput, DocEntry, DocMember, DocsEntryPoint, DocsNavigationItem, DocsOptions, DocsSortStrategy, DocsSummary, type DocsTestFileOptions, type DocsTestHarnessOptions, DocsTestOptions, DocsTestRunError, type DocsTestRunResult, type DocsTestSource, type DocsTestWriteResult, type DocumentImportDiagnostic, type DocumentImportDiagnosticCode, EditThisPageOptions, EmojiShortcodeOptions, EntryPageConfig, type ExtractedCodeBlock, ExtractedDocs, FeatureConfig, FeedChannelOptions, FeedFormat, FeedItemAttachment, FeedItemAuthor, FeedItemAuthorInput, FeedItemInput, FeedItemsResolveContext, FeedItemsSource, FeedsOptions, type FeedsRenderInput, type FeedsRenderResult, FileTreeIconOptions, FileTreeOptions, Fragment, type FrameworkCodegenMode, type FrameworkCodegenTarget, type FrameworkComponentIsland, type FrameworkMarkdownOptions, type FrameworkRenderTarget, type FrameworkTransformData, type FrontmatterSchema, type GenerateVitePressMigrationConfigOptions, GeneratedDocsData, GeneratedOpenApiDocs, type GitHubLineRange, type GitHubOptions, type GitHubRepoData, type GitHubSourceCommit, type GitHubSourceData, type GitHubSourceRef, type GlobalComponentMap, type GraphvizFailureMode, type GraphvizOptions, type HeadAlternate, type HeadDiagnostic, type HeadInput, type HeadJsonLd, type HeadLink, type HeadMeta, type HeadValidationMode, type HeaderNavItem, HeadingPermalinksOptions, HeroAction, HeroConfig, HeroImage, HeroNotice, I18nOptions, IconsOptions, ImageGalleryOptions, ImageOptions, IncludeOptions, type IncrementalMarkdownParseAppendOptions, type IncrementalMarkdownParseResult, IncrementalMarkdownParser, type IncrementalMarkdownParserOptions, type IncrementalMarkdownRenderAppendOptions, type IncrementalMarkdownRenderResult, IncrementalMarkdownRenderer, type IncrementalMarkdownRendererOptions, type IslandInfo, type JSXChild, type JSXElementType, type JSXNode, type JSXProps, JsonLdOptions, JsonLdPageType, JsonLdPublisherOptions, KeyboardKeysOptions, type LoadStrategy, LocaleConfig, type LocaleLabel, MagicLinkAlias, MagicLinkImageOverride, MagicLinkOptions, type MarkdownChunkSource, MarkdownDisplayFormat, type MarkdownLintFileDiagnostic as MarkdownLintBatchDiagnostic, type MarkdownLintFileDiagnostic, type MarkdownLintDiagnostic, type MarkdownLintDictionaryOptions, type MarkdownLintFileOptions, type MarkdownLintFileOptions as MarkdownLintProjectOptions, type MarkdownLintFileResult, type MarkdownLintFilesResult, type MarkdownLintLanguage, type MarkdownLintOptions, type MarkdownLintResult, type MarkdownLintRuleOptions, type MarkdownLintSeverity, type MarkdownLintStandardDictionaryOptions, MarkdownNode, type MarkdownProcessor, MarkdownSourceOptions, type MarkdownTableEnhancementOptions, MarkdownTransformer, MathOptions, MdxImport, MdxImportSpecifier, MdxImportSpecifierKind, type MermaidOptions, type NavGroup, NavItem, NotByAiOptions, NotFoundOptions, type OgBrowserSession, OgImageOptions, type OgImagePageEntry, type OgImageOptions$1 as OgImagePluginOptions, OgImageRenderer, type OgImageResult, OgImageSatoriFont, OgImageSatoriFontWeight, OgImageSatoriOptions, type OgImageTemplateFn, type OgImageTemplateProps, type OgpData, type OgpOptions, OpenApiDocsInput, OpenApiDocsOptions, OpenApiDocsSource, OxContentOptions, type PageChromeFlags, type PageData, type PageProps, PageResourceError, ParamDoc, type ParseIslandsResult, PartialsOptions, PermalinksOptions, type PlanSsgOutputsInput, type PlanSsgOutputsOptions, PublishStateOptions, PwaOptions, ReaderChromeOptions, type RedditEmbedOptions, type RedditPostData, type RedditPostReference, RedirectProvider, RedirectsOptions, type RenderContext, type RenderFeedFilesInput, type RenderFeedFilesResult, type RenderIslandComponentImportsInput, type RenderIslandFn, type RenderedFeedFile, type RenderedHead, type ResolveDocumentComponentImportsInput, type ResolveDocumentComponentImportsResult, ResolvedA11y, ResolvedAbbreviationsOptions, ResolvedAttrsOptions, ResolvedBadgeOptions, ResolvedBlogFeedSource, ResolvedBlogOptions, type ResolvedBudouxOptions, ResolvedBuiltinEmbedOptions, ResolvedCardOptions, ResolvedCascadeOptions, type ResolvedCitationsOptions, ResolvedCodeAnnotationsOptions, ResolvedCodeBlockLintOptions, ResolvedCodeBlockTypecheckOptions, ResolvedCodeGroupOptions, ResolvedCodeImportOptions, ResolvedCollectionOptions, ResolvedCollectionsOptions, ResolvedConditionalBlockOptions, ResolvedContainerOptions, ResolvedContributors, type ResolvedCrossReferencesOptions, ResolvedDataTableOptions, ResolvedDefinitionListOptions, ResolvedDocsEntryPoint, ResolvedDocsOptions, ResolvedDocsTestOptions, type ResolvedDocumentComponentImport, ResolvedEditThisPageOptions, ResolvedEmojiShortcodeOptions, ResolvedFeedChannel, ResolvedFeedsOptions, ResolvedFileTreeOptions, type ResolvedGraphvizOptions, ResolvedHeadingPermalinksOptions, ResolvedI18nOptions, ResolvedIconsOptions, ResolvedImageGalleryOptions, ResolvedImageOptions, ResolvedIncludeOptions, ResolvedJsonLd, ResolvedKeyboardKeysOptions, ResolvedMagicLinkOptions, ResolvedMarkdownSourceOptions, ResolvedMathOptions, ResolvedNotByAiOptions, ResolvedNotFoundOptions, ResolvedOgImageOptions, ResolvedOpenApiDocsInput, ResolvedOpenApiDocsOptions, ResolvedOptions, ResolvedPartialsOptions, ResolvedPermalinksOptions, ResolvedPublishStateOptions, ResolvedPwaOptions, ResolvedReaderChrome, ResolvedRedirectsOptions, ResolvedResourcesOptions, ResolvedSanitizeOptions, ResolvedSearchOptions, ResolvedSectionIndexOptions, ResolvedSiteMapsOptions, ResolvedSsgOptions, ResolvedStepsOptions, ResolvedTaxonomiesOptions, ResolvedTeamOptions, type ResolvedThemeConfig, ResolvedTimelineOptions, ResolvedTypedHoverOptions, ResolvedVersionEntry, ResolvedVersionsOptions, ResolvedWikiLinkOptions, ResourcesOptions, ReturnDoc, type RunDocsTestsOptions, SanitizeOptions, ScopedSearchQuery, SearchDocument, SearchOptions, SearchResult, SectionIndexOptions, SectionIndexStyle, type SidebarItem, type SiteConfig, type SiteHead, SiteMapsOptions, type SocialLinks, SsgNavigationGroup, SsgNavigationItem, SsgOptions, SsgOutputPageInput, type SsgOutputPlan, StepsOptions, TaxonomiesOptions, TeamLink, TeamMember, TeamOptions, type ThemeAnnouncement, type ThemeColors, type ThemeComponent, type ThemeConfig, type ThemeEmbed, type ThemeEntryPage, type ThemeFontValue, type ThemeFonts, type ThemeFooter, type ThemeHeader, type ThemeLayout, type ThemeProps, type ThemeRenderOptions, type ThemeTokens, type ThemeWebFont, ThrowsDoc, TimelineOptions, TocEntry, type TransformAllOptions, TransformContext, TransformResult, type TwitterEmbedOptions, type TypecheckCodeBlockOptions, TypedHoverOptions, VersionBannerKind, VersionEntry, VersionsOptions, type VitePressConfig, type VitePressFooter, type VitePressLogo, type VitePressNavItem, type VitePressSidebar, type VitePressSidebarItem, type VitePressSocialLink, type VitePressThemeConfig, WikiLinkOptions, type WriteFeedFilesInput, type WriteResourceFilesInput, type WriteResourceFilesPage, type WriteResourceFilesResult, type WrittenDocsTestFile, type YouTubeOptions, applyIslandSsrHtml, buildCollectionManifest, buildSearchIndex, buildSsg, classifyPublishState, clearGraphvizCache, clearRenderContext, collectDocsTests, collectGitHubRepos, collectGitHubSources, collectMdxIslandNamesFromHtml, collectMdxJsxNamesFromAst, collectOgpUrls, convertVitePressNav, convertVitePressSidebar, createFrameworkMarkdownOptions, createI18nPlugin, createIncrementalMarkdownParser, createIncrementalMarkdownRenderer, createMarkdownEnvironment, createMarkdownProcessor, createTheme, defaultTheme, defineCollection, defineCollections, defineTheme, discoverDocumentMdxIslands, discoverRegisteredMdxComponents, each, enhanceMarkdownTables, escapeSvelteMarkup, extractCodeBlocks, extractDocs, extractDocsTests, extractIslandInfo, extractVideoId, fetchGitHubSource, fetchOgpData, fetchRepoData, fromVitePressConfig, generateCollectionsVirtualModule, generateFeeds, generateFrontmatterTypes, generateHydrationScript, generateMarkdown, generateOgImages, generateOpenApiDocs, generateTabsCSS, generateTypes, generateVirtualModule, generateVitePressMigrationConfig, hasIslands, inferType, intersectHydratableComponentNames, intersectRegisteredComponentNames, isMarkdownFilePath, isMdxFilePath, isRegisteredComponent, jsx, jsxs, lintCodeBlocks, lintMarkdown, lintMarkdownAsync, lintMarkdownFile, lintMarkdownFiles, markdownTableScrollLabel, mergeThemes, mermaidClientScript, normalizeMarkdownExtensions, normalizeVitePressFrontmatter, oxContent, parseGitHubLineRange, parseGitHubPermalink, parsePageChromeFlags, parseRedditPostReference, partitionPublishedPages, planSsgOutputs, prefetchGitHubRepos, prefetchGitHubSources, prefetchOgpData, raw, readingTimeMinutes, renderAllPages, renderFeedFiles, renderHead, renderHtmlToFrameworkCode, renderHtmlToReactComponent, renderHtmlToReactCreateElement, renderHtmlToSvelteComponent, renderHtmlToVueComponent, renderHtmlToVueH, renderIslandComponentImports, renderMarkdown, renderMarkdownStream, renderPage, renderToString, resolveAbbreviationsOptions, resolveBadgeOptions, resolveBlogCollectionName, resolveBlogOptions, resolveBudouxOptions, resolveBuiltinEmbedOptions, resolveCardOptions, resolveCascadeOptions, resolveCodeGroupOptions, resolveCollectionsOptions, resolveContentRootPath, resolveDataTableOptions, resolveDocsOptions, resolveDocumentComponentImports, resolveFeedsOptions, resolveFileTreeOptions, resolveGitLastmod, resolveGraphvizOptions, resolveHeadValidation, resolveHeaderNavItems, resolveHeadingPermalinksOptions, resolveI18nOptions, resolveImageGalleryOptions, resolveImageOptions, resolveIncludeOptions, resolveKeyboardKeysOptions, resolveLocaleLabel, resolveMarkdownSourceOptions, resolveMathOptions, resolveMdxForFilePath, resolveNotByAiOptions, resolveNotFoundOptions, resolveOgImageOptions, resolvePageChromeOption, resolvePartialsOptions, resolvePermalinksOptions, resolvePublishStateOptions, resolvePwaOptions, resolveRedirectsOptions, resolveResourcesOptions, resolveSearchOptions, resolveSectionIndexOptions, resolveSiteMapsOptions, resolveSsgOptions, resolveStepsOptions, resolveTaxonomiesOptions, resolveTeamOptions, resolveTheme, resolveTimelineOptions, resolveTypedHoverOptions, resolveVersionsOptions, runDocsTests, setRenderContext, shouldLintMarkdownFile, stripMarkdownExtension, stripViteQuery, transformAllPlugins, transformBudouxHtml, transformGitHub, transformGraphvizStatic, transformIslands, transformMarkdown, transformMermaidStatic, transformOgp, transformRedditEmbeds, transformTabs, transformYouTube, typecheckCodeBlocks, useIsActive, useNav, usePageProps, useRenderContext, useSiteConfig, when, writeDocs, writeDocsTestFiles, writeFeedFiles, writeMarkdownCompanions, writeResourceFiles, writeSearchIndex, writeSiteMapFiles };
|
|
7937
|
+
export { A11yOptions, AbbreviationsOptions, AttrsOptions, BadgeOptions, type BasePageProps, type BibliographyEntry, BlogAuthor, BlogFeedError, BlogFeedFailurePolicy, BlogFeedSource, BlogOptions, type BudouxLanguage, type BudouxOptions, type BudouxParser, BuiltinEmbedOptions, BuiltinPmOptions, CardOptions, CascadeOptions, type CitationFailureMode, type CitationReference, type CitationsOptions, CodeAnnotationKind, CodeAnnotationSyntax, CodeAnnotationsOptions, type CodeBlockDiagnostic, CodeBlockLintOptions, CodeBlockTypecheckOptions, CodeGroupOptions, CodeImportOptions, type CollectedDocsTest, CollectionEntry, CollectionIncludeField, CollectionManifest, CollectionOptions, CollectionQueryBuilder, CollectionQueryOperator, CollectionsOptions, type ComponentRegistry, ConditionalBlockOptions, ContainerOptions, ContainerTypeOptions, ContributorsOptions, type CrossReferenceEntry, type CrossReferenceFailureMode, type CrossReferenceKind, type CrossReferenceLabelOptions, type CrossReferencesOptions, DEFAULT_HTML_TEMPLATE, DEFAULT_MARKDOWN_EXTENSIONS, DataTableOptions, DefaultTheme, DefinitionListOptions, type DiscoverDocumentMdxIslandsInput, type DiscoverDocumentMdxIslandsResult, type DiscoverRegisteredMdxComponentsInput, DocEntry, DocMember, DocsEntryPoint, DocsNavigationItem, DocsOptions, DocsSortStrategy, DocsSummary, type DocsTestFileOptions, type DocsTestHarnessOptions, DocsTestOptions, DocsTestRunError, type DocsTestRunResult, type DocsTestSource, type DocsTestWriteResult, type DocumentImportDiagnostic, type DocumentImportDiagnosticCode, EditThisPageOptions, EditThisPageProvider, EmojiShortcodeOptions, EntryPageConfig, type ExtractedCodeBlock, ExtractedDocs, FeatureConfig, FeedChannelOptions, FeedFormat, FeedItemAttachment, FeedItemAuthor, FeedItemAuthorInput, FeedItemInput, FeedItemsResolveContext, FeedItemsSource, FeedsOptions, type FeedsRenderInput, type FeedsRenderResult, FileTreeIconOptions, FileTreeOptions, Fragment, type FrameworkCodegenMode, type FrameworkCodegenTarget, type FrameworkComponentIsland, type FrameworkMarkdownOptions, type FrameworkRenderTarget, type FrameworkTransformData, type FrontmatterSchema, type GenerateVitePressMigrationConfigOptions, GeneratedDocsData, GeneratedOpenApiDocs, type GitHubLineRange, type GitHubOptions, type GitHubRepoData, type GitHubSourceCommit, type GitHubSourceData, type GitHubSourceRef, type GlobalComponentMap, type GraphvizFailureMode, type GraphvizOptions, type HeadAlternate, type HeadDiagnostic, type HeadInput, type HeadJsonLd, type HeadLink, type HeadMeta, type HeadValidationMode, type HeaderNavItem, HeadingPermalinksOptions, HeroAction, HeroConfig, HeroImage, HeroNotice, I18nOptions, IconsOptions, ImageGalleryOptions, ImageOptions, IncludeOptions, type IncrementalMarkdownParseAppendOptions, type IncrementalMarkdownParseResult, IncrementalMarkdownParser, type IncrementalMarkdownParserOptions, type IncrementalMarkdownRenderAppendOptions, type IncrementalMarkdownRenderResult, IncrementalMarkdownRenderer, type IncrementalMarkdownRendererOptions, type IslandInfo, type JSXChild, type JSXElementType, type JSXNode, type JSXProps, JsonLdOptions, JsonLdPageType, JsonLdPublisherOptions, KeyboardKeysOptions, type LoadStrategy, LocaleConfig, type LocaleLabel, MagicLinkAlias, MagicLinkImageOverride, MagicLinkOptions, type MarkdownChunkSource, MarkdownDisplayFormat, type MarkdownLintFileDiagnostic as MarkdownLintBatchDiagnostic, type MarkdownLintFileDiagnostic, type MarkdownLintDiagnostic, type MarkdownLintDictionaryOptions, type MarkdownLintFileOptions, type MarkdownLintFileOptions as MarkdownLintProjectOptions, type MarkdownLintFileResult, type MarkdownLintFilesResult, type MarkdownLintLanguage, type MarkdownLintOptions, type MarkdownLintResult, type MarkdownLintRuleOptions, type MarkdownLintSeverity, type MarkdownLintStandardDictionaryOptions, MarkdownNode, type MarkdownProcessor, MarkdownSourceOptions, type MarkdownTableEnhancementOptions, MarkdownTransformer, MathErrorPolicy, MathOptions, MdxImport, MdxImportSpecifier, MdxImportSpecifierKind, type MermaidOptions, type NavGroup, NavItem, NotByAiOptions, NotFoundOptions, type OgBrowserSession, OgImageOptions, type OgImagePageEntry, type OgImageOptions$1 as OgImagePluginOptions, OgImageRenderer, type OgImageResult, OgImageSatoriFont, OgImageSatoriFontWeight, OgImageSatoriOptions, type OgImageTemplateFn, type OgImageTemplateProps, type OgpData, type OgpOptions, OpenApiDocsInput, OpenApiDocsOptions, OpenApiDocsSource, OxContentOptions, type PageChromeFlags, type PageData, type PageProps, PageResourceError, ParamDoc, type ParseIslandsResult, PartialsOptions, PermalinksOptions, type PlanSsgOutputsInput, type PlanSsgOutputsOptions, PublishStateOptions, PwaOptions, ReaderChromeOptions, type RedditEmbedOptions, type RedditPostData, type RedditPostReference, RedirectProvider, RedirectsOptions, type RenderContext, type RenderFeedFilesInput, type RenderFeedFilesResult, type RenderIslandComponentImportsInput, type RenderIslandFn, type RenderThemeTokenCssOptions, type RenderedFeedFile, type RenderedHead, type ResolveDocumentComponentImportsInput, type ResolveDocumentComponentImportsResult, ResolvedA11y, ResolvedAbbreviationsOptions, ResolvedAttrsOptions, ResolvedBadgeOptions, ResolvedBlogFeedSource, ResolvedBlogOptions, type ResolvedBudouxOptions, ResolvedBuiltinEmbedOptions, ResolvedCardOptions, ResolvedCascadeOptions, type ResolvedCitationsOptions, ResolvedCodeAnnotationsOptions, ResolvedCodeBlockLintOptions, ResolvedCodeBlockTypecheckOptions, ResolvedCodeGroupOptions, ResolvedCodeImportOptions, ResolvedCollectionOptions, ResolvedCollectionsOptions, ResolvedConditionalBlockOptions, ResolvedContainerOptions, ResolvedContributors, type ResolvedCrossReferencesOptions, ResolvedDataTableOptions, ResolvedDefinitionListOptions, ResolvedDocsEntryPoint, ResolvedDocsOptions, ResolvedDocsTestOptions, type ResolvedDocumentComponentImport, ResolvedEditThisPageOptions, ResolvedEmojiShortcodeOptions, ResolvedFeedChannel, ResolvedFeedsOptions, ResolvedFileTreeOptions, type ResolvedGraphvizOptions, ResolvedHeadingPermalinksOptions, ResolvedI18nOptions, ResolvedIconsOptions, ResolvedImageGalleryOptions, ResolvedImageOptions, ResolvedIncludeOptions, ResolvedJsonLd, ResolvedKeyboardKeysOptions, ResolvedMagicLinkOptions, ResolvedMarkdownSourceOptions, ResolvedMathOptions, ResolvedNotByAiOptions, ResolvedNotFoundOptions, ResolvedOgImageOptions, ResolvedOpenApiDocsInput, ResolvedOpenApiDocsOptions, ResolvedOptions, ResolvedPartialsOptions, ResolvedPermalinksOptions, ResolvedPublishStateOptions, ResolvedPwaOptions, ResolvedReaderChrome, ResolvedRedirectsOptions, ResolvedResourcesOptions, ResolvedSanitizeOptions, ResolvedSearchOptions, ResolvedSectionIndexOptions, ResolvedSiteMapsOptions, ResolvedSsgOptions, ResolvedStepsOptions, ResolvedTaxonomiesOptions, ResolvedTeamOptions, type ResolvedThemeConfig, ResolvedTimelineOptions, ResolvedTypedHoverOptions, ResolvedVersionEntry, ResolvedVersionsOptions, ResolvedWikiLinkOptions, ResourcesOptions, ReturnDoc, type RunDocsTestsOptions, SanitizeOptions, ScopedSearchQuery, SearchDocument, SearchOptions, SearchResult, SectionIndexOptions, SectionIndexStyle, type SidebarItem, type SiteConfig, type SiteHead, SiteMapsOptions, type SocialLinks, SsgNavigationGroup, SsgNavigationItem, SsgOptions, SsgOutputPageInput, type SsgOutputPlan, StepsOptions, TaxonomiesOptions, TeamLink, TeamMember, TeamOptions, type ThemeAnnouncement, type ThemeColors, type ThemeComponent, type ThemeConfig, type ThemeEmbed, type ThemeEntryPage, type ThemeFontValue, type ThemeFonts, type ThemeFooter, type ThemeHeader, type ThemeLayout, type ThemeProps, type ThemeRenderOptions, type ThemeTokenSource, type ThemeTokens, type ThemeWebFont, ThrowsDoc, TimelineOptions, TocEntry, type TransformAllOptions, TransformContext, TransformResult, type TwitterEmbedOptions, type TypecheckCodeBlockOptions, TypedHoverOptions, VersionBannerKind, VersionEntry, VersionsOptions, type VitePressConfig, type VitePressFooter, type VitePressLogo, type VitePressNavItem, type VitePressSidebar, type VitePressSidebarItem, type VitePressSocialLink, type VitePressThemeConfig, WikiLinkOptions, type WriteFeedFilesInput, type WriteResourceFilesInput, type WriteResourceFilesPage, type WriteResourceFilesResult, type WrittenDocsTestFile, type YouTubeOptions, applyIslandSsrHtml, buildCollectionManifest, buildSearchIndex, buildSsg, classifyPublishState, clearGraphvizCache, clearRenderContext, collectDocsTests, collectGitHubRepos, collectGitHubSources, collectMdxIslandNamesFromHtml, collectMdxJsxNamesFromAst, collectOgpUrls, convertVitePressNav, convertVitePressSidebar, createFrameworkMarkdownOptions, createI18nPlugin, createIncrementalMarkdownParser, createIncrementalMarkdownRenderer, createMarkdownEnvironment, createMarkdownProcessor, createTheme, defaultTheme, defineCollection, defineCollections, defineTheme, discoverDocumentMdxIslands, discoverRegisteredMdxComponents, each, enhanceMarkdownTables, escapeSvelteMarkup, extractCodeBlocks, extractDocs, extractDocsTests, extractIslandInfo, extractVideoId, fetchGitHubSource, fetchOgpData, fetchRepoData, fromVitePressConfig, generateCollectionsVirtualModule, generateFeeds, generateFrontmatterTypes, generateHydrationScript, generateMarkdown, generateOgImages, generateOpenApiDocs, generateTabsCSS, generateTypes, generateVirtualModule, generateVitePressMigrationConfig, hasIslands, inferType, intersectHydratableComponentNames, intersectRegisteredComponentNames, isMarkdownFilePath, isMdxFilePath, isRegisteredComponent, jsx, jsxs, lintCodeBlocks, lintMarkdown, lintMarkdownAsync, lintMarkdownFile, lintMarkdownFiles, markdownTableScrollLabel, mergeThemes, mermaidClientScript, normalizeMarkdownExtensions, normalizeVitePressFrontmatter, oxContent, parseGitHubLineRange, parseGitHubPermalink, parsePageChromeFlags, parseRedditPostReference, partitionPublishedPages, planSsgOutputs, prefetchGitHubRepos, prefetchGitHubSources, prefetchOgpData, raw, readingTimeMinutes, renderAllPages, renderFeedFiles, renderHead, renderHtmlToFrameworkCode, renderHtmlToReactComponent, renderHtmlToReactCreateElement, renderHtmlToSvelteComponent, renderHtmlToVueComponent, renderHtmlToVueH, renderIslandComponentImports, renderMarkdown, renderMarkdownStream, renderPage, renderThemeTokenCss, renderToString, resolveAbbreviationsOptions, resolveBadgeOptions, resolveBlogCollectionName, resolveBlogOptions, resolveBudouxOptions, resolveBuiltinEmbedOptions, resolveCardOptions, resolveCascadeOptions, resolveCodeGroupOptions, resolveCollectionsOptions, resolveContentRootPath, resolveDataTableOptions, resolveDocsOptions, resolveDocumentComponentImports, resolveFeedsOptions, resolveFileTreeOptions, resolveGitLastmod, resolveGraphvizOptions, resolveHeadValidation, resolveHeaderNavItems, resolveHeadingPermalinksOptions, resolveI18nOptions, resolveImageGalleryOptions, resolveImageOptions, resolveIncludeOptions, resolveKeyboardKeysOptions, resolveLocaleLabel, resolveMarkdownSourceOptions, resolveMathOptions, resolveMdxForFilePath, resolveNotByAiOptions, resolveNotFoundOptions, resolveOgImageOptions, resolvePageChromeOption, resolvePartialsOptions, resolvePermalinksOptions, resolvePublishStateOptions, resolvePwaOptions, resolveRedirectsOptions, resolveResourcesOptions, resolveSearchOptions, resolveSectionIndexOptions, resolveSiteMapsOptions, resolveSsgOptions, resolveStepsOptions, resolveTaxonomiesOptions, resolveTeamOptions, resolveTheme, resolveTimelineOptions, resolveTypedHoverOptions, resolveVersionsOptions, runDocsTests, setRenderContext, shouldLintMarkdownFile, stripMarkdownExtension, stripViteQuery, tokensToCss, transformAllPlugins, transformBudouxHtml, transformGitHub, transformGraphvizStatic, transformIslands, transformMarkdown, transformMermaidStatic, transformOgp, transformRedditEmbeds, transformTabs, transformYouTube, typecheckCodeBlocks, useIsActive, useNav, usePageProps, useRenderContext, useSiteConfig, when, writeDocs, writeDocsTestFiles, writeFeedFiles, writeMarkdownCompanions, writeResourceFiles, writeSearchIndex, writeSiteMapFiles };
|
|
7901
7938
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/header-chrome.ts","../src/theme-fonts.ts","../src/theme-tokens.ts","../src/theme.ts","../src/plugins/tabs.ts","../src/plugins/pm.ts","../src/plugins/youtube.ts","../src/plugins/provider-articles.ts","../src/plugins/provider-packages.ts","../src/plugins/provider-playgrounds.ts","../src/plugins/provider-videos.ts","../src/plugins/reddit/types.ts","../src/plugins/reddit/transform.ts","../src/plugins/reddit/url.ts","../src/plugins/twitter/types.ts","../src/plugins/media.ts","../src/plugins/github/types.ts","../src/plugins/github/api.ts","../src/plugins/github/attributes.ts","../src/plugins/github/source.ts","../src/plugins/github/transform.ts","../src/plugins/ogp/types.ts","../src/plugins/ogp/fetch.ts","../src/plugins/ogp/transform.ts","../src/plugins/mermaid.ts","../src/plugins/graphviz-renderer.ts","../src/plugins/graphviz.ts","../src/plugins/index.ts","../src/cross-reference-types.ts","../src/citation-types.ts","../src/budoux-types.ts","../src/page-context.ts","../src/theme-renderer.ts","../src/types.ts","../src/virtual.ts","../src/builtin-embed-options.ts","../src/resolve-options.ts","../src/abbreviations-options.ts","../src/not-by-ai-options.ts","../src/card-options.ts","../src/include-options.ts","../src/partials-options.ts","../src/step-options.ts","../src/code-group-options.ts","../src/file-tree-options.ts","../src/data-table-options.ts","../src/image-gallery-options.ts","../src/timeline-options.ts","../src/heading-permalinks-options.ts","../src/typed-hover.ts","../src/environment.ts","../src/incremental.ts","../src/transform.ts","../src/render-markdown.ts","../src/markdown.ts","../src/mdx-islands.ts","../src/document-imports.ts","../src/document-islands.ts","../src/island-codegen.ts","../src/island-ssr.ts","../src/resolve-image-options.ts","../src/framework.ts","../src/code-blocks.ts","../src/docs-tests.ts","../src/docs.ts","../src/lint.ts","../src/lint-files.ts","../src/ssg.ts","../src/page-head.ts","../src/not-found.ts","../src/site-maps.ts","../src/markdown-source.ts","../src/publish-state.ts","../src/permalinks.ts","../src/redirects.ts","../src/markdown-tables.ts","../src/feeds.ts","../src/blog-options.ts","../src/blog-feeds.ts","../src/blog-reading.ts","../src/budoux.ts","../src/pwa.ts","../src/taxonomies.ts","../src/versions.ts","../src/resources.ts","../src/team.ts","../src/section-index.ts","../src/search.ts","../src/collections.ts","../src/vitepress.ts","../src/island/parse.ts","../src/og-image/types.ts","../src/og-image/browser.ts","../src/og-image/index.ts","../src/i18n.ts","../src/ssg-output-write.ts","../src/ssg-output.ts","../src/index.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/header-chrome.ts","../src/theme-fonts.ts","../src/theme.ts","../src/plugins/tabs.ts","../src/plugins/pm.ts","../src/plugins/youtube.ts","../src/plugins/provider-articles.ts","../src/plugins/provider-packages.ts","../src/plugins/provider-playgrounds.ts","../src/plugins/provider-videos.ts","../src/plugins/reddit/types.ts","../src/plugins/reddit/transform.ts","../src/plugins/reddit/url.ts","../src/plugins/twitter/types.ts","../src/plugins/media.ts","../src/plugins/github/types.ts","../src/plugins/github/api.ts","../src/plugins/github/attributes.ts","../src/plugins/github/source.ts","../src/plugins/github/transform.ts","../src/plugins/ogp/types.ts","../src/plugins/ogp/fetch.ts","../src/plugins/ogp/transform.ts","../src/plugins/mermaid.ts","../src/plugins/graphviz-renderer.ts","../src/plugins/graphviz.ts","../src/plugins/index.ts","../src/cross-reference-types.ts","../src/citation-types.ts","../src/budoux-types.ts","../src/page-context.ts","../src/theme-renderer.ts","../src/types.ts","../src/virtual.ts","../src/builtin-embed-options.ts","../src/resolve-options.ts","../src/abbreviations-options.ts","../src/not-by-ai-options.ts","../src/card-options.ts","../src/include-options.ts","../src/partials-options.ts","../src/step-options.ts","../src/code-group-options.ts","../src/file-tree-options.ts","../src/data-table-options.ts","../src/image-gallery-options.ts","../src/timeline-options.ts","../src/heading-permalinks-options.ts","../src/typed-hover.ts","../src/environment.ts","../src/incremental.ts","../src/transform.ts","../src/render-markdown.ts","../src/markdown.ts","../src/mdx-islands.ts","../src/document-imports.ts","../src/document-islands.ts","../src/island-codegen.ts","../src/island-ssr.ts","../src/resolve-image-options.ts","../src/framework.ts","../src/code-blocks.ts","../src/docs-tests.ts","../src/docs.ts","../src/lint.ts","../src/lint-files.ts","../src/ssg.ts","../src/page-head.ts","../src/not-found.ts","../src/site-maps.ts","../src/markdown-source.ts","../src/publish-state.ts","../src/permalinks.ts","../src/redirects.ts","../src/feeds.ts","../src/blog-options.ts","../src/blog-feeds.ts","../src/blog-reading.ts","../src/budoux.ts","../src/pwa.ts","../src/taxonomies.ts","../src/versions.ts","../src/resources.ts","../src/team.ts","../src/section-index.ts","../src/search.ts","../src/collections.ts","../src/vitepress.ts","../src/island/parse.ts","../src/og-image/types.ts","../src/og-image/browser.ts","../src/og-image/index.ts","../src/i18n.ts","../src/ssg-output-write.ts","../src/ssg-output.ts","../src/index.ts"],"mappings":"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"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { RenderThemeTokenCssOptions, ThemeTokenSource, ThemeTokens, renderThemeTokenCss, tokensToCss } from "./theme-tokens.mjs";
|
|
1
2
|
import { a as JSXProps, c as jsxs, d as when, i as JSXNode, l as raw, n as JSXChild, o as each, r as JSXElementType, s as jsx, t as Fragment, u as renderToString } from "./jsx-html.mjs";
|
|
3
|
+
import { MarkdownTableEnhancementOptions, enhanceMarkdownTables, markdownTableScrollLabel } from "./markdown-tables.mjs";
|
|
2
4
|
import { EnvironmentOptions, Plugin } from "vite";
|
|
3
5
|
//#region src/header-chrome.d.ts
|
|
4
6
|
/**
|
|
@@ -75,19 +77,6 @@ interface ThemeWebFont {
|
|
|
75
77
|
}
|
|
76
78
|
type ThemeFontValue = string | ThemeWebFont;
|
|
77
79
|
//#endregion
|
|
78
|
-
//#region src/theme-tokens.d.ts
|
|
79
|
-
/**
|
|
80
|
-
* Free-form `--octc-*` custom properties for themes that need more than the
|
|
81
|
-
* typed `colors` / `fonts` / `layout` fields.
|
|
82
|
-
*
|
|
83
|
-
* Keys are written **without** the `--octc-` prefix, so `"surface-glass"`
|
|
84
|
-
* becomes `--octc-surface-glass`. This is the seam that keeps the two theme
|
|
85
|
-
* axes independent: a color package can restyle code-block line markers, brand
|
|
86
|
-
* accents, and surface textures purely through tokens, while a skin package
|
|
87
|
-
* lays out geometry against those same tokens without knowing any color.
|
|
88
|
-
*/
|
|
89
|
-
type ThemeTokens = Record<string, string>;
|
|
90
|
-
//#endregion
|
|
91
80
|
//#region src/theme.d.ts
|
|
92
81
|
/**
|
|
93
82
|
* Theme color configuration.
|
|
@@ -4215,12 +4204,33 @@ interface MathOptions {
|
|
|
4215
4204
|
* @default true
|
|
4216
4205
|
*/
|
|
4217
4206
|
enabled?: boolean;
|
|
4207
|
+
/**
|
|
4208
|
+
* What to do with a `$…$` run KaTeX cannot parse.
|
|
4209
|
+
*
|
|
4210
|
+
* The `$…$` heuristics are good but not perfect, and a page *about* math
|
|
4211
|
+
* syntax is exactly the page that trips them. This decides whether such a
|
|
4212
|
+
* page ships readable prose, red error text, or no build at all.
|
|
4213
|
+
*
|
|
4214
|
+
* - `'literal'` puts the source back the way it was written, delimiters
|
|
4215
|
+
* included, and warns.
|
|
4216
|
+
* - `'error'` fails the build.
|
|
4217
|
+
* - `'render'` emits KaTeX's own red error markup, which is what the
|
|
4218
|
+
* feature did before this option existed.
|
|
4219
|
+
*
|
|
4220
|
+
* @default 'literal'
|
|
4221
|
+
*/
|
|
4222
|
+
onError?: MathErrorPolicy;
|
|
4218
4223
|
}
|
|
4224
|
+
/**
|
|
4225
|
+
* What to do with a `$…$` run KaTeX cannot parse.
|
|
4226
|
+
*/
|
|
4227
|
+
type MathErrorPolicy = "literal" | "error" | "render";
|
|
4219
4228
|
/**
|
|
4220
4229
|
* Resolved math transform options.
|
|
4221
4230
|
*/
|
|
4222
4231
|
interface ResolvedMathOptions {
|
|
4223
4232
|
enabled: boolean;
|
|
4233
|
+
onError: MathErrorPolicy;
|
|
4224
4234
|
}
|
|
4225
4235
|
/**
|
|
4226
4236
|
* Options for markdown-it-attrs style attribute blocks.
|
|
@@ -4567,11 +4577,51 @@ interface EditThisPageOptions {
|
|
|
4567
4577
|
/**
|
|
4568
4578
|
* Source root inside the repository, used before the page path.
|
|
4569
4579
|
*
|
|
4570
|
-
* Set this when `srcDir` is nested in a package or docs workspace
|
|
4580
|
+
* Set this when `srcDir` is nested in a package or docs workspace: the
|
|
4581
|
+
* value says where `srcDir` lives inside the repository, and the page
|
|
4582
|
+
* path is measured from `srcDir` rather than from the directory the build
|
|
4583
|
+
* runs in.
|
|
4584
|
+
*
|
|
4585
|
+
* @example
|
|
4586
|
+
* ```ts
|
|
4587
|
+
* // repository holds packages/site/docs, srcDir is "docs"
|
|
4588
|
+
* rootDir: 'packages/site/docs'
|
|
4589
|
+
* // -> <repoUrl>/edit/<branch>/packages/site/docs/guide/nested.md
|
|
4590
|
+
* ```
|
|
4571
4591
|
*
|
|
4572
4592
|
* @default undefined
|
|
4573
4593
|
*/
|
|
4574
4594
|
rootDir?: string;
|
|
4595
|
+
/**
|
|
4596
|
+
* Forge whose edit-URL shape to use.
|
|
4597
|
+
*
|
|
4598
|
+
* Every forge exposes a web editor at a different path — GitLab puts a
|
|
4599
|
+
* `/-/` scope separator in front of it, Bitbucket edits through its source
|
|
4600
|
+
* view, Gitea and Forgejo use `_edit` — so a site on the wrong shape links
|
|
4601
|
+
* to a 404.
|
|
4602
|
+
*
|
|
4603
|
+
* Inferred from the `repoUrl` host when omitted (`gitlab.com`,
|
|
4604
|
+
* `bitbucket.org`, `codeberg.org`, `gitea.com`), falling back to
|
|
4605
|
+
* `'github'`. Set it explicitly for a self-hosted instance, whose hostname
|
|
4606
|
+
* says nothing about the software behind it.
|
|
4607
|
+
*
|
|
4608
|
+
* @default inferred from `repoUrl`
|
|
4609
|
+
*/
|
|
4610
|
+
provider?: EditThisPageProvider;
|
|
4611
|
+
/**
|
|
4612
|
+
* Edit-URL template, for a forge or an instance the shapes above miss.
|
|
4613
|
+
*
|
|
4614
|
+
* Understands `{repoUrl}`, `{branch}`, and `{path}`; other braces are
|
|
4615
|
+
* left as written. Takes precedence over `provider`.
|
|
4616
|
+
*
|
|
4617
|
+
* @example
|
|
4618
|
+
* ```ts
|
|
4619
|
+
* urlPattern: '{repoUrl}/ui/edit?ref={branch}&file={path}'
|
|
4620
|
+
* ```
|
|
4621
|
+
*
|
|
4622
|
+
* @default the pattern for the resolved `provider`
|
|
4623
|
+
*/
|
|
4624
|
+
urlPattern?: string;
|
|
4575
4625
|
/**
|
|
4576
4626
|
* Link text rendered in the page footer.
|
|
4577
4627
|
*
|
|
@@ -4581,6 +4631,12 @@ interface EditThisPageOptions {
|
|
|
4581
4631
|
*/
|
|
4582
4632
|
label?: string;
|
|
4583
4633
|
}
|
|
4634
|
+
/**
|
|
4635
|
+
* Forges with a known edit-URL shape.
|
|
4636
|
+
*
|
|
4637
|
+
* `'gitea'` covers Forgejo, which kept the same path.
|
|
4638
|
+
*/
|
|
4639
|
+
type EditThisPageProvider = "github" | "gitlab" | "bitbucket" | "gitea";
|
|
4584
4640
|
/**
|
|
4585
4641
|
* Resolved edit-link transform options.
|
|
4586
4642
|
*/
|
|
@@ -4589,6 +4645,8 @@ interface ResolvedEditThisPageOptions {
|
|
|
4589
4645
|
repoUrl?: string;
|
|
4590
4646
|
branch: string;
|
|
4591
4647
|
rootDir?: string;
|
|
4648
|
+
provider?: EditThisPageProvider;
|
|
4649
|
+
urlPattern?: string;
|
|
4592
4650
|
label: string;
|
|
4593
4651
|
}
|
|
4594
4652
|
/**
|
|
@@ -6278,6 +6336,8 @@ interface SsgTransformOptions {
|
|
|
6278
6336
|
baseUrl?: string;
|
|
6279
6337
|
/** Source file path for relative link resolution */
|
|
6280
6338
|
sourcePath?: string;
|
|
6339
|
+
/** Absolute source root, used to place pages inside the repository */
|
|
6340
|
+
srcDir?: string;
|
|
6281
6341
|
}
|
|
6282
6342
|
declare function transformMarkdown(source: string, filePath: string, options: ResolvedOptions, ssgOptions?: SsgTransformOptions): Promise<TransformResult>;
|
|
6283
6343
|
//#endregion
|
|
@@ -7250,29 +7310,6 @@ declare function resolveCascadeOptions(value: boolean | CascadeOptions | undefin
|
|
|
7250
7310
|
*/
|
|
7251
7311
|
declare function resolveRedirectsOptions(value: boolean | RedirectsOptions | Record<string, string> | undefined, env?: NodeJS.ProcessEnv): ResolvedRedirectsOptions;
|
|
7252
7312
|
//#endregion
|
|
7253
|
-
//#region src/markdown-tables.d.ts
|
|
7254
|
-
interface MarkdownTableEnhancementOptions {
|
|
7255
|
-
/**
|
|
7256
|
-
* Tables to enhance. Defaults to Markdown content tables styled by
|
|
7257
|
-
* `@ox-content/vite-plugin/styles/core.css`.
|
|
7258
|
-
*/
|
|
7259
|
-
selector?: string;
|
|
7260
|
-
/**
|
|
7261
|
-
* Accessible name applied only when an overflowing table has no existing
|
|
7262
|
-
* `aria-label` or `aria-labelledby`.
|
|
7263
|
-
*/
|
|
7264
|
-
label?: string;
|
|
7265
|
-
}
|
|
7266
|
-
declare function markdownTableScrollLabel(locale?: string): string;
|
|
7267
|
-
/**
|
|
7268
|
-
* Makes overflowing Markdown tables keyboard-scrollable without wrapping or
|
|
7269
|
-
* replacing the native `<table>` element.
|
|
7270
|
-
*
|
|
7271
|
-
* Run this after rendering Markdown and again after layout-changing updates.
|
|
7272
|
-
* Narrow tables stay out of the tab order when overflow can be measured.
|
|
7273
|
-
*/
|
|
7274
|
-
declare function enhanceMarkdownTables(root?: ParentNode, options?: MarkdownTableEnhancementOptions): number;
|
|
7275
|
-
//#endregion
|
|
7276
7313
|
//#region src/feeds.d.ts
|
|
7277
7314
|
/** Inputs for rendering feed bodies. */
|
|
7278
7315
|
interface FeedsRenderInput {
|
|
@@ -7897,5 +7934,5 @@ declare function oxContent(options?: OxContentOptions): Plugin[];
|
|
|
7897
7934
|
*/
|
|
7898
7935
|
declare function generateVirtualModule(path: string, options: ResolvedOptions): string;
|
|
7899
7936
|
//#endregion
|
|
7900
|
-
export { A11yOptions, AbbreviationsOptions, AttrsOptions, BadgeOptions, type BasePageProps, type BibliographyEntry, BlogAuthor, BlogFeedError, BlogFeedFailurePolicy, BlogFeedSource, BlogOptions, type BudouxLanguage, type BudouxOptions, type BudouxParser, BuiltinEmbedOptions, BuiltinPmOptions, CardOptions, CascadeOptions, type CitationFailureMode, type CitationReference, type CitationsOptions, CodeAnnotationKind, CodeAnnotationSyntax, CodeAnnotationsOptions, type CodeBlockDiagnostic, CodeBlockLintOptions, CodeBlockTypecheckOptions, CodeGroupOptions, CodeImportOptions, type CollectedDocsTest, CollectionEntry, CollectionIncludeField, CollectionManifest, CollectionOptions, CollectionQueryBuilder, CollectionQueryOperator, CollectionsOptions, type ComponentRegistry, ConditionalBlockOptions, ContainerOptions, ContainerTypeOptions, ContributorsOptions, type CrossReferenceEntry, type CrossReferenceFailureMode, type CrossReferenceKind, type CrossReferenceLabelOptions, type CrossReferencesOptions, DEFAULT_HTML_TEMPLATE, DEFAULT_MARKDOWN_EXTENSIONS, DataTableOptions, DefaultTheme, DefinitionListOptions, type DiscoverDocumentMdxIslandsInput, type DiscoverDocumentMdxIslandsResult, type DiscoverRegisteredMdxComponentsInput, DocEntry, DocMember, DocsEntryPoint, DocsNavigationItem, DocsOptions, DocsSortStrategy, DocsSummary, type DocsTestFileOptions, type DocsTestHarnessOptions, DocsTestOptions, DocsTestRunError, type DocsTestRunResult, type DocsTestSource, type DocsTestWriteResult, type DocumentImportDiagnostic, type DocumentImportDiagnosticCode, EditThisPageOptions, EmojiShortcodeOptions, EntryPageConfig, type ExtractedCodeBlock, ExtractedDocs, FeatureConfig, FeedChannelOptions, FeedFormat, FeedItemAttachment, FeedItemAuthor, FeedItemAuthorInput, FeedItemInput, FeedItemsResolveContext, FeedItemsSource, FeedsOptions, type FeedsRenderInput, type FeedsRenderResult, FileTreeIconOptions, FileTreeOptions, Fragment, type FrameworkCodegenMode, type FrameworkCodegenTarget, type FrameworkComponentIsland, type FrameworkMarkdownOptions, type FrameworkRenderTarget, type FrameworkTransformData, type FrontmatterSchema, type GenerateVitePressMigrationConfigOptions, GeneratedDocsData, GeneratedOpenApiDocs, type GitHubLineRange, type GitHubOptions, type GitHubRepoData, type GitHubSourceCommit, type GitHubSourceData, type GitHubSourceRef, type GlobalComponentMap, type GraphvizFailureMode, type GraphvizOptions, type HeadAlternate, type HeadDiagnostic, type HeadInput, type HeadJsonLd, type HeadLink, type HeadMeta, type HeadValidationMode, type HeaderNavItem, HeadingPermalinksOptions, HeroAction, HeroConfig, HeroImage, HeroNotice, I18nOptions, IconsOptions, ImageGalleryOptions, ImageOptions, IncludeOptions, type IncrementalMarkdownParseAppendOptions, type IncrementalMarkdownParseResult, IncrementalMarkdownParser, type IncrementalMarkdownParserOptions, type IncrementalMarkdownRenderAppendOptions, type IncrementalMarkdownRenderResult, IncrementalMarkdownRenderer, type IncrementalMarkdownRendererOptions, type IslandInfo, type JSXChild, type JSXElementType, type JSXNode, type JSXProps, JsonLdOptions, JsonLdPageType, JsonLdPublisherOptions, KeyboardKeysOptions, type LoadStrategy, LocaleConfig, type LocaleLabel, MagicLinkAlias, MagicLinkImageOverride, MagicLinkOptions, type MarkdownChunkSource, MarkdownDisplayFormat, type MarkdownLintFileDiagnostic as MarkdownLintBatchDiagnostic, type MarkdownLintFileDiagnostic, type MarkdownLintDiagnostic, type MarkdownLintDictionaryOptions, type MarkdownLintFileOptions, type MarkdownLintFileOptions as MarkdownLintProjectOptions, type MarkdownLintFileResult, type MarkdownLintFilesResult, type MarkdownLintLanguage, type MarkdownLintOptions, type MarkdownLintResult, type MarkdownLintRuleOptions, type MarkdownLintSeverity, type MarkdownLintStandardDictionaryOptions, MarkdownNode, type MarkdownProcessor, MarkdownSourceOptions, type MarkdownTableEnhancementOptions, MarkdownTransformer, MathOptions, MdxImport, MdxImportSpecifier, MdxImportSpecifierKind, type MermaidOptions, type NavGroup, NavItem, NotByAiOptions, NotFoundOptions, type OgBrowserSession, OgImageOptions, type OgImagePageEntry, type OgImageOptions$1 as OgImagePluginOptions, OgImageRenderer, type OgImageResult, OgImageSatoriFont, OgImageSatoriFontWeight, OgImageSatoriOptions, type OgImageTemplateFn, type OgImageTemplateProps, type OgpData, type OgpOptions, OpenApiDocsInput, OpenApiDocsOptions, OpenApiDocsSource, OxContentOptions, type PageChromeFlags, type PageData, type PageProps, PageResourceError, ParamDoc, type ParseIslandsResult, PartialsOptions, PermalinksOptions, type PlanSsgOutputsInput, type PlanSsgOutputsOptions, PublishStateOptions, PwaOptions, ReaderChromeOptions, type RedditEmbedOptions, type RedditPostData, type RedditPostReference, RedirectProvider, RedirectsOptions, type RenderContext, type RenderFeedFilesInput, type RenderFeedFilesResult, type RenderIslandComponentImportsInput, type RenderIslandFn, type RenderedFeedFile, type RenderedHead, type ResolveDocumentComponentImportsInput, type ResolveDocumentComponentImportsResult, ResolvedA11y, ResolvedAbbreviationsOptions, ResolvedAttrsOptions, ResolvedBadgeOptions, ResolvedBlogFeedSource, ResolvedBlogOptions, type ResolvedBudouxOptions, ResolvedBuiltinEmbedOptions, ResolvedCardOptions, ResolvedCascadeOptions, type ResolvedCitationsOptions, ResolvedCodeAnnotationsOptions, ResolvedCodeBlockLintOptions, ResolvedCodeBlockTypecheckOptions, ResolvedCodeGroupOptions, ResolvedCodeImportOptions, ResolvedCollectionOptions, ResolvedCollectionsOptions, ResolvedConditionalBlockOptions, ResolvedContainerOptions, ResolvedContributors, type ResolvedCrossReferencesOptions, ResolvedDataTableOptions, ResolvedDefinitionListOptions, ResolvedDocsEntryPoint, ResolvedDocsOptions, ResolvedDocsTestOptions, type ResolvedDocumentComponentImport, ResolvedEditThisPageOptions, ResolvedEmojiShortcodeOptions, ResolvedFeedChannel, ResolvedFeedsOptions, ResolvedFileTreeOptions, type ResolvedGraphvizOptions, ResolvedHeadingPermalinksOptions, ResolvedI18nOptions, ResolvedIconsOptions, ResolvedImageGalleryOptions, ResolvedImageOptions, ResolvedIncludeOptions, ResolvedJsonLd, ResolvedKeyboardKeysOptions, ResolvedMagicLinkOptions, ResolvedMarkdownSourceOptions, ResolvedMathOptions, ResolvedNotByAiOptions, ResolvedNotFoundOptions, ResolvedOgImageOptions, ResolvedOpenApiDocsInput, ResolvedOpenApiDocsOptions, ResolvedOptions, ResolvedPartialsOptions, ResolvedPermalinksOptions, ResolvedPublishStateOptions, ResolvedPwaOptions, ResolvedReaderChrome, ResolvedRedirectsOptions, ResolvedResourcesOptions, ResolvedSanitizeOptions, ResolvedSearchOptions, ResolvedSectionIndexOptions, ResolvedSiteMapsOptions, ResolvedSsgOptions, ResolvedStepsOptions, ResolvedTaxonomiesOptions, ResolvedTeamOptions, type ResolvedThemeConfig, ResolvedTimelineOptions, ResolvedTypedHoverOptions, ResolvedVersionEntry, ResolvedVersionsOptions, ResolvedWikiLinkOptions, ResourcesOptions, ReturnDoc, type RunDocsTestsOptions, SanitizeOptions, ScopedSearchQuery, SearchDocument, SearchOptions, SearchResult, SectionIndexOptions, SectionIndexStyle, type SidebarItem, type SiteConfig, type SiteHead, SiteMapsOptions, type SocialLinks, SsgNavigationGroup, SsgNavigationItem, SsgOptions, SsgOutputPageInput, type SsgOutputPlan, StepsOptions, TaxonomiesOptions, TeamLink, TeamMember, TeamOptions, type ThemeAnnouncement, type ThemeColors, type ThemeComponent, type ThemeConfig, type ThemeEmbed, type ThemeEntryPage, type ThemeFontValue, type ThemeFonts, type ThemeFooter, type ThemeHeader, type ThemeLayout, type ThemeProps, type ThemeRenderOptions, type ThemeTokens, type ThemeWebFont, ThrowsDoc, TimelineOptions, TocEntry, type TransformAllOptions, TransformContext, TransformResult, type TwitterEmbedOptions, type TypecheckCodeBlockOptions, TypedHoverOptions, VersionBannerKind, VersionEntry, VersionsOptions, type VitePressConfig, type VitePressFooter, type VitePressLogo, type VitePressNavItem, type VitePressSidebar, type VitePressSidebarItem, type VitePressSocialLink, type VitePressThemeConfig, WikiLinkOptions, type WriteFeedFilesInput, type WriteResourceFilesInput, type WriteResourceFilesPage, type WriteResourceFilesResult, type WrittenDocsTestFile, type YouTubeOptions, applyIslandSsrHtml, buildCollectionManifest, buildSearchIndex, buildSsg, classifyPublishState, clearGraphvizCache, clearRenderContext, collectDocsTests, collectGitHubRepos, collectGitHubSources, collectMdxIslandNamesFromHtml, collectMdxJsxNamesFromAst, collectOgpUrls, convertVitePressNav, convertVitePressSidebar, createFrameworkMarkdownOptions, createI18nPlugin, createIncrementalMarkdownParser, createIncrementalMarkdownRenderer, createMarkdownEnvironment, createMarkdownProcessor, createTheme, defaultTheme, defineCollection, defineCollections, defineTheme, discoverDocumentMdxIslands, discoverRegisteredMdxComponents, each, enhanceMarkdownTables, escapeSvelteMarkup, extractCodeBlocks, extractDocs, extractDocsTests, extractIslandInfo, extractVideoId, fetchGitHubSource, fetchOgpData, fetchRepoData, fromVitePressConfig, generateCollectionsVirtualModule, generateFeeds, generateFrontmatterTypes, generateHydrationScript, generateMarkdown, generateOgImages, generateOpenApiDocs, generateTabsCSS, generateTypes, generateVirtualModule, generateVitePressMigrationConfig, hasIslands, inferType, intersectHydratableComponentNames, intersectRegisteredComponentNames, isMarkdownFilePath, isMdxFilePath, isRegisteredComponent, jsx, jsxs, lintCodeBlocks, lintMarkdown, lintMarkdownAsync, lintMarkdownFile, lintMarkdownFiles, markdownTableScrollLabel, mergeThemes, mermaidClientScript, normalizeMarkdownExtensions, normalizeVitePressFrontmatter, oxContent, parseGitHubLineRange, parseGitHubPermalink, parsePageChromeFlags, parseRedditPostReference, partitionPublishedPages, planSsgOutputs, prefetchGitHubRepos, prefetchGitHubSources, prefetchOgpData, raw, readingTimeMinutes, renderAllPages, renderFeedFiles, renderHead, renderHtmlToFrameworkCode, renderHtmlToReactComponent, renderHtmlToReactCreateElement, renderHtmlToSvelteComponent, renderHtmlToVueComponent, renderHtmlToVueH, renderIslandComponentImports, renderMarkdown, renderMarkdownStream, renderPage, renderToString, resolveAbbreviationsOptions, resolveBadgeOptions, resolveBlogCollectionName, resolveBlogOptions, resolveBudouxOptions, resolveBuiltinEmbedOptions, resolveCardOptions, resolveCascadeOptions, resolveCodeGroupOptions, resolveCollectionsOptions, resolveContentRootPath, resolveDataTableOptions, resolveDocsOptions, resolveDocumentComponentImports, resolveFeedsOptions, resolveFileTreeOptions, resolveGitLastmod, resolveGraphvizOptions, resolveHeadValidation, resolveHeaderNavItems, resolveHeadingPermalinksOptions, resolveI18nOptions, resolveImageGalleryOptions, resolveImageOptions, resolveIncludeOptions, resolveKeyboardKeysOptions, resolveLocaleLabel, resolveMarkdownSourceOptions, resolveMathOptions, resolveMdxForFilePath, resolveNotByAiOptions, resolveNotFoundOptions, resolveOgImageOptions, resolvePageChromeOption, resolvePartialsOptions, resolvePermalinksOptions, resolvePublishStateOptions, resolvePwaOptions, resolveRedirectsOptions, resolveResourcesOptions, resolveSearchOptions, resolveSectionIndexOptions, resolveSiteMapsOptions, resolveSsgOptions, resolveStepsOptions, resolveTaxonomiesOptions, resolveTeamOptions, resolveTheme, resolveTimelineOptions, resolveTypedHoverOptions, resolveVersionsOptions, runDocsTests, setRenderContext, shouldLintMarkdownFile, stripMarkdownExtension, stripViteQuery, transformAllPlugins, transformBudouxHtml, transformGitHub, transformGraphvizStatic, transformIslands, transformMarkdown, transformMermaidStatic, transformOgp, transformRedditEmbeds, transformTabs, transformYouTube, typecheckCodeBlocks, useIsActive, useNav, usePageProps, useRenderContext, useSiteConfig, when, writeDocs, writeDocsTestFiles, writeFeedFiles, writeMarkdownCompanions, writeResourceFiles, writeSearchIndex, writeSiteMapFiles };
|
|
7937
|
+
export { A11yOptions, AbbreviationsOptions, AttrsOptions, BadgeOptions, type BasePageProps, type BibliographyEntry, BlogAuthor, BlogFeedError, BlogFeedFailurePolicy, BlogFeedSource, BlogOptions, type BudouxLanguage, type BudouxOptions, type BudouxParser, BuiltinEmbedOptions, BuiltinPmOptions, CardOptions, CascadeOptions, type CitationFailureMode, type CitationReference, type CitationsOptions, CodeAnnotationKind, CodeAnnotationSyntax, CodeAnnotationsOptions, type CodeBlockDiagnostic, CodeBlockLintOptions, CodeBlockTypecheckOptions, CodeGroupOptions, CodeImportOptions, type CollectedDocsTest, CollectionEntry, CollectionIncludeField, CollectionManifest, CollectionOptions, CollectionQueryBuilder, CollectionQueryOperator, CollectionsOptions, type ComponentRegistry, ConditionalBlockOptions, ContainerOptions, ContainerTypeOptions, ContributorsOptions, type CrossReferenceEntry, type CrossReferenceFailureMode, type CrossReferenceKind, type CrossReferenceLabelOptions, type CrossReferencesOptions, DEFAULT_HTML_TEMPLATE, DEFAULT_MARKDOWN_EXTENSIONS, DataTableOptions, DefaultTheme, DefinitionListOptions, type DiscoverDocumentMdxIslandsInput, type DiscoverDocumentMdxIslandsResult, type DiscoverRegisteredMdxComponentsInput, DocEntry, DocMember, DocsEntryPoint, DocsNavigationItem, DocsOptions, DocsSortStrategy, DocsSummary, type DocsTestFileOptions, type DocsTestHarnessOptions, DocsTestOptions, DocsTestRunError, type DocsTestRunResult, type DocsTestSource, type DocsTestWriteResult, type DocumentImportDiagnostic, type DocumentImportDiagnosticCode, EditThisPageOptions, EditThisPageProvider, EmojiShortcodeOptions, EntryPageConfig, type ExtractedCodeBlock, ExtractedDocs, FeatureConfig, FeedChannelOptions, FeedFormat, FeedItemAttachment, FeedItemAuthor, FeedItemAuthorInput, FeedItemInput, FeedItemsResolveContext, FeedItemsSource, FeedsOptions, type FeedsRenderInput, type FeedsRenderResult, FileTreeIconOptions, FileTreeOptions, Fragment, type FrameworkCodegenMode, type FrameworkCodegenTarget, type FrameworkComponentIsland, type FrameworkMarkdownOptions, type FrameworkRenderTarget, type FrameworkTransformData, type FrontmatterSchema, type GenerateVitePressMigrationConfigOptions, GeneratedDocsData, GeneratedOpenApiDocs, type GitHubLineRange, type GitHubOptions, type GitHubRepoData, type GitHubSourceCommit, type GitHubSourceData, type GitHubSourceRef, type GlobalComponentMap, type GraphvizFailureMode, type GraphvizOptions, type HeadAlternate, type HeadDiagnostic, type HeadInput, type HeadJsonLd, type HeadLink, type HeadMeta, type HeadValidationMode, type HeaderNavItem, HeadingPermalinksOptions, HeroAction, HeroConfig, HeroImage, HeroNotice, I18nOptions, IconsOptions, ImageGalleryOptions, ImageOptions, IncludeOptions, type IncrementalMarkdownParseAppendOptions, type IncrementalMarkdownParseResult, IncrementalMarkdownParser, type IncrementalMarkdownParserOptions, type IncrementalMarkdownRenderAppendOptions, type IncrementalMarkdownRenderResult, IncrementalMarkdownRenderer, type IncrementalMarkdownRendererOptions, type IslandInfo, type JSXChild, type JSXElementType, type JSXNode, type JSXProps, JsonLdOptions, JsonLdPageType, JsonLdPublisherOptions, KeyboardKeysOptions, type LoadStrategy, LocaleConfig, type LocaleLabel, MagicLinkAlias, MagicLinkImageOverride, MagicLinkOptions, type MarkdownChunkSource, MarkdownDisplayFormat, type MarkdownLintFileDiagnostic as MarkdownLintBatchDiagnostic, type MarkdownLintFileDiagnostic, type MarkdownLintDiagnostic, type MarkdownLintDictionaryOptions, type MarkdownLintFileOptions, type MarkdownLintFileOptions as MarkdownLintProjectOptions, type MarkdownLintFileResult, type MarkdownLintFilesResult, type MarkdownLintLanguage, type MarkdownLintOptions, type MarkdownLintResult, type MarkdownLintRuleOptions, type MarkdownLintSeverity, type MarkdownLintStandardDictionaryOptions, MarkdownNode, type MarkdownProcessor, MarkdownSourceOptions, type MarkdownTableEnhancementOptions, MarkdownTransformer, MathErrorPolicy, MathOptions, MdxImport, MdxImportSpecifier, MdxImportSpecifierKind, type MermaidOptions, type NavGroup, NavItem, NotByAiOptions, NotFoundOptions, type OgBrowserSession, OgImageOptions, type OgImagePageEntry, type OgImageOptions$1 as OgImagePluginOptions, OgImageRenderer, type OgImageResult, OgImageSatoriFont, OgImageSatoriFontWeight, OgImageSatoriOptions, type OgImageTemplateFn, type OgImageTemplateProps, type OgpData, type OgpOptions, OpenApiDocsInput, OpenApiDocsOptions, OpenApiDocsSource, OxContentOptions, type PageChromeFlags, type PageData, type PageProps, PageResourceError, ParamDoc, type ParseIslandsResult, PartialsOptions, PermalinksOptions, type PlanSsgOutputsInput, type PlanSsgOutputsOptions, PublishStateOptions, PwaOptions, ReaderChromeOptions, type RedditEmbedOptions, type RedditPostData, type RedditPostReference, RedirectProvider, RedirectsOptions, type RenderContext, type RenderFeedFilesInput, type RenderFeedFilesResult, type RenderIslandComponentImportsInput, type RenderIslandFn, type RenderThemeTokenCssOptions, type RenderedFeedFile, type RenderedHead, type ResolveDocumentComponentImportsInput, type ResolveDocumentComponentImportsResult, ResolvedA11y, ResolvedAbbreviationsOptions, ResolvedAttrsOptions, ResolvedBadgeOptions, ResolvedBlogFeedSource, ResolvedBlogOptions, type ResolvedBudouxOptions, ResolvedBuiltinEmbedOptions, ResolvedCardOptions, ResolvedCascadeOptions, type ResolvedCitationsOptions, ResolvedCodeAnnotationsOptions, ResolvedCodeBlockLintOptions, ResolvedCodeBlockTypecheckOptions, ResolvedCodeGroupOptions, ResolvedCodeImportOptions, ResolvedCollectionOptions, ResolvedCollectionsOptions, ResolvedConditionalBlockOptions, ResolvedContainerOptions, ResolvedContributors, type ResolvedCrossReferencesOptions, ResolvedDataTableOptions, ResolvedDefinitionListOptions, ResolvedDocsEntryPoint, ResolvedDocsOptions, ResolvedDocsTestOptions, type ResolvedDocumentComponentImport, ResolvedEditThisPageOptions, ResolvedEmojiShortcodeOptions, ResolvedFeedChannel, ResolvedFeedsOptions, ResolvedFileTreeOptions, type ResolvedGraphvizOptions, ResolvedHeadingPermalinksOptions, ResolvedI18nOptions, ResolvedIconsOptions, ResolvedImageGalleryOptions, ResolvedImageOptions, ResolvedIncludeOptions, ResolvedJsonLd, ResolvedKeyboardKeysOptions, ResolvedMagicLinkOptions, ResolvedMarkdownSourceOptions, ResolvedMathOptions, ResolvedNotByAiOptions, ResolvedNotFoundOptions, ResolvedOgImageOptions, ResolvedOpenApiDocsInput, ResolvedOpenApiDocsOptions, ResolvedOptions, ResolvedPartialsOptions, ResolvedPermalinksOptions, ResolvedPublishStateOptions, ResolvedPwaOptions, ResolvedReaderChrome, ResolvedRedirectsOptions, ResolvedResourcesOptions, ResolvedSanitizeOptions, ResolvedSearchOptions, ResolvedSectionIndexOptions, ResolvedSiteMapsOptions, ResolvedSsgOptions, ResolvedStepsOptions, ResolvedTaxonomiesOptions, ResolvedTeamOptions, type ResolvedThemeConfig, ResolvedTimelineOptions, ResolvedTypedHoverOptions, ResolvedVersionEntry, ResolvedVersionsOptions, ResolvedWikiLinkOptions, ResourcesOptions, ReturnDoc, type RunDocsTestsOptions, SanitizeOptions, ScopedSearchQuery, SearchDocument, SearchOptions, SearchResult, SectionIndexOptions, SectionIndexStyle, type SidebarItem, type SiteConfig, type SiteHead, SiteMapsOptions, type SocialLinks, SsgNavigationGroup, SsgNavigationItem, SsgOptions, SsgOutputPageInput, type SsgOutputPlan, StepsOptions, TaxonomiesOptions, TeamLink, TeamMember, TeamOptions, type ThemeAnnouncement, type ThemeColors, type ThemeComponent, type ThemeConfig, type ThemeEmbed, type ThemeEntryPage, type ThemeFontValue, type ThemeFonts, type ThemeFooter, type ThemeHeader, type ThemeLayout, type ThemeProps, type ThemeRenderOptions, type ThemeTokenSource, type ThemeTokens, type ThemeWebFont, ThrowsDoc, TimelineOptions, TocEntry, type TransformAllOptions, TransformContext, TransformResult, type TwitterEmbedOptions, type TypecheckCodeBlockOptions, TypedHoverOptions, VersionBannerKind, VersionEntry, VersionsOptions, type VitePressConfig, type VitePressFooter, type VitePressLogo, type VitePressNavItem, type VitePressSidebar, type VitePressSidebarItem, type VitePressSocialLink, type VitePressThemeConfig, WikiLinkOptions, type WriteFeedFilesInput, type WriteResourceFilesInput, type WriteResourceFilesPage, type WriteResourceFilesResult, type WrittenDocsTestFile, type YouTubeOptions, applyIslandSsrHtml, buildCollectionManifest, buildSearchIndex, buildSsg, classifyPublishState, clearGraphvizCache, clearRenderContext, collectDocsTests, collectGitHubRepos, collectGitHubSources, collectMdxIslandNamesFromHtml, collectMdxJsxNamesFromAst, collectOgpUrls, convertVitePressNav, convertVitePressSidebar, createFrameworkMarkdownOptions, createI18nPlugin, createIncrementalMarkdownParser, createIncrementalMarkdownRenderer, createMarkdownEnvironment, createMarkdownProcessor, createTheme, defaultTheme, defineCollection, defineCollections, defineTheme, discoverDocumentMdxIslands, discoverRegisteredMdxComponents, each, enhanceMarkdownTables, escapeSvelteMarkup, extractCodeBlocks, extractDocs, extractDocsTests, extractIslandInfo, extractVideoId, fetchGitHubSource, fetchOgpData, fetchRepoData, fromVitePressConfig, generateCollectionsVirtualModule, generateFeeds, generateFrontmatterTypes, generateHydrationScript, generateMarkdown, generateOgImages, generateOpenApiDocs, generateTabsCSS, generateTypes, generateVirtualModule, generateVitePressMigrationConfig, hasIslands, inferType, intersectHydratableComponentNames, intersectRegisteredComponentNames, isMarkdownFilePath, isMdxFilePath, isRegisteredComponent, jsx, jsxs, lintCodeBlocks, lintMarkdown, lintMarkdownAsync, lintMarkdownFile, lintMarkdownFiles, markdownTableScrollLabel, mergeThemes, mermaidClientScript, normalizeMarkdownExtensions, normalizeVitePressFrontmatter, oxContent, parseGitHubLineRange, parseGitHubPermalink, parsePageChromeFlags, parseRedditPostReference, partitionPublishedPages, planSsgOutputs, prefetchGitHubRepos, prefetchGitHubSources, prefetchOgpData, raw, readingTimeMinutes, renderAllPages, renderFeedFiles, renderHead, renderHtmlToFrameworkCode, renderHtmlToReactComponent, renderHtmlToReactCreateElement, renderHtmlToSvelteComponent, renderHtmlToVueComponent, renderHtmlToVueH, renderIslandComponentImports, renderMarkdown, renderMarkdownStream, renderPage, renderThemeTokenCss, renderToString, resolveAbbreviationsOptions, resolveBadgeOptions, resolveBlogCollectionName, resolveBlogOptions, resolveBudouxOptions, resolveBuiltinEmbedOptions, resolveCardOptions, resolveCascadeOptions, resolveCodeGroupOptions, resolveCollectionsOptions, resolveContentRootPath, resolveDataTableOptions, resolveDocsOptions, resolveDocumentComponentImports, resolveFeedsOptions, resolveFileTreeOptions, resolveGitLastmod, resolveGraphvizOptions, resolveHeadValidation, resolveHeaderNavItems, resolveHeadingPermalinksOptions, resolveI18nOptions, resolveImageGalleryOptions, resolveImageOptions, resolveIncludeOptions, resolveKeyboardKeysOptions, resolveLocaleLabel, resolveMarkdownSourceOptions, resolveMathOptions, resolveMdxForFilePath, resolveNotByAiOptions, resolveNotFoundOptions, resolveOgImageOptions, resolvePageChromeOption, resolvePartialsOptions, resolvePermalinksOptions, resolvePublishStateOptions, resolvePwaOptions, resolveRedirectsOptions, resolveResourcesOptions, resolveSearchOptions, resolveSectionIndexOptions, resolveSiteMapsOptions, resolveSsgOptions, resolveStepsOptions, resolveTaxonomiesOptions, resolveTeamOptions, resolveTheme, resolveTimelineOptions, resolveTypedHoverOptions, resolveVersionsOptions, runDocsTests, setRenderContext, shouldLintMarkdownFile, stripMarkdownExtension, stripViteQuery, tokensToCss, transformAllPlugins, transformBudouxHtml, transformGitHub, transformGraphvizStatic, transformIslands, transformMarkdown, transformMermaidStatic, transformOgp, transformRedditEmbeds, transformTabs, transformYouTube, typecheckCodeBlocks, useIsActive, useNav, usePageProps, useRenderContext, useSiteConfig, when, writeDocs, writeDocsTestFiles, writeFeedFiles, writeMarkdownCompanions, writeResourceFiles, writeSearchIndex, writeSiteMapFiles };
|
|
7901
7938
|
//# sourceMappingURL=index.d.mts.map
|