mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
31 lines
602 B
TypeScript
31 lines
602 B
TypeScript
import { component, defineMarkdocConfig } from '@astrojs/markdoc/config';
|
|
|
|
export default defineMarkdocConfig({
|
|
extends: [preset()],
|
|
});
|
|
|
|
function preset() {
|
|
return {
|
|
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'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|