Apache – Get Apache to serve Markdown as HTML

apache-httpdhtmlmarkdown

Like many people, I prefer writing in Markdown – is there a mod_markdown or similar that will let Apache serve Markdown content but render as HTML ?

Best Answer

This sort of syntax is typical for a wiki engine, but they mostly propose similar syntaxes other than Markdown. However, you can try MDwiki:

MDwiki is a CMS/Wiki completely built in HTML5/Javascript and runs 100% on the client. No special software installation or server side processing is required. Just upload the mdwiki.html shipped with MDwiki into the same directory as your markdown files and you are good to go!

It really is that simple. Follow the tutorial. This is a renderer, not an in-page editor.

Related Question