summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2022-08-11 16:01:28 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-08-11 16:01:28 +0000
commit54ff0a454ce7ed0e2d5b4b9bcb069f0bf5031d4e (patch)
tree44b7552f2efeebd86f95f9952da20cc82f5d55be
parent1f0dd31d9239b5e3dca99c88d021e7a9a3e2054d (diff)
downloadastro-54ff0a454ce7ed0e2d5b4b9bcb069f0bf5031d4e.tar.gz
astro-54ff0a454ce7ed0e2d5b4b9bcb069f0bf5031d4e.tar.zst
astro-54ff0a454ce7ed0e2d5b4b9bcb069f0bf5031d4e.zip
[ci] format
-rw-r--r--packages/astro-prism/Prism.astro5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro-prism/Prism.astro b/packages/astro-prism/Prism.astro
index fab9dafe2..f26e53c13 100644
--- a/packages/astro-prism/Prism.astro
+++ b/packages/astro-prism/Prism.astro
@@ -11,4 +11,7 @@ const { class: className, lang, code } = Astro.props as Props;
const { classLanguage, html } = runHighlighterWithAstro(lang, code);
---
-<pre class={[className, classLanguage].filter(Boolean).join(' ')}><code class={classLanguage} set:html={html} /></pre>
+<pre
+ class={[className, classLanguage]
+ .filter(Boolean)
+ .join(' ')}><code class={classLanguage} set:html={html} /></pre>