hexo编辑相关


记录hexo常用操作

1. hexo首行缩进:

  一个代表一个汉字字符

1
 

2.hexo文章跳转其他文章

1
2
3
跳转到一篇名为 hello-world 的文章
{% post_link hello-world %}
{% post_link hello-world 你好世界 %}
你好世界

3. 添加数学公式

  数学公式 博客2 (某CSDN博客)

   空格 :a,b a;b a\ b a\quad b

4. 空行

1
2
3
<div><br/></div>
<br/>
二选一,推荐上面的

5. 字自定义

1
2
<span style='font-size:40px; font-family:微软雅黑; color:red'>内容</span>
<span style="text-align: center;display:block;">文字居中显示,两个都必须有</span>

6.hexo新建草稿

1
hexo new draft "<title>"

7.hexo将草稿发布

1
hexo publish "<title>"

8.katle渲染引擎todo问题

  换渲染引擎后todoList渲染出现问题,使用html语法

1
2
3
4
<form>
<input type="checkbox" diabled="true" checked="checked">text</input>
<input type="checkbox" diabled="true" checked="checked"><a href="网址">text</a></input>
</form>

9. 添加图片

1
2
3
4
<div align="center">
<a name="ML"></a>
<img src="https://seopic.699pic.com/photo/40005/7241.jpg_wh1200.jpg" alt="ML" style="zoom:80%;"/>
<br>图1:Machine Learning</div>
  1. 添加文献引用
1
2
3
4
5
6
7
8
9
10
11
12
13
## Markdown 增加文献引用

这边文章是介绍如何在 Markdown 中增加文献引用。[<sup>1</sup>](#refer-anchor-1)

## 参考

<div id="refer-anchor-1"></div>

- [1] [百度学术](http://xueshu.baidu.com/)

<div id="refer-anchor-2"></div>

- [2] [Wikipedia](https://en.wikipedia.org/wiki/Main_Page)