MarkDown语法备忘
Posted xhBruce
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MarkDown语法备忘相关的知识,希望对你有一定的参考价值。
MarkDown语法备忘
markdown - 百度百科,Markdown是一种轻量级标记语言,创始人为约翰·格鲁伯(英语:John Gruber)。也就是Markdown是一个标准,按照标准有.md
或.markdown
扩展名文本文件。
Markdown备忘表-Markdown语法快速参考
MarkDown基础语法
这些是John Gruber原始设计文档中概述的元素。所有Markdown应用程序都支持这些元素。
元素 | Markdown 语法 | html |
---|---|---|
标题 | # H1 ## H2 ### H3 | <h1>标题等级1</h1> <h2>标题等级2</h2> <h3>标题等级3</h3> |
粗体 | **bold text** | <strong>粗体字</strong> |
斜体 | *italicized text* | <em>斜体文字</em> |
粗体和斜体 | ***bold and italicized text*** | <strong><em>粗体和斜体文字</em></strong> |
块引用 | > blockquote | |
有序列表 | 1. First item 2. Second item 3. Third item | <ol> <li>First item</li> <li>Second item</li> <li>Third item</li> <li>Fourth item</li> </ol> |
无序列表 | - First item - Second item - Third item | <ul> <li>First item</li> <li>Second item</li> <li>Third item</li> <li>Fourth item</li> </ul> |
代码 | `code` | <code>code</code> |
水平线 | — | |
超链接 | [title](https://www.example.com) | |
图片 | ![alt text](image.jpg) |
MarkDown扩展语法
元素 | Markdown 语法 | HTML |
---|---|---|
表格 | | Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text | | |
围栏代码块 | ``` { “firstName”: “John”, “lastName”: “Smith”, “age”: 25 } ``` | |
脚注 | Here’s a sentence with a footnote. [^1] [^1]: This is the footnote. | |
标题ID | ### My Great Heading {#custom-id} | <h3 id=“custom-id”>My Great Heading</h3> |
链接到标题ID | [Heading IDs](#heading-ids) | <a href="#heading-ids">Heading IDs</a> |
自定义列表 | term : definition | <dl> <dt>term</dt> <dd>This is the definition of the first term.</dd> </dl> |
删除线 | ~~The world is flat.~~ | |
任务列表 | - [x] Write the press release - [ ] Update the website - [ ] Contact the media |
以上是关于MarkDown语法备忘的主要内容,如果未能解决你的问题,请参考以下文章