From 4377a7f992805a98a73b653f9b611dd071cf64d2 Mon Sep 17 00:00:00 2001 From: Sam Chen Date: Wed, 9 Sep 2020 00:34:34 +0800 Subject: [PATCH] fix code block syntax (#1260) --- docs/getting-started/-table-of-components.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/-table-of-components.mdx b/docs/getting-started/-table-of-components.mdx index a28d62d7d..d4e375fbe 100644 --- a/docs/getting-started/-table-of-components.mdx +++ b/docs/getting-started/-table-of-components.mdx @@ -18,7 +18,7 @@ | `tr` | [Table row](https://github.com/syntax-tree/mdast#tablerow) | | | `td`/`th` | [Table cell](https://github.com/syntax-tree/mdast#tablecell) | | | `pre` | [Pre](https://github.com/syntax-tree/mdast#code) | | -| `code` | [Code](https://github.com/syntax-tree/mdast#code) | \``\`code\`\`\` | +| `code` | [Code](https://github.com/syntax-tree/mdast#code) | ` ```code``` ` | | `em` | [Emphasis](https://github.com/syntax-tree/mdast#emphasis) | `_emphasis_` | | `strong` | [Strong](https://github.com/syntax-tree/mdast#strong) | `**strong**` | | `del` | [Delete](https://github.com/syntax-tree/mdast#delete) | `~~strikethrough~~` |