hexo system command Link to heading

npm install hexo -g #Install hexo  
npm update hexo -g #Upgrade hexo  
hexo init #Initialize

hexo post related Link to heading

hexo n "my post" == hexo new "my post" #create a new post
hexo p "my post" == hexo publish "my post" #publish
hexo g == hexo generate
hexo s == hexo server #start server to preview
hexo d == hexo deploy

hexo publish related Link to heading

hexo clean #clean cache
hexo g
hexo d

post parameters Link to heading

title: xxx
layout: post
date: 2014-03-03 19:07:43
comments: true
categories: Blog
tags: [Hexo]
keywords: Hexo, Blog
description: xxxxxxxxx

post abstract Link to heading

<!--more-->

page, page and draft Link to heading

hexo new post <title>
hexo new page <title>
hexo new draft <title>