astro/packages/astro-prism
2023-08-03 16:03:48 +01:00
..
src fix(#4246): fix Prism indentation and class (#4251) 2022-08-11 10:59:48 -05:00
CHANGELOG.md [ci] release (#7090) 2023-05-18 12:31:59 -04:00
package.json Remove support for Node 16 (#7780) 2023-08-03 16:03:48 +01: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-03 16:03:48 +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'
);