rename gfmHardwrap config option to hardwrap for agreement with dialect and future-proofing

This commit is contained in:
Ben Blank 2012-04-26 08:34:34 -07:00
parent 22ce570985
commit f45d9bbccc

View File

@ -28,7 +28,7 @@ function getParser(parser, conf) {
parser = new (require("gfm/showdown").Converter)();
parser.githubRepoOwner = conf.githubRepoOwner;
parser.githubRepoName = conf.githubRepoName;
parser.hardwrap = !!conf.gfmHardwrap;
parser.hardwrap = !!conf.hardwrap;
return function(source) {
return parser.makeHtml(source);