diff --git a/plugins/octopress_filters.rb b/plugins/octopress_filters.rb index e85466e..92622b3 100644 --- a/plugins/octopress_filters.rb +++ b/plugins/octopress_filters.rb @@ -28,7 +28,7 @@ module OctopressFilters def backtick_codeblock(input) input.gsub /

`{3}\s(\w+)<\/p>.+

(.+)<\/code><\/pre>.+`{3}<\/p>/m do
       lang = $1
-      str  = $2.gsub(/^\s{4}/, '').gsub('<','<').gsub('>','>')
+      str  = $2.gsub('<','<').gsub('>','>')
       highlight(str, lang)
     end
   end
@@ -96,3 +96,4 @@ module OctopressFilters
   end
 end
 Liquid::Template.register_filter OctopressFilters
+