astro/packages/astro-prism
2023-09-13 16:49:22 +02:00
..
src fix(#4246): fix Prism indentation and class (#4251) 2022-08-11 10:59:48 -05:00
CHANGELOG.md [ci] release (#8279) 2023-08-30 13:38:28 +02:00
package.json [ci] release (#8279) 2023-08-30 13:38:28 +02:00
Prism.astro nit: export props has been unnecessary.. forever (#7646) 2023-07-14 09:57:06 -04:00
README.md Format markdown files (#7439) 2023-06-26 11:34:13 +08:00
tsconfig.json config: migrate us to moduleResolution: 'node16' (#8519) 2023-09-13 16:49:22 +02: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'
);