0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/astro-prism
Darius 72c7ae9901
update formatter config (#11640)
* update formatter config

* format

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
2024-08-08 12:12:50 +02:00
..
src update formatter config (#11640) 2024-08-08 12:12:50 +02:00
CHANGELOG.md [ci] release (#10739) 2024-04-11 13:24:47 +02:00
package.json chore(deps): update all non-major dependencies (#10958) 2024-05-09 15:20:13 +08:00
Prism.astro nit: export props has been unnecessary.. forever (#7646) 2023-07-14 09:57:06 -04:00
README.md update formatter config (#11640) 2024-08-08 12:12:50 +02: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',
);