MarkDown的常用语法 _ 课堂笔记1 _ 表格序号46
来源:     阅读:4
易浩激活码
发布于 2025-10-27 22:54
查看主页

一、标题

用 #  将一段文字定义为标题。

在标题文字开头加#,随后再加一个空格即可。标题层级可分为六级,1~6级标题分别对应1~6个#,标题字体的大小依次递减。

原代码:

# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

效果如下:

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

二、列表

在MarkDown中,可以使用有序列表和无序列表。

每进入下一个层级,在标记符号前增加两个 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

效果如下:

  1. Personal Home
    1.1 Movies
    1.2 Letter
    1.3 Thinking
    1.4 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的常用语法 _ 课堂笔记1 _ 表格序号46



六、分割线

分割线的语法只需要另起一行,连续输入三个或以上的 * 或 _ ,即可分割两段文字内容。行内不能有其他内容,也可以在符号间插入空格。

原代码:

我是第一条分割线⬇️
***
我是第二条分割线⬇️
___

效果如下:
我是第一条分割线⬇️


我是第二条分割线⬇️


七、表格

当需要在Markdown文稿中键入表格时,代码格式模板如下:





MarkDown的常用语法 _ 课堂笔记1 _ 表格序号46


注意⚠️:每列至少需要一个 "-"才能形成表格

原代码:

WEEK   |   PLAN   | STATUS
:----- |:--------:| ------:
WEEK 1 | 改词 & 录音  |Done
WEEK 2 | 3个版本编舞 |Ing

效果如下:

Arrangement For Week 1 - 3 👇

WEEKPLANSTATUS
WEEK 1Remix & 3个版本编舞Done ✅
WEEK 2改词 & 录音 & 质感练习Ing 💪
WEEK 3focus on 作品集Wait ⌛️

八、插入代码

代码可分为行内代码和代码块

代码例子:👇





MarkDown的常用语法 _ 课堂笔记1 _ 表格序号46

免责声明:本文为用户发表,不代表网站立场,仅供参考,不构成引导等用途。 系统环境
相关推荐
es6中reduce的用法
【Java面试必问】 Spring Boot面试题 35 问(附PDF)
网友:程序员复制粘贴代码却拿着高薪?你们对程序员能力一无所知
Apk 极限压缩(说点不一样的)
【多点续传下载工具】Free Download Manager for Mac中文版
首页
搜索
订单
购物车
我的