Need double quotes for newline character. Fixes #178.

This commit is contained in:
Tom Preston-Werner 2010-06-23 15:50:22 -07:00
parent 99ee0c4803
commit 6a605753c1
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
== Edge
* Bug Fixes
* Fix Markdown Pygments prefix and suffix (#178)
== 0.6.0
* Major Enhancements
* Proper plugin system (#19, #100)

View File

@ -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