8df6a423c5
* fix: handle hyphens in tag names * test: add hyphen in test suite * chore: changeset
26 lines
551 B
TypeScript
26 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',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|