PHDoc

PHDoc is the neat piece of software with which I maintain this site. It generates static HTML files, which is good for you because:

PHDoc handles uploading the files to the server for you. It also comes with an embedded web server, so you can preview your site directly on your computer.

Cool Features

Quickstart

Setting up PHDoc takes mere seconds on Linux and Mac systems. It can also be done on Windows, if you have a Python installation.

Installation

$ easy_install phdoc  # OR
$ pip install phdoc

Making a Wiki

phdoc init my-wiki
cd my-wiki/
vim wiki/somefile.md
# ... write some documents ...
phdoc build
phdoc serve
# .. open http://localhost:8008/ in a browser ...

Fork me on GitHub