diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-22 17:45:26 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-22 17:49:14 -0400 |
commit | 8e489ac2daf35f81d4567f959219decd6836b024 (patch) | |
tree | 11d4be7e4fb0d48a37676839a9fb98f2fe3dfaac /plugins | |
parent | 967eeb46e8f9bb25a382c52f1f36de59b8f0d1cb (diff) | |
download | my_new_personal_website-8e489ac2daf35f81d4567f959219decd6836b024.tar.xz my_new_personal_website-8e489ac2daf35f81d4567f959219decd6836b024.zip |
fixed error in pullquote plugin
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pullquote.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pullquote.rb b/plugins/pullquote.rb index ff576fa0..03e307a7 100644 --- a/plugins/pullquote.rb +++ b/plugins/pullquote.rb @@ -31,7 +31,7 @@ module Jekyll @quote = $1 "<span class='has-pullquote' data-pullquote='#{@quote}'>#{output.join.gsub(/\{"\s*|\s*"\}/, '')}</span>" else - return "Surround your pullquote like this {! text to be quoted !}" + return "Surround your pullquote like this {\" text to be quoted \"}" end end end |