markdown

粗体、斜体

*这是斜体*
**这是粗体**
***这是粗体+斜体***

删除线

~~就像这样~~

引用

通过在行首加上大于号>来添加引用格式。

> This is the first level of quoting.
>
> > This is nested blockquote.
>
> Back to the first level.

列表

无序列表使用星号、加号或是减号作为列表标记:

*   Red
+ Green
- Blue

分隔线

* * *
***
*****
- - -
---------------------------------------

链接

[an example](http://example.com/)
[an example](http://example.com/ "Optional Title")

图像

普通方式

![Alt text](/path/to/img.jpg)
![Alt text](/path/to/img.jpg "Optional Title")

通过管理文件夹

{% asset_path slug %}
{% asset_img slug [title] %}
{% asset_link slug [title] %}

通过图床引用

<figure class="half">
<img src="http://address.com/images/image.png" title="title1"/>
<img src="http://path/image.png" title="title2"/>
</figure>

表格

| Item     | Value | Qty   |
| :------- | ----: | :---: |
| Computer | $1600 | 5 |
| Phone | $12 | 12 |
| Pipe | $1 | 234 |

TeX公式

更换渲染器:

$ npm uninstall hexo-renderer-marked --save
$ npm install hexo-renderer-kramed --save

插入公式形式:

$$
\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.
$$

公式说明文档:

https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference

typora编辑器

#for Linux
# or run:
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -
# add Typora's repository
sudo add-apt-repository 'deb https://typora.io/linux ./'
sudo apt-get update
# install typora
sudo apt-get install typora
------ 本文结束 🎉🎉 谢谢观看 ------
0%