summaryrefslogtreecommitdiff
path: root/.changeset/angry-pots-boil.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/angry-pots-boil.md')
-rw-r--r--.changeset/angry-pots-boil.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/.changeset/angry-pots-boil.md b/.changeset/angry-pots-boil.md
deleted file mode 100644
index 7d367da3c..000000000
--- a/.changeset/angry-pots-boil.md
+++ /dev/null
@@ -1,34 +0,0 @@
----
-'astro': minor
-'@astrojs/mdx': minor
-'@astrojs/markdown-remark': minor
----
-
-Introduce a `smartypants` flag to opt-out of Astro's default SmartyPants plugin.
-
-```js
-{
- markdown: {
- smartypants: false,
- }
-}
-```
-
- #### Migration
-
- You may have disabled Astro's built-in plugins (GitHub-Flavored Markdown and Smartypants) with the `extendDefaultPlugins` option. This has now been split into 2 flags to disable each plugin individually:
- - `markdown.gfm` to disable GitHub-Flavored Markdown
- - `markdown.smartypants` to disable SmartyPants
-
- ```diff
- // astro.config.mjs
- import { defineConfig } from 'astro/config';
-
- export default defineConfig({
- markdown: {
- - extendDefaultPlugins: false,
- + smartypants: false,
- + gfm: false,
- }
- });
- ```