summaryrefslogtreecommitdiff
path: root/examples/with-markdoc/markdoc.config.mjs
blob: 0ae63d4eec3eaf11caab730416e8d78fdd168b4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
import Aside from './src/components/Aside.astro';

export default defineMarkdocConfig({
	tags: {
		aside: {
			render: Aside,
			attributes: {
				type: { type: String },
				title: { type: String },
			},
		},
	},
});