This commit is contained in:
TJ Holowaychuk 2012-04-02 20:13:50 -07:00
parent 1d485840fd
commit acc0e934cb

View File

@ -20,10 +20,10 @@ app.engine('md', function(path, options, fn){
return options[name] || '';
})
fn(null, html);
} catch(e) {
fn(e)
} catch(err) {
fn(err);
}
})
});
})
app.set('views', __dirname + '/views');