图片大小

1
<img style="width:50%;" src="https://www.timelines.ml/images/Wlop/61.jpg" />

路径

/usr/local/nginx/sbin/nginx

1
<span style="color:#4185c4;">/usr/local/nginx/sbin/nginx</span>

彩色字体背景

博客主题默认全角空格为 &nbsp; 不需要额外添加

Nginx is not running !

1
<b style="color:red;">Nginx&nbsp;is&nbsp;not&nbsp;running&nbsp;!</b>

Nginx is running!

1
<b style="color:green;">Nginx&nbsp;is&nbsp;running&nbsp;!</b>

Nginx is running !

1
<b style="background-color:green;color:white;"> Nginx is running ! </b>

折叠

这里是用HTML实现,也可以通过博客主题的外挂标签实现

展开查看内容 这是展开后的内容。
1
2
3
4
<details>
<summary>展开查看内容</summary>
这是展开后的内容。
</details>

待办列表

    • 记得找个女朋友
    • 天凉了,记得加衣喔
      • 今日份单词打卡
      • 了解python和c++
1
2
3
4
1. - [ ] 记得找个女朋友
2. - [ ] 天凉了,记得加衣喔
1. - [x] 今日份单词打卡
2. - [x] 了解python和c++

脚注

博客主题暂时不支持。

1
你好[^脚注][^脚注]: 这是一个脚注
1
2
3
4
5
6
7
8
9
10
11
这里有一个简单的脚注,[^1] 这是一个更长的脚注。[^bignote]

[^1]: 这是第一个脚注。

[^bignote]: 这是一个包含多个段落和代码的内容。

缩进段落以将它们包括在脚注中。

`{我的代码…… }`

想加多少段落就加多少段落。

复杂表格

建议用HTML表格在线工具,从表格转换为HTML。

Markdown 绝大多数编辑器都是支持 html 语言,Markdown 本身不支持复杂的表格,所以使用 html 来编辑即可。

  • 使用跨行或者跨列时,使用 th 标签
  • 跨行: rowspan 的的参数就是要跨的行数
  • 跨列: colspan 的参数就是要跨的列数
真实情况 预测结果
正例 反例
正例 TP(真正例) FN(假反例)
反例 FP(假正例) TN(真反例)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<table align="center">
<tr>
<th rowspan="2">真实情况</th>
<th colspan="2">预测结果</th>
</tr>
<tr>
<td>正例</td>
<td>反例</td>
</tr>
<tr>
<td>正例</td>
<td>TP(真正例)</td>
<td>FN(假反例)</td>
</tr>
<tr>
<td>反例</td>
<td>FP(假正例)</td>
<td>TN(真反例)</td>
</tr>
</table>

文本高亮

博客主题中有更加好用的label 标签

…… 海森堡在 1927 年首先提出 ……

…… 海森堡在1927年首先提出 ……

1
…… <mark>海森堡在 1927 年首先提出</mark> ……
1
…… {% label 海森堡在1927年首先提出 purple %}……