- 为了在主页摘录显示文章的前面一小部分,需要在.md文件中的响应行加入以下代码:
<!-- more --> %used in your article to break your article manually, which is recommended by Hexo.
- 将本地文件上传到github
hexo g -d %由本地上传文件到github;
%g为生成文件(generate),d为部署命令(deploy);
hexo g %可以单独书写;
hexo generate
hexo d
hexo deploy
- 清除本地hexo缓存
hexo clean
- 显示数学公式
mathjax: true %将命令加到博客的抬头中,显示数学公式;
%注意前后尽量加空行,且放在title之后的第二行,防止不起作用;
当_config.next.yml文件中的math下的every_page设置为true的时候,可以省略这一步操作:
math:
# Default (false) will load mathjax / katex script on demand.
# That is it only render those page which has `mathjax: true` in front-matter.
# If you set it to true, it will load mathjax / katex script EVERY PAGE.
every_page: true
当把_config.next.yml文件中的mathjax.tags设置为ams后,可以实现数学公式自动编码的功能:
mathjax:
enable: true
# Available values: none | ams | all
tags: ams
实现的前提是在.md文件中的公式需要有以下形式:
$$
\begin{equation}
,,,
\end{equation}
$$
- 在本地显示网页效果
hexo s %s为sever,可以在浏览器打开localhost:4040地址;
hexo sever %全名也可以;