Welcome to 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 OR
More info: Server
Generate static files OR
More info: Generating
Deploy to remote sites OR
Generate Categories 1 $ hexo new page categories
Then open source/categories/index.md
, Add type: "categories"
1 2 3 4 5 6 --- title: categories date: 2019-03-09 13:31:42 type: "categories" comments: false ---
Then open source/tags/index.md
, Add type: "tags"
1 2 3 4 5 6 --- title: categories date: 2019-03-09 13:31:42 type: "tags" comments: false ---
Adding categories or tags description on page title
1 2 3 4 5 6 --- title: Hexo tutorial tag: [Hexo,Tutorial] categories: - Web ---
Clean caches and regenerated More info: Deployment