Hexo常用功能说明

本文档会用作Hexo基本用法记录演示。

新建博文

1
$ hexo new "My New Post"

More info: Writing

Generate static files + Run server

1
2
3
$ hexo clean # Clean local files
$ hexo generate # Generate static files
$ hexo server # Build local server

More info: Server More info: Generating

远端部署 (use Gitbuh Action)

The procedure is in .github/workflows/deploy.yml

When this local git folder has been uploaded to github, the deploy.yml would be executed.

More info: Deployment

文章折叠

1
<!-- more -->

文章间引用

站内文章引用语法如下。

1
{% post_link file_name Title_of_link %}

Insert figures

不同于markdown的图片引用方法,Hexo有着自己的语法。 图片文件夹位于_post目录下

1
{% asset_img test.jpg%}

同时可以自定义图片大小。 语法与html语法相同。

1
<div style="width:70%;margin:auto">{% asset_img test.jpg%}</div>

markdown的语法需要配置之后才可以使用,具体配置的方法见这篇文章

1
![Test](test.jpg)

Test


Hexo常用功能说明
https://blog.superui.cc/software-tools/hexo/hexo-functions/
作者
Superui
发布于
2020年11月13日
许可协议