64432bcb87
* Upgrade @astrojs/prism to a real package, fix component import not working * Remove `@astrojs/prism` as a dependency of `astro` * Update lock file * Refactor to multiple files * Oops, can't have astro imports run inside node * Follow Nate's suggestion on being minors instead of patchs * Update lockfile
31 lines
617 B
Markdown
31 lines
617 B
Markdown
# @astrojs/prism
|
||
|
||
Supports Prism highlighting in Astro projects
|
||
|
||
## Component
|
||
|
||
This package exports a component to support highlighting inside an Astro file. Example:
|
||
|
||
```astro
|
||
---
|
||
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
|
||
|
||
```typescript
|
||
import { runHighlighterWithAstro } from '@astrojs/prism';
|
||
|
||
runHighlighterWithAstro(`
|
||
---
|
||
const helloAstro = 'Hello, Astro!';
|
||
---
|
||
|
||
<div>{helloAstro}</div>
|
||
`, 'astro');
|
||
```
|