From 6a605753c1ca31983765eb3ce96d3ae01d759b3b Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Wed, 23 Jun 2010 15:50:22 -0700 Subject: [PATCH] Need double quotes for newline character. Fixes #178. --- History.txt | 4 ++++ lib/jekyll/converters/markdown.rb | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/History.txt b/History.txt index f2521821..b0e981af 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== Edge + * Bug Fixes + * Fix Markdown Pygments prefix and suffix (#178) + == 0.6.0 * Major Enhancements * Proper plugin system (#19, #100) diff --git a/lib/jekyll/converters/markdown.rb b/lib/jekyll/converters/markdown.rb index 4e50ef5a..b4bc2475 100644 --- a/lib/jekyll/converters/markdown.rb +++ b/lib/jekyll/converters/markdown.rb @@ -3,8 +3,8 @@ module Jekyll class MarkdownConverter < Converter safe true - pygments_prefix '\n' - pygments_suffix '\n' + pygments_prefix "\n" + pygments_suffix "\n" def setup return if @setup