Browse code

Codeblock: Output source even if 'pygments_prefix' or 'pygments_suffix' is nil. Fixes #182

Frederic Hemberger authored on 11/10/2011 at 13:46:20
Showing 1 changed files
... ...
@@ -90,6 +90,7 @@ module Jekyll
90 90
       source = safe_wrap(source)
91 91
       source = context['pygments_prefix'] + source if context['pygments_prefix']
92 92
       source = source + context['pygments_suffix'] if context['pygments_suffix']
93
+      source
93 94
     end
94 95
   end
95 96
 end