astro/packages/astro-prism
Houston (Bot) 5598feb718
[ci] release (#8279)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-08-30 13:38:28 +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 Remove support for Node 16 (#7780) 2023-08-08 11:01:33 +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'
);