Plugins
This template uses @mdx-js/mdx
to compile markdown.
To add plugins, edit /mdx/compile.ts
.
Typescript
// ...
const options: CompileOptions = {
format: 'md',
outputFormat: 'function-body',
remarkPlugins: [remarkGfm], // edit here!
development: false,
rehypePlugins: [
// ...
],
};
// ...