From f45d9bbccc7d77538cc5d5e7e942b5cb2bfdfbe6 Mon Sep 17 00:00:00 2001 From: Ben Blank Date: Thu, 26 Apr 2012 08:34:34 -0700 Subject: [PATCH] rename `gfmHardwrap` config option to `hardwrap` for agreement with `dialect` and future-proofing --- plugins/markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/markdown.js b/plugins/markdown.js index 7b9b1586..d6d4f40d 100644 --- a/plugins/markdown.js +++ b/plugins/markdown.js @@ -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);