summaryrefslogtreecommitdiff
path: root/packages/integrations/markdoc/test/fixtures/render-null/markdoc.config.mjs
blob: 5db65fddd5b903fc1e4143cdd5502e1fcf01ee22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { defineMarkdocConfig, nodes, component } from '@astrojs/markdoc/config';

export default defineMarkdocConfig({
	nodes: {
		document: {
			...nodes.document,
			render: null,
		},
	},
	tags: {
		'div-wrapper': {
			render: component('./src/components/DivWrapper.astro'),
		},
	},
});