astro/packages/astro-prism
Bjorn Lu 8e3cb20b5c
Format markdown files (#7439)
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
2023-06-26 11:34:13 +08: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 Update safe dependencies (#7430) 2023-06-21 21:09:49 +08:00
Prism.astro [ci] format 2022-08-11 16:01:28 +00:00
README.md Format markdown files (#7439) 2023-06-26 11:34:13 +08:00
tsconfig.json Update compilation target for Node 16 (#6213) 2023-03-06 13:57:16 -05: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'
);