removing github-flavored-markdown as a dependency as it is no longer supported. switch to use marked instead

This commit is contained in:
Steve Bartnesky 2013-04-29 09:12:29 -05:00
parent eb1bbb92c0
commit 5fa685b602

View File

@ -6,7 +6,7 @@
var express = require('../../')
, http = require('http')
, GithubView = require('./github-view')
, md = require('github-flavored-markdown').parse;
, md = require('marked').parse;
var app = module.exports = express();