0%

Hello World (Hexo Quick Reference)

This blog is built with Hexo! This is the originally first post, automatically generated by Hexo. I modified it to a Quick Reference Handbook (QRH) for using this.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Clean cache

1
2
3
$ hexo clean
# shortcut:
$ hexo c

Generate static files

1
2
3
$ hexo generate
# shortcut:
$ hexo g

More info: Generating

Run server (local testing)

1
2
3
$ hexo server
# shortcut:
$ hexo s

More info: Server

Deploy to remote sites

1
2
3
$ hexo deploy
# shortcut:
$ hexo d

More info: Deployment