You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add smartypants flag
* test: smartypants in markdown and mdx
* docs: Smartypants -> SmartyPants
* chore: changeset
* chore: update changeset with 1.0 -> 2.0 in mind
* chore: bump to minor change
Introduce a `smartypants` flag to opt-out of Astro's default SmartyPants plugin.
8
+
9
+
```js
10
+
{
11
+
markdown: {
12
+
smartypants:false,
13
+
}
14
+
}
15
+
```
16
+
17
+
#### Migration
18
+
19
+
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:
20
+
-`markdown.gfm` to disable GitHub-Flavored Markdown
* Astro uses the [SmartyPants formatter](https://daringfireball.net/projects/smartypants/) by default. To disable this, set the `smartypants` flag to `false`:
0 commit comments