mdrd
1.0.0
Simple CGI Markdown renderer.
Requirements:
cmark
fcgi
$ make -j allStart a FCGI parent process:
$ spawn-fcgi -p 8080 -n ./mdrdSetup your web server with document root, fastcgi parameters and fastcgi port. Nginx example:
server {
root /path/to/markdown/root;
autoindex on;
index index.html index.md;
location ~ .md$ {
include fastcgi_params;
fastcgi_pass 127.0.0.1:8080;
}
}
You are ready to go.
WTFPL. Experimental project. No warranty.