A Good Hexo Tutorial
No I am not going to write a tutorial for everything under the sun if it already exists.
Just recently found a great tutorial for Hexo - https://www.cgmartin.com/2016/01/03/getting-started-with-hexo-blog/
Useful info:
- Use hexo-browsersync for live reload - was wondering how I didn’t know about this earlier
- Use drafts for writing posts and then publish.
hexo new draft "postName"
,hexo pusblish "postName"
- Use
<!-- more -->
to show only the part above it listing pages and hide the rest in a “read more” button
Other resources
- Markdown cheatsheet: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
A Good Hexo Tutorial