mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-01 02:05:35 -05:00
Need double quotes for newline character. Fixes #178.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
== Edge
|
||||
* Bug Fixes
|
||||
* Fix Markdown Pygments prefix and suffix (#178)
|
||||
|
||||
== 0.6.0
|
||||
* Major Enhancements
|
||||
* Proper plugin system (#19, #100)
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user