|
1 년 전 | |
---|---|---|
.. | ||
src | 1 년 전 | |
CHANGELOG.md | 1 년 전 | |
Prism.astro | 1 년 전 | |
README.md | 1 년 전 | |
package.json | 1 년 전 | |
tsconfig.json | 1 년 전 |
Supports Prism highlighting in Astro projects
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';`} />
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'
);