Browse Source

Add utf-8 encoding option to Pygments highlighter, fixes #232

unreleased_contents
Frederic Hemberger 13 years ago
parent
commit
2043c543d2
  1. 4
      plugins/pygments_code.rb

4
plugins/pygments_code.rb

@ -21,11 +21,11 @@ module HighlightCode
if File.exist?(path) if File.exist?(path)
highlighted_code = File.read(path) highlighted_code = File.read(path)
else else
highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html') highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8'})
File.open(path, 'w') {|f| f.print(highlighted_code) } File.open(path, 'w') {|f| f.print(highlighted_code) }
end end
else else
highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html') highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8'})
end end
highlighted_code highlighted_code
end end

Loading…
Cancel
Save