Moving to Hugo
Hugo just joined the list of static site generators I’ve ever used for blogging, right after Hexo and Jekyll. Unlike its predecessors it’s a single binary written in a compiled language (Go). No dependencies, less bloat.
Live preview while modifying content:
hugo server -D
-D, --buildDrafts - include content marked as draft
Build static pages:
hugo
Output will be in ./public/
directory by default