0x01 Introduce

Hexo is a fast, simple & powerful blog framework. You could write posts in Markdown (or other languages) and Hexo generates static files with a beautiful theme in seconds.

0x02 Install & Deploy

  1. install nodejs and npm
  2. install hexo
    1
    npm install -g hexo
  3. configure hexo
    You can refer to the document
  4. deploy
    When you have decorated your blog ,you can deploy your bloghexo generate.
    First edit your _config.yml like this:
    1
    2
    3
    4
    deploy: 
    type: git
    branch: master
    repository: git@github.com:LinLL/LinLL.github.io.git

Then

1
2
hexo generate
hexo deploy