From: Haishan Zhou Date: Tue, 27 Jun 2017 10:56:50 +0000 (+0800) Subject: helpers: Add Blackfriday 'joinLines' extension support (#3574) X-Git-Tag: v0.25~35 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a54404968;p=brevno-suite%2Fhugo helpers: Add Blackfriday 'joinLines' extension support (#3574) See https://github.com/russross/blackfriday/pull/334 "add an extension to handle Chinese (or CJK) newlines" for more information. --- diff --git a/helpers/content.go b/helpers/content.go index 4a96c501..6db35263 100644 --- a/helpers/content.go +++ b/helpers/content.go @@ -137,6 +137,7 @@ var blackfridayExtensionMap = map[string]int{ "autoHeaderIds": blackfriday.EXTENSION_AUTO_HEADER_IDS, "backslashLineBreak": blackfriday.EXTENSION_BACKSLASH_LINE_BREAK, "definitionLists": blackfriday.EXTENSION_DEFINITION_LISTS, + "joinLines": blackfriday.EXTENSION_JOIN_LINES, } var stripHTMLReplacer = strings.NewReplacer("\n", " ", "

", "\n", "
", "\n", "
", "\n")