summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/nuldoc-src/components/PageLayout.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-29 00:47:55 +0900
committernsfisis <nsfisis@gmail.com>2025-03-29 00:55:14 +0900
commitd30dfc89bf1b673b2fdc0638766b930adaec228c (patch)
tree739d8826451947adfeb526ef1adeb1db397a9af4 /vhosts/blog/nuldoc-src/components/PageLayout.tsx
parentf65ec15aaf8fc46685c39d721cab82f64baead8c (diff)
downloadnsfisis.dev-d30dfc89bf1b673b2fdc0638766b930adaec228c.tar.gz
nsfisis.dev-d30dfc89bf1b673b2fdc0638766b930adaec228c.tar.zst
nsfisis.dev-d30dfc89bf1b673b2fdc0638766b930adaec228c.zip
feat(blog/nuldoc): migrate syntax highlighter from highlight.js to shiki.js
Diffstat (limited to 'vhosts/blog/nuldoc-src/components/PageLayout.tsx')
-rw-r--r--vhosts/blog/nuldoc-src/components/PageLayout.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/vhosts/blog/nuldoc-src/components/PageLayout.tsx b/vhosts/blog/nuldoc-src/components/PageLayout.tsx
index c7145e0a..1cd0aebf 100644
--- a/vhosts/blog/nuldoc-src/components/PageLayout.tsx
+++ b/vhosts/blog/nuldoc-src/components/PageLayout.tsx
@@ -20,7 +20,7 @@ export default function PageLayout(
metaKeywords,
metaTitle,
metaAtomFeedHref,
- requiresSyntaxHighlight,
+ requiresSyntaxHighlight: _,
config,
children,
}: Props,
@@ -54,8 +54,6 @@ export default function PageLayout(
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<title>{metaTitle}</title>
<StaticStylesheet fileName="/style.css" config={config} />
- {requiresSyntaxHighlight &&
- <StaticStylesheet fileName="/hl.css" config={config} />}
</head>
{children}
</html>