fix: inconsistent tabs v spaces

This commit is contained in:
bholmesdev 2023-03-01 16:43:36 -05:00
parent 253ea68505
commit b55a2c93b1

View file

@ -100,22 +100,22 @@ import markdoc from '@astrojs/markdoc';
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
integrations: [ integrations: [
markdoc({ markdoc({
variables: { variables: {
version: '0.0.1', version: '0.0.1',
} },
tags: { tags: {
aside: { aside: {
// See "Content `components` prop section // See "Content `components` prop section
// for more on rendering components via tags // for more on rendering components via tags
render: 'Aside', render: 'Aside',
attributes: { attributes: {
type: { type: String }, type: { type: String },
title: { type: String }, title: { type: String },
}, },
}, },
}, },
}), }),
], ],
}); });
``` ```