修复单主题时的 BUG
This commit is contained in:
parent
280c69586f
commit
98ff7de56a
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hexo-highlighter-shiki",
|
"name": "hexo-highlighter-shiki",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"description": "A package for Hexo which use Shiki to render code highlight.",
|
"description": "A package for Hexo which use Shiki to render code highlight.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -69,6 +69,7 @@ export async function init(hexo: Hexo) {
|
|||||||
for (const extra_theme of [].concat(config.additional.themes)) {
|
for (const extra_theme of [].concat(config.additional.themes)) {
|
||||||
additional_themes.push(JSON.parse(readFileSync(extra_theme, "utf8")));
|
additional_themes.push(JSON.parse(readFileSync(extra_theme, "utf8")));
|
||||||
}
|
}
|
||||||
|
// 处理主题
|
||||||
const themes = additional_themes.concat(
|
const themes = additional_themes.concat(
|
||||||
(typeof config.theme === "string" ? [config.theme] : Object.values(config.theme)).filter(
|
(typeof config.theme === "string" ? [config.theme] : Object.values(config.theme)).filter(
|
||||||
(theme) => theme in bundledThemes
|
(theme) => theme in bundledThemes
|
||||||
@ -151,7 +152,7 @@ export async function init(hexo: Hexo) {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
if (config.theme === "string")
|
if (typeof config.theme === "string")
|
||||||
pre = highlighter.codeToHtml(code, {
|
pre = highlighter.codeToHtml(code, {
|
||||||
lang,
|
lang,
|
||||||
theme: config.theme,
|
theme: config.theme,
|
||||||
|
Loading…
Reference in New Issue
Block a user