标签`,在插入处先键入两个以上的空格然后回车即可,[普通链接](http://www.fiebug.com/)。 > 引用 > 引用换行 > > > 嵌套引用 > > 嵌套引用换行 > > 回到一层引用 ### 锚点与链接 Links [普通链接](http://www.fiebug.com/) [普通链接带标题](http://www.fiebug.com/ "普通链接带悬浮提示") 直接链接:
` 预格式化文本 ( Preformatted Text ) 的功能。 预格式化文本: | First Header | Second Header | | ------------- | ------------- | | Content Cell | Content Cell | | Content Cell | Content Cell | #### JS代码 ```javascript function test() { console.log("Hello world!"); } ``` #### HTML 代码 HTML codes ```htmlHello world! Hello world!
Plain text
``` ---- ### 列表 Lists #### 无序列表(减号)Unordered Lists (-) - 列表一 - 列表二 - 列表三 #### 无序列表(星号)Unordered Lists (*) * 列表一 * 列表二 * 列表三 #### 无序列表(加号和嵌套)Unordered Lists (+) 列表嵌套只需在子列表中的选项添加四个空格即可 + 列表一 + 列表二 + 列表二-1 + 列表二-2 + 列表二-3 + 列表三 * 列表一 * 列表二 * 列表三 #### 有序列表 Ordered Lists (-) 1. 第一行 2. 第二行 3. 第三行 #### GFM task list - [x] GFM task list 1 - [x] GFM task list 2 - [ ] GFM task list 3 - [ ] GFM task list 3-1 - [ ] GFM task list 3-2 - [ ] GFM task list 3-3 - [ ] GFM task list 4 - [ ] GFM task list 4-1 - [ ] GFM task list 4-2 ---- ### 绘制表格 Tables | 项目 | 价格 | 数量 | | -------- | -----: | :----: | | 计算机 | $1600 | 5 | | 手机 | $12 | 12 | | 管线 | $1 | 234 | First Header | Second Header ------------- | ------------- Content Cell | Content Cell Content Cell | Content Cell | First Header | Second Header | | ------------- | ------------- | | Content Cell | Content Cell | | Content Cell | Content Cell | | Function name | Description | | ------------- | ------------------------------ | | `help()` | Display the help window. | | `destroy()` | **Destroy your computer!** | | Left-Aligned | Center Aligned | Right Aligned | | :------------ |:---------------:| -----:| | col 3 is | some wordy text | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 | | Item | Value | | --------- | -----:| | Computer | $1600 | | Phone | $12 | | Pipe | $1 | | 左对齐示例 | 居中对齐示例 | 右对齐示例 | | :--------- | :----------: | ---------: | | 123 | 123 | 123 | | 123 | 123 | 123 | | 123 | 123 | 123 | ---- #### 特殊符号 HTML Entities Codes © & ¨ ™ ¡ £ < > ¥ € ® ± ¶ § ¦ ¯ « · X² Y³ ¾ ¼ × ÷ » 18ºC " ' ### Markdown 高级技巧 #### 支持的 HTML 元素 不在 Markdown 涵盖范围之内的标签,都可以直接在文档里面用 HTML 撰写。 目前支持的 HTML 元素有:`
`等 ,如: Ctrl + F5 加粗 斜体 强调/斜体 上标sup 下标sub #### 转义 Markdown 使用了很多特殊符号来表示特定的意义,如果需要显示特定的符号则需要使用转义字符,Markdown 使用反斜杠转义特殊字符: **文本加粗** \*\* 正常显示星号 \*\* Markdown 支持以下这些符号前面加上反斜杠来帮助插入普通的符号: \ 反斜线 ` 反引号 * 星号 _ 下划线 {} 花括号 [] 方括号 () 小括号 # 井字号 + 加号 - 减号 . 英文句点 ! 感叹号
评论(0) 浏览(686)