From 25edd88caee71f647c4e3bc8e6346f49f97b98dc Mon Sep 17 00:00:00 2001 From: natemoo-re Date: Wed, 25 Jan 2023 23:22:56 +0000 Subject: [PATCH] [ci] format --- packages/astro/components/Code.astro | 2 +- packages/astro/components/Shiki.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/astro/components/Code.astro b/packages/astro/components/Code.astro index 7996e1b53..0c5f946af 100644 --- a/packages/astro/components/Code.astro +++ b/packages/astro/components/Code.astro @@ -57,7 +57,7 @@ const highlighter = await getHighlighter({ langs: typeof lang !== 'string' ? [lang] : undefined, }); const _html = highlighter.codeToHtml(code, { - lang: typeof lang === 'string' ? lang : lang.id + lang: typeof lang === 'string' ? lang : lang.id, }); const html = repairShikiTheme(_html); --- diff --git a/packages/astro/components/Shiki.js b/packages/astro/components/Shiki.js index 8e32f5f74..bc94e2dce 100644 --- a/packages/astro/components/Shiki.js +++ b/packages/astro/components/Shiki.js @@ -25,7 +25,6 @@ async function resolveHighlighter(opts) { resolvedThemes.push(await themes[opts.theme]()); } - let resolvedLanguages; if (opts.langs) { resolvedLanguages = opts.langs;