DEV Community

Discussion on: The World's Simplest "Static Site Generator"

Collapse
 
justinnoel profile image
Justin Noel

Thanks for the great post. Pandoc is pretty fun and simple.

A few edits :

pandoc --output=index.html --to=html5 --standalone index.md

instead of

pandoc --output=index.html --to=html5 --standalone index-world.md
# My Quick Blog

- [Hello World](hello-world.html)
- [My second post](my-second-post.html)

instead of

# My Quick Blog

- [Hello World][hello-world.html]
- [My second post][my-second-post.html]
Collapse
 
gypsydave5 profile image
David Wickes

Publish in haste - regret at leisure!

I'll make the changes - thanks!