一、标题
用 # 将一段文字定义为标题。
在标题文字开头加#,随后再加一个空格即可。标题层级可分为六级,1~6级标题分别对应1~6个#,标题字体的大小依次递减。
原代码:
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
效果如下:
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
二、列表
在MarkDown中,可以使用有序列表和无序列表。
- 有序列表:在文字开头加 - 或 * 即可
- 无序列表:在文字开头加1. 2. 3. 即可
每进入下一个层级,在标记符号前增加两个 Tab
原代码:
1. Personal Home
1.1 Movies
1.2 Letter
1.3 Thinking
1.4 Dreams
* Dreams
- Y Dreams
- X Dreams
- T Dreams
- Other Dreams
效果如下:
- Personal Home
1.1 Movies
1.2 Letter
1.3 Thinking
1.4 Dreams
- Dreams
- Y Dreams
- X Dreams
- T Dreams
- Other Dreams
三、引用
若要在文稿中引用一段文字,可用 > 处理成引用形式。
在引用文字开头加 >,随后再加一个空格即可。
原代码:
To X:
......我们的生活本来就应该存在痛苦,消除痛苦不是良好生活的保证。
大大小小的事,都说明了我们总是在痛苦中得到快乐,又在快乐中出现痛苦。
急不来的,一点点就是一点点,每天认识到一点新的东西就都是进步。
总之啊,希望你少一些被影响,每天都能有开心的事情出现。
人呢,怎么可能天天开心快乐呢,所以啊每天有愉悦的时刻就足够啦 😊
> “People wanna challenge themselves. These challenges are fake. Climbing a mountain is afake challenge. You don’t have to climb a mountain. There are many things that people have to do and should do that they don't do. Because they're scared to do or they're hard to do or they're bad at it . Those are challenges. A challenge is something you have to do. Not something you make up. " —— Fran Lebowitz
效果如下:
To X:
......我们的生活本来就应该存在痛苦,消除痛苦不是良好生活的保证。
大大小小的事,都说明了我们总是在痛苦中得到快乐,又在快乐中出现痛苦。
急不来的,一点点就是一点点,每天认识到一点新的东西就都是进步。
总之啊,希望你少一些被影响,每天都能有开心的事情出现。
人呢,怎么可能天天开心快乐呢,所以啊每天有愉悦的时刻就足够啦 😊
“People wanna challenge themselves. These challenges are fake. Climbing a mountain is afake challenge. You don’t have to climb a mountain. There are many things that people have to do and should do that they don't do. Because they're scared to do or they're hard to do or they're bad at it . Those are challenges. A challenge is something you have to do. Not something you make up. " —— Fran Lebowitz
四、字体强调
若要对某些文字做强调时,可用粗体或斜体做标记。
- 用两个 * 包含文本,即可变为粗体。
- 用一个 * 包含文本,即可变为斜体。
原代码:
😁 我是 **粗体字** 噢!
😁 我是 *斜体字* 噢!
效果如下:
😁 我是 粗体字 噢!
😁 我是 斜体字 噢!
五、添加链接或图片
- 链接:只需要此格式 ➡️ [显示的文本] (链接地址)
- 图片:只需要此格式 ➡️ ![显示文本] (图片链接地址)
注意:括号与括号之间没有空格,必须使用英文输入法输入符号。
原代码:
[Katie Paterson](http://katiepaterson.org/biography/) (born 1981, Scotland) is widely regarded as one of the leading artists of her generation. Collaborating with scientists and researchers across the world, Paterson’s projects consider our place on Earth in the context of geological time and change. Her artworks make use of sophisticated technologies and specialist expertise to stage intimate, poetic and philosophical engagements between people and their natural environment. Combining a Romantic sensibility with a research-based approach, conceptual rigour and coolly minimalist presentation, her work collapses the distance between the viewer and the most distant edges of time and the cosmos.
![Le Champ du Ciel, Field of the Sky, FRAC Frache Comté, 2015](http://katiepaterson.org/wp-content/uploads/bb-plugin/cache/Katie_Paterson_FRAC_2015_19-square.jpg)
效果如下:
Katie Paterson (born 1981, Scotland) is widely regarded as one of the leading artists of her generation. Collaborating with scientists and researchers across the world, Paterson’s projects consider our place on Earth in the context of geological time and change. Her artworks make use of sophisticated technologies and specialist expertise to stage intimate, poetic and philosophical engagements between people and their natural environment. Combining a Romantic sensibility with a research-based approach, conceptual rigour and coolly minimalist presentation, her work collapses the distance between the viewer and the most distant edges of time and the cosmos.
六、分割线
分割线的语法只需要另起一行,连续输入三个或以上的 * 或 _ ,即可分割两段文字内容。行内不能有其他内容,也可以在符号间插入空格。
原代码:
我是第一条分割线⬇️
***
我是第二条分割线⬇️
___
效果如下:
我是第一条分割线⬇️
我是第二条分割线⬇️
七、表格
当需要在Markdown文稿中键入表格时,代码格式模板如下:
注意⚠️:每列至少需要一个 "-"才能形成表格
- 内容左对齐:把冒号" : "放在 " - "左边
- 内容右对齐:把冒号" : "放在 " - "右边
- 内容左对齐:用两个冒号" : " 包含" - "
原代码:
WEEK | PLAN | STATUS
:----- |:--------:| ------:
WEEK 1 | 改词 & 录音 |Done
WEEK 2 | 3个版本编舞 |Ing
效果如下:
Arrangement For Week 1 - 3 👇
WEEK | PLAN | STATUS |
---|---|---|
WEEK 1 | Remix & 3个版本编舞 | Done ✅ |
WEEK 2 | 改词 & 录音 & 质感练习 | Ing 💪 |
WEEK 3 | focus on 作品集 | Wait ⌛️ |
八、插入代码
代码可分为行内代码和代码块
- 行内代码使用 `` 标识,可嵌入文字中
- 代码块使用4个空格或```标识
- 代码语法高亮在 ```后面加上空格和语言名称即可
代码例子:👇