@rspress/shared 0.0.0-nightly-20231112160224 → 0.0.0-nightly-20231113160317
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.d.ts +7 -1
- package/dist/index.js +18 -0
- package/dist/index.mjs +17 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -513,6 +513,7 @@ interface SiteData<ThemeConfig = NormalizedConfig> {
|
|
513
513
|
markdown: {
|
514
514
|
showLineNumbers: boolean;
|
515
515
|
defaultWrapCode: boolean;
|
516
|
+
codeHighlighter: 'prism' | 'shiki';
|
516
517
|
};
|
517
518
|
multiVersion: {
|
518
519
|
default: string;
|
@@ -646,6 +647,10 @@ interface MarkdownOptions {
|
|
646
647
|
* Register global components in mdx files
|
647
648
|
*/
|
648
649
|
globalComponents?: string[];
|
650
|
+
/**
|
651
|
+
* Code highlighter, default is prism for performance reason
|
652
|
+
*/
|
653
|
+
codeHighlighter?: 'prism' | 'shiki';
|
649
654
|
/**
|
650
655
|
* Register prism languages
|
651
656
|
*/
|
@@ -667,6 +672,7 @@ declare const MDX_REGEXP: RegExp;
|
|
667
672
|
declare const APPEARANCE_KEY = "rspress-theme-appearance";
|
668
673
|
declare const SEARCH_INDEX_NAME = "search_index";
|
669
674
|
declare const RSPRESS_TEMP_DIR = ".rspress";
|
675
|
+
declare const DEFAULT_HIGHLIGHT_LANGUAGES: (string | string[])[];
|
670
676
|
declare const isSCM: () => boolean;
|
671
677
|
declare const isProduction: () => boolean;
|
672
678
|
declare const isDebugMode: () => boolean;
|
@@ -709,4 +715,4 @@ declare function removeBase(url: string, base: string): string;
|
|
709
715
|
declare function withoutHash(url: string): string;
|
710
716
|
declare const mergeDocConfig: (...configs: UserConfig[]) => UserConfig;
|
711
717
|
|
712
|
-
export { APPEARANCE_KEY, AdditionalPage, BaseRuntimePageInfo, Config, Config$1 as DefaultThemeConfig, DocFooter, EditLink, Feature, Footer, FrontMatterMeta, HASH_REGEXP, Header, Hero, Image, LocalSearchOptions, Locale, LocaleConfig, LocaleLink, LocaleLinks, MDX_REGEXP, MarkdownOptions, Nav, NavItem, NavItemWithChildren, NavItemWithLink, NavItemWithLinkAndChildren, NormalizedConfig, NormalizedConfig as NormalizedDefaultThemeConfig, NormalizedLocales, NormalizedSidebar, NormalizedSidebarGroup, PageData, PageIndexInfo, PageModule, PageType, RspressPlugin as Plugin, QUERY_REGEXP, RSPRESS_TEMP_DIR, RemotePageInfo, RemoteSearchIndexInfo, RemoteSearchOptions, ReplaceRule, Route, RouteMeta, RouteOptions, RspressPlugin, SEARCH_INDEX_NAME, SearchHooks, SearchOptions, Sidebar, SidebarDivider, SidebarGroup, SidebarItem, SiteData, SocialLink, SocialLinkIcon, UserConfig, addLeadingSlash, addTrailingSlash, cleanUrl, inBrowser, isDebugMode, isExternalUrl, isProduction, isSCM, mergeDocConfig, normalizeHref, normalizePosixPath, normalizeSlash, omit, parseUrl, removeBase, removeHash, removeLeadingSlash, removeTrailingSlash, replaceLang, replaceVersion, slash, withBase, withoutBase, withoutHash, withoutLang };
|
718
|
+
export { APPEARANCE_KEY, AdditionalPage, BaseRuntimePageInfo, Config, DEFAULT_HIGHLIGHT_LANGUAGES, Config$1 as DefaultThemeConfig, DocFooter, EditLink, Feature, Footer, FrontMatterMeta, HASH_REGEXP, Header, Hero, Image, LocalSearchOptions, Locale, LocaleConfig, LocaleLink, LocaleLinks, MDX_REGEXP, MarkdownOptions, Nav, NavItem, NavItemWithChildren, NavItemWithLink, NavItemWithLinkAndChildren, NormalizedConfig, NormalizedConfig as NormalizedDefaultThemeConfig, NormalizedLocales, NormalizedSidebar, NormalizedSidebarGroup, PageData, PageIndexInfo, PageModule, PageType, RspressPlugin as Plugin, QUERY_REGEXP, RSPRESS_TEMP_DIR, RemotePageInfo, RemoteSearchIndexInfo, RemoteSearchOptions, ReplaceRule, Route, RouteMeta, RouteOptions, RspressPlugin, SEARCH_INDEX_NAME, SearchHooks, SearchOptions, Sidebar, SidebarDivider, SidebarGroup, SidebarItem, SiteData, SocialLink, SocialLinkIcon, UserConfig, addLeadingSlash, addTrailingSlash, cleanUrl, inBrowser, isDebugMode, isExternalUrl, isProduction, isSCM, mergeDocConfig, normalizeHref, normalizePosixPath, normalizeSlash, omit, parseUrl, removeBase, removeHash, removeLeadingSlash, removeTrailingSlash, replaceLang, replaceVersion, slash, withBase, withoutBase, withoutHash, withoutLang };
|
package/dist/index.js
CHANGED
@@ -21,6 +21,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
21
21
|
var src_exports = {};
|
22
22
|
__export(src_exports, {
|
23
23
|
APPEARANCE_KEY: () => APPEARANCE_KEY,
|
24
|
+
DEFAULT_HIGHLIGHT_LANGUAGES: () => DEFAULT_HIGHLIGHT_LANGUAGES,
|
24
25
|
HASH_REGEXP: () => HASH_REGEXP,
|
25
26
|
MDX_REGEXP: () => MDX_REGEXP,
|
26
27
|
QUERY_REGEXP: () => QUERY_REGEXP,
|
@@ -1116,6 +1117,22 @@ var MDX_REGEXP = /\.mdx?$/;
|
|
1116
1117
|
var APPEARANCE_KEY = "rspress-theme-appearance";
|
1117
1118
|
var SEARCH_INDEX_NAME = "search_index";
|
1118
1119
|
var RSPRESS_TEMP_DIR = ".rspress";
|
1120
|
+
var DEFAULT_HIGHLIGHT_LANGUAGES = [
|
1121
|
+
["js", "javascript"],
|
1122
|
+
["ts", "typescript"],
|
1123
|
+
["jsx", "tsx"],
|
1124
|
+
"tsx",
|
1125
|
+
"json",
|
1126
|
+
"css",
|
1127
|
+
"scss",
|
1128
|
+
"less",
|
1129
|
+
["xml", "xml-doc"],
|
1130
|
+
"diff",
|
1131
|
+
"yaml",
|
1132
|
+
["md", "markdown"],
|
1133
|
+
["mdx", "tsx"],
|
1134
|
+
"bash"
|
1135
|
+
];
|
1119
1136
|
var isSCM = () => Boolean(process.env.BUILD_VERSION);
|
1120
1137
|
var isProduction = () => process.env.NODE_ENV === "production";
|
1121
1138
|
var isDebugMode = () => Boolean(process.env.DOC_DEBUG);
|
@@ -1295,6 +1312,7 @@ var mergeDocConfig = (...configs) => mergeWith_default({}, ...configs, (target,
|
|
1295
1312
|
// Annotate the CommonJS export names for ESM import in node:
|
1296
1313
|
0 && (module.exports = {
|
1297
1314
|
APPEARANCE_KEY,
|
1315
|
+
DEFAULT_HIGHLIGHT_LANGUAGES,
|
1298
1316
|
HASH_REGEXP,
|
1299
1317
|
MDX_REGEXP,
|
1300
1318
|
QUERY_REGEXP,
|
package/dist/index.mjs
CHANGED
@@ -1060,6 +1060,22 @@ var MDX_REGEXP = /\.mdx?$/;
|
|
1060
1060
|
var APPEARANCE_KEY = "rspress-theme-appearance";
|
1061
1061
|
var SEARCH_INDEX_NAME = "search_index";
|
1062
1062
|
var RSPRESS_TEMP_DIR = ".rspress";
|
1063
|
+
var DEFAULT_HIGHLIGHT_LANGUAGES = [
|
1064
|
+
["js", "javascript"],
|
1065
|
+
["ts", "typescript"],
|
1066
|
+
["jsx", "tsx"],
|
1067
|
+
"tsx",
|
1068
|
+
"json",
|
1069
|
+
"css",
|
1070
|
+
"scss",
|
1071
|
+
"less",
|
1072
|
+
["xml", "xml-doc"],
|
1073
|
+
"diff",
|
1074
|
+
"yaml",
|
1075
|
+
["md", "markdown"],
|
1076
|
+
["mdx", "tsx"],
|
1077
|
+
"bash"
|
1078
|
+
];
|
1063
1079
|
var isSCM = () => Boolean(process.env.BUILD_VERSION);
|
1064
1080
|
var isProduction = () => process.env.NODE_ENV === "production";
|
1065
1081
|
var isDebugMode = () => Boolean(process.env.DOC_DEBUG);
|
@@ -1238,6 +1254,7 @@ var mergeDocConfig = (...configs) => mergeWith_default({}, ...configs, (target,
|
|
1238
1254
|
});
|
1239
1255
|
export {
|
1240
1256
|
APPEARANCE_KEY,
|
1257
|
+
DEFAULT_HIGHLIGHT_LANGUAGES,
|
1241
1258
|
HASH_REGEXP,
|
1242
1259
|
MDX_REGEXP,
|
1243
1260
|
QUERY_REGEXP,
|