Hacker News new | ask | show | jobs
by staticvar 3252 days ago
I love markdown! A similar project but without the need for a custom buildchain or serverside software is MDwiki.

```

mkdir my-site

cd my-site

curl http://mdwiki.info

echo "# Hello World" > index.md

python -m SimpleHTTPServer 8000

```

Now visit http://localhost:8000 in your browser and it's live. Publish to Github Pages and you're golden.