Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
test
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
谢昇
test
Commits
3c8e7ab9
Commit
3c8e7ab9
authored
Dec 12, 2018
by
谢昇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Markdown简介.md
parent
4b40f356
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
1 deletion
+64
-1
Markdown简介.md
Markdown简介.md
+64
-1
No files found.
Markdown简介.md
View file @
3c8e7ab9
# 一、什
么是Markdown
# 一、什
么是Markdown
...
@@ -26,5 +26,68 @@ md格式一般多用于输出文档。如果只是用于自己的笔记记录,
...
@@ -26,5 +26,68 @@ md格式一般多用于输出文档。如果只是用于自己的笔记记录,
**使用效果:**
**使用效果:**
## 5、列表
分为无序列表和有序列表。
无序列表用 - +
*
任何一种都可以。
**示例:**
```
- 列表内容
+ 列表内容
* 列表内容
注意:- + * 跟内容之间都要有一个空格
```
**使用效果:**
-
列表内容
+
列表内容
*
列表内容
有序列表需要数字加点。
**示例:**
```
1.列表内容
2.列表内容
3.列表内容
注意:序号跟内容之间要有空格
```
**使用效果:**
1.
列表内容
2.
列表内容
3.
列表内容
## 6、代码块
单行代码:代码之间分别用一个反引号包起来。
**示例:**
```
`代码内容`
```
**使用效果:**
`代码内容`
代码块:代码之间分别用三个反引号包起来,且两边的反引号单独占一行。
**示例:**

**使用效果:**
```
代码...
代码...
代码...
```
## 7、图片
\!
[
文字内容
](
),括号内为图片名称,图片需要和.md文件放在一起,或者为网络位置。
不建议使用代码及文件路径方式,可以使用编辑器功能图标上传网络位置图片或者本地图片。
**示例:**
```

```
**使用效果:**

Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment