Skip to content

Commit da3d28e

Browse files
authored
feat: add tables support (#1879)
1 parent c090bdb commit da3d28e

4 files changed

Lines changed: 553 additions & 40 deletions

File tree

content/nav.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1788,8 +1788,7 @@
17881788
description: Manage your authentication tokens
17891789
- title: npm trust
17901790
url: /cli/v11/commands/npm-trust
1791-
description: Manage trusted publishing relationships between packages and CI/CD
1792-
providers
1791+
description: Manage trusted publishing relationships between packages and CI/CD providers
17931792
- title: npm undeprecate
17941793
url: /cli/v11/commands/npm-undeprecate
17951794
description: Undeprecate a version of a package

gatsby-config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import path from 'path'
22
import fs from 'fs'
33
import remarkFm from 'remark-frontmatter'
4+
import remarkGfm from 'remark-gfm'
45

56
const {NODE_ENV, GATSBY_CONTENT_ALLOW, GATSBY_CONTENT_IGNORE, GATSBY_CONTENT_DIR = 'content'} = process.env
67
const DEV = NODE_ENV === 'development'
@@ -72,7 +73,7 @@ const config = {
7273
resolve: 'gatsby-plugin-mdx',
7374
options: {
7475
mdxOptions: {
75-
remarkPlugins: [remarkFm],
76+
remarkPlugins: [remarkFm, remarkGfm],
7677
},
7778
},
7879
},

0 commit comments

Comments
 (0)