0%

hexo refresher

How to make a new post?

  • First step

    1
    hexo new "a new title"
  • Then locate the newly created file and edit it

  • Then try to see how it looks locally

    1
    hexo server
  • After editing it, publish it by

    1
    2
    3
    hexo clean
    hexo generate # this generate static files
    hexo deploy

    Give it a few minutes to show up. Be patient…

  • For RSS, you need a plug-in named hexo-generator-feed
    1
    npm install hexo-generator-feed --save