0.1.8 • Published 11 years ago
markdown-middleware v0.1.8
markdown-middleware
middleware for serving markdown files as rendered HTML. It makes an effort to render a closely as possible to the style of github but stops short of actually using githubs API to keep performance snappy.
Installation
$ npm install markdown-middleware --savethen in your app:
var markdown = require('markdown-middleware')Usage
just make sure you use it before static or similar middleware
app.use(markdown({
// files will be looked for relative to
// to this path
directory: __dirname + '/public'
}))Running the tests
$ make test