a11b62ee1f
* fix: config, prism, shiki exports * fix: type error for `render` property * chore: use `.ts` files in select tests for type checks * fix: type error on shiki() promise * chore: changeset
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
import { defineMarkdocConfig } from '@astrojs/markdoc/config';
|
|
|
|
export default defineMarkdocConfig({
|
|
variables: {
|
|
countries: ['ES', 'JP'],
|
|
},
|
|
functions: {
|
|
includes: {
|
|
transform(parameters) {
|
|
const [array, value] = Object.values(parameters);
|
|
return Array.isArray(array) ? array.includes(value) : false;
|
|
},
|
|
},
|
|
},
|
|
})
|