diff --git a/plugins/blockquote.rb b/plugins/blockquote.rb index 5f9a0d5..62e7d14 100644 --- a/plugins/blockquote.rb +++ b/plugins/blockquote.rb @@ -75,7 +75,7 @@ module Jekyll end def paragraphize(input) - "

#{input.gsub(/\n\n/, '

').gsub(/\n/, '
')}

" + "

#{input.lstrip.rstrip.gsub(/\n\n/, '

').gsub(/\n/, '
')}

" end end end