一、标题
1.1、标题的写法:
需要在标题前键入“#”,根据#个数的不同区分几级标题
1.2、在内容下方使用任意个=号将上方内容显示成一级标题
1.3、在内容下方使用任意个-号将上方内容显示成一级标题
1.4、mardown还支持3到6,一共6个标题大小级别
1.5、标题的完整书写格式
使用对应的#号将标题前后包裹起来,格式看起来良好一些。
二、段落
2.1、段落的基本使用
使用空行实现段落分隔效果
2.2、文章实现换行
段落文字后添加两个或以上的空格显示为换行
三、字体强调
3.1、使用两个*号或者_将要加粗的字体内容加粗
王斌
3.2、使用一个或者_包裹对应内容设置为意大利斜体字样
hello world
hello world
hellp world
3.3、使用三个*或者_加粗和斜体效果同时显示
hello world
hello world
四、引用
4.1、可以使用>符号引用内容
我写的代码功能就是输出 hello world
hello world
4.2、引用多行
我会多门编程语言:
C
Shell
Go
Java
Python
4.3、使用嵌套引用
C
Shell
Go
Java
Python
> Python2.7
> Python3.6
五、列表的使用
5.1、有序列表是用数字和. 构成列表序号
- Unix
- Linux
- C语言
5.2、无序列列表使用* - + 号表示
- Unix
- Linux
- C语言
- A
- B
- C
- D
- E
- F
- 1
- 2
- 3
6、代码
6.1、使用 ` 包含的内容为代码
#!/bin/bash
6.2、当需要创建代码块时,每行使用4个空格或一个tab键
#!/bin/bash
echo "hello world"
ceshi
ceshi123
7、分割线
使用三个 * 或 - 或 _ 生成下划线
8、代码块
文章中有代码时,我们可以使用代码块包含代码,使其成为一个整体,并具备特定的显示分格
public class HelloWorld {
public static void main (String[] args) {
System.out.println("Hello,World!!!")
}
}
[root@centos7 ~]#cd /
[root@centos7 /]#ll
total 24
lrwxrwxrwx. 1 root root 7 Mar 5 19:42 bin -> usr/bin
dr-xr-xr-x. 5 root root 4096 Mar 6 21:28 boot
drwxr-xr-x. 3 root root 143 Mar 7 17:57 data
drwxr-xr-x. 19 root root 3360 Mar 7 14:12 dev
drwxr-xr-x. 138 root root 8192 Mar 7 17:07 etc
drwxr-xr-x. 3 root root 21 Mar 5 19:51 home
lrwxrwxrwx. 1 root root 7 Mar 5 19:42 lib -> usr/lib
lrwxrwxrwx. 1 root root 9 Mar 5 19:42 lib64 -> usr/lib64
drwxr-xr-x. 2 root root 6 Apr 11 2018 media
drwxr-xr-x. 2 root root 6 Apr 11 2018 mnt
drwxr-xr-x. 3 root root 16 Mar 5 19:46 opt
dr-xr-xr-x. 151 root root 0 Mar 5 17:03 proc
dr-xr-x---. 14 root root 4096 Mar 7 23:30 root
drwxr-xr-x. 41 root root 1240 Mar 6 10:28 run
lrwxrwxrwx. 1 root root 8 Mar 5 19:42 sbin -> usr/sbin
drwxr-xr-x. 2 root root 6 Apr 11 2018 srv
dr-xr-xr-x. 13 root root 0 Mar 5 17:03 sys
drwxr-xr-x. 3 root root 18 Mar 6 21:39 testdir
drwxrwxrwt. 15 root root 4096 Mar 7 17:57 tmp
drwxr-xr-x. 13 root root 155 Mar 5 19:42 usr
drwxr-xr-x. 20 root root 282 Mar 5 22:03 var
[root@centos7 /]#
九、表格
表格是一种常见的数据内容展现形式,Markdown中也可以实现表格,书写表格的语法如下,使用 |代表每行中的分隔符,在分隔符之间填写具体的数据就好,在第二行内书写-表示上一行为表头,可以再-的最左边或者最又面添加一个:来代表下面的内容是左对齐还是右对齐,同时在两边添加:冒号时代表居中
ID | NAME | AGE | GENDER | TEL | ADDR |
---|---|---|---|---|---|
000 | Gordon | 33 | M | 12345 | HongKong |
001 | Mage | 23 | M | 2123 | Beijing |
002 | liunx | 43 | M | 213213 | NewYork |
003 | Wang | 45 | M | 213321 | ShangHai |
10、超链接
创建一个连接 [] 内写连接内容 () 内写连接地址
11、图片
和链接类似,在连接的书写格式前面加上一个!号即可代表一个图片
原文地址:https://blog.51cto.com/12589011/2360477
时间: 2024-10-17 07:15:19