Remove Prism language-* classes from code block components

highlight.py handles syntax coloring with Tailwind classes —
Prism classes were conflicting and are not needed.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 01:14:11 +00:00
parent e4e43177a8
commit ea18a402d6
2 changed files with 3 additions and 5 deletions

View File

@@ -13,8 +13,7 @@
(defcomp ~example-source (&key code)
(div :class "bg-stone-50 border border-stone-200 rounded p-4 mt-3 overflow-x-auto"
(pre :class "text-sm"
(code :class "language-lisp" code))))
(pre :class "text-sm" (code code))))
;; --- Click to load demo ---