Docusaurus and Markdown Issue
Docusaurus supports Markdown and a few additional features.
在 Docusaurus 中代码块中嵌套代码块
可以使用4个反引号(```)
```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}
```
HTML中制表符(TAB)的转义字符
HTML特殊字符不包括TAB. TAB应该也可以用	
表示. 但只有在<PRE>...</PRE>
这样的标记内部才起作用. 其他地方只相当于一个空格. 这和
不一样.
可以使用 
效果也不错
HTML表格
一个包含三行、两个标题单元格和四个数据单元格的简单 HTML 表格:
<table>
<tr>
<th>月份</th>
<th>储蓄</th>
</tr>
<tr>
<td>一月</td>
<td>¥3400</td>
</tr>
<tr>
<td>二月</td>
<td>¥4500</td>
</tr>
</table>
Blog author social platform
经查,支持以下平台:"x", "github", "twitter", "linkedin", "stackoverflow"。
// Social platform name -> Social platform link
// Example: {MyPlatform: 'https://myplatform.com/myusername'}
// Pre-defined platforms ("x", "github", "twitter", "linkedin", "stackoverflow") accept handles:
// Example: {github: 'slorber'}
但是在国内一般有:
Follow us: 微博、微信公众号、Douyin、Bilibili、知呼、CSDN等平台。
如何添加呢?