Hexo博客搭建及使用指南

Welcome to Hexo! 欢迎来到Hexo!This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

Hexo中Latex公式的渲染

使用中发现推送的博客中latex公式不能正常显示,据说是github没有渲染的原因,需要自己安装插件渲染后推送。

首先需要安装插件:

1
$ npm install hexo-math --save

然后打开主题(我的主题为Hueman)下的配置文件中_config.yml,修改其中的

1
mathjax: true # options: true, false

由false改为true。

再次生成并推送,可以看到$\LaTeX$已经能正常显示,如:

常见问题

  • renderer.stylus在渲染一些theme时报错,可能是部分插件与node.js不兼容造成的,可参考下面这篇博客解决:
    HEXO 維護相關問題紀錄