跳到主要内容

markdown语法纪录

· 阅读需 2 分钟
鲸落

Markdown 官方教程

基本语法

标题

标题就不展示了

# H1
## H2
### H3

粗体

text **text**

有序列表

  1. First item
  2. Second item
  3. Third item
1. First item
2. Second item
3. Third item

无序列表

  • First item
  • Second item
  • Third item
- First item
- Second item
- Third item

引用块

blockquote

blockquote

> blockquote
> blockquote

代码

c ' `` '

代码块

```js

```

分割线


---

链接

Markdown 官方教程 [Markdown 官方教程](https://markdown.com.cn/)

图片

这里就不展示图片了

![logo](http://www.xiaojunnan.cn/img/logo.webp)

删除线

The world is flat. ~~The world is flat.~~

拓展语法

表格

SyntaxDescription
HeaderTitle
ParagraphText
| Syntax      | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

任务列表

  • Write the press release
  • Update the website
  • Contact the media
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

表情

😊 其他表情参照这个地址:github markdown emoji

其他

成功
补充
备注
警告
危险
成功、补充等字可以修改

:::success 成功
:::

:::info 补充
:::

:::note 备注
:::

:::caution 警告
:::

:::danger 危险
:::
Loading Comments...