2022-03-15 20:27:17 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-02-04 18:49:50 +00:00
|
|
|
import addClasses from './add-classes.mjs';
|
2021-08-23 21:07:03 +00:00
|
|
|
|
2022-03-15 20:27:17 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2021-12-22 21:11:05 +00:00
|
|
|
// Enable Custom Markdown options, plugins, etc.
|
2022-04-02 18:29:59 +00:00
|
|
|
markdown: {
|
|
|
|
remarkPlugins: ['remark-code-titles'],
|
2022-04-02 20:15:41 +00:00
|
|
|
rehypePlugins: [
|
2022-04-30 00:07:09 +00:00
|
|
|
'rehype-slug',
|
2022-04-02 20:15:41 +00:00
|
|
|
['rehype-autolink-headings', { behavior: 'prepend' }],
|
|
|
|
['rehype-toc', { headings: ['h2', 'h3'] }],
|
|
|
|
[addClasses, { 'h1,h2,h3': 'title' }],
|
|
|
|
],
|
2021-12-22 21:11:05 +00:00
|
|
|
},
|
2021-08-23 21:07:03 +00:00
|
|
|
});
|