Why Markdown but not WordPress or Headless CMS
Markdown is the standard for blogging that allowing writers to focus on the content instead of getting distracted by fancy editors and styling. Using NextJS and NPM packages, we would be able to parse markdown documents into blog pages allowing writers/programmers to be able to write once deploy everywhere.

We will use two built-in Node packages:
- Path to be able to join and create exact directory to our markdown content folder.
- File System to be able to find all markdown files in a directory and parse its name and read its content.
And an npm package Gray Matter to turn our File System output format into neat JSON Object that could be read by Javascript and the Browser.
