diff --git a/lib/jekyll/blocks.rb b/lib/jekyll/blocks.rb index 70ae6b02..6e1549a2 100644 --- a/lib/jekyll/blocks.rb +++ b/lib/jekyll/blocks.rb @@ -8,7 +8,14 @@ module Jekyll end def render(context) - "
#{escape(super)}
" + #The div is required because RDiscount blows ass + <<-HTML +
+
+    #{h(super.to_s).strip}
+  
+
+ HTML end end end