astro/packages/astro-prism
Houston (Bot) 43daac7a9b
[ci] release (#6476)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-03-13 16:05:43 -04:00
..
src fix(#4246): fix Prism indentation and class (#4251) 2022-08-11 10:59:48 -05:00
CHANGELOG.md [ci] release (#6476) 2023-03-13 16:05:43 -04:00
package.json [ci] release (#6476) 2023-03-13 16:05:43 -04:00
Prism.astro [ci] format 2022-08-11 16:01:28 +00:00
README.md Refactor @astrojs/prism, fix Prism component import not working (#4114) 2022-08-02 15:53:18 -04: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');