那些你该知道的markdown操作
基于HTML: HTML-based
👉改变字体颜色: Text Colour
表示方法<value>
:
- 十六进制值 如
#f1c40f
- RGB值 如
RGB(255,254,253)
- RGBA值 如
RGBA(255,0,0,0.5)
其中最后一个参数为alpha参数
代表不透明度 范围在0-1之间 - 颜色的名称 如
blue
,lightpink
添加方法
- 在任意可以表达文字的html标签 (如
<h1>
,<p>
) 的开始标签内添加style="corlor:<value>"
。
例子
1 | <p style="color:RGB(255,38,79);">This is a paragraph</p> |
效果
This is a paragraph
this is a level2 heading
这个颜色是海军蓝
设置了0.3不透明度
👉高光: Highlight
添加方法
- 在任意可以表达文字的html标签 (如
<h1>
,<p>
) 的开始标签内添加style="background-color:<value>;"
例子
1 | <p style="background-color:lightpink">The background color is pink</p> |
效果
The background color is light pink
👉<details>
与 <summary>
标签
<details>
标签可以使得文字/内容可以展开收起;<summary>
标签则是收起时展现给浏览者的内容
例子
1 | <details> |
效果
学习资料:
- 语文资料
- 数学资料
- 英语资料
Non HTML-based
👉脚注: Footnote[^1]
脚注可以在你想添加reference[^2], 想解释一个词或者一句话但又不像占太多地方的时候被使用。
添加方法:
- 在正文中插入
[^1]
, 当然这个1可以是任何数字 也可以是词语,比如[^脚注]
- 在文章的其他地方插入对应解释
[^1]:解释
,一般是在文末- 在列表,表格,以及引用
>this is a blockquote
中无法添加
- 在列表,表格,以及引用
实例:
1 | To be or not to be, this is a question[^footnote]. |
效果:
To be or not to be, this is a question^footnote.
👉==高光: Highlight==
添加方法:
-
==想要添加高光的文字==
特性:
- 默认颜色取决于使用的软件,一般来说是黄色
[^1]: footnote allows you to reference, or add additional explanations/details to the word/sentence you selected
[^2]: 参考, 引用