Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
34
node_modules/@astrojs/prism/README.md
generated
vendored
Normal file
34
node_modules/@astrojs/prism/README.md
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
# @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'
|
||||
);
|
||||
```
|
Reference in New Issue
Block a user