Markdown files for a blog/website

First start a hugo server from the location where the website/blog/markdown files are:

cd /path/to/website/files; hugo server

and then access localhost:1313 in a browser.

Preview of a single mardown file

lynx and pandoc can be used like:

pandoc file.md | lynx -stdin

or

pandoc -t plain file.md | less