docs: share handle non bundled langs

This commit is contained in:
Jay V 2025-07-15 17:47:18 -04:00
parent 8a3e581edc
commit 1af103d29e
2 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import { codeToHtml } from "shiki"
import { codeToHtml, bundledLanguages } from "shiki"
import { createResource, Suspense } from "solid-js"
import { transformerNotationDiff } from "@shikijs/transformers"
import style from "./content-code.module.css"
@ -15,7 +15,7 @@ export function ContentCode(props: Props) {
// TODO: For testing delays
// await new Promise((resolve) => setTimeout(resolve, 3000))
return (await codeToHtml(code || "", {
lang: lang || "text",
lang: lang && lang in bundledLanguages ? lang : "text",
themes: {
light: "github-light",
dark: "github-dark",

View file

@ -150,7 +150,6 @@
flex-direction: column;
align-items: flex-start;
gap: 0.375rem;
padding-bottom: 1rem;
[data-slot="provider"] {
line-height: 18px;