diff options
author | 2024-10-11 22:39:31 +0800 | |
---|---|---|
committer | 2024-10-11 22:39:31 +0800 | |
commit | fd367b5341037ea5026b859e995a66d32f78498b (patch) | |
tree | ea3b8912332b1e8299ba4a8435fb5577a7491abe /examples/with-markdown-plugins/astro.config.mjs | |
parent | 58e22bd042f9a67c2167605bc7ee45538f1b4921 (diff) | |
download | astro-fd367b5341037ea5026b859e995a66d32f78498b.tar.gz astro-fd367b5341037ea5026b859e995a66d32f78498b.tar.zst astro-fd367b5341037ea5026b859e995a66d32f78498b.zip |
Remove some examples (#12196)
Diffstat (limited to 'examples/with-markdown-plugins/astro.config.mjs')
-rw-r--r-- | examples/with-markdown-plugins/astro.config.mjs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/with-markdown-plugins/astro.config.mjs b/examples/with-markdown-plugins/astro.config.mjs deleted file mode 100644 index af2d96e75..000000000 --- a/examples/with-markdown-plugins/astro.config.mjs +++ /dev/null @@ -1,16 +0,0 @@ -import { defineConfig } from 'astro/config'; -import addClasses from './add-classes.mjs'; - -// https://astro.build/config -export default defineConfig({ - // Enable Custom Markdown options, plugins, etc. - markdown: { - remarkPlugins: ['remark-code-titles'], - rehypePlugins: [ - 'rehype-slug', - ['rehype-autolink-headings', { behavior: 'prepend' }], - ['rehype-toc', { headings: ['h2', 'h3'] }], - [addClasses, { 'h1,h2,h3': 'title' }], - ], - }, -}); |