Files
skills-here-run-place/node_modules/@astrojs/prism
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00
..
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00
2026-02-12 02:04:10 +01:00

@astrojs/prism

Supports Prism highlighting in Astro projects

Component

This package exports a component to support highlighting inside an Astro file. Example:

---
import { Prism } from '@astrojs/prism';
---

<Prism lang="js" code={`const foo = 'bar';`} />

Internal

This package exports a runHighlighterWithAstro function to highlight while making sure the Astro language is loaded beforehand

import { runHighlighterWithAstro } from '@astrojs/prism';

runHighlighterWithAstro(
  `
  ---
    const helloAstro = 'Hello, Astro!';
  ---

  <div>{helloAstro}</div>
`,
  'astro',
);