mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
27 lines
551 B
TypeScript
27 lines
551 B
TypeScript
|
import { defineMarkdocConfig, component } from '@astrojs/markdoc/config';
|
||
|
|
||
|
export default defineMarkdocConfig({
|
||
|
nodes: {
|
||
|
fence: {
|
||
|
render: component('./src/components/Code.astro'),
|
||
|
attributes: {
|
||
|
language: { type: String },
|
||
|
content: { type: String },
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
tags: {
|
||
|
'marquee-element': {
|
||
|
render: component('./src/components/CustomMarquee.astro'),
|
||
|
attributes: {
|
||
|
direction: {
|
||
|
type: String,
|
||
|
default: 'left',
|
||
|
matches: ['left', 'right', 'up', 'down'],
|
||
|
errorLevel: 'critical',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|