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

This commit is contained in:
Frederic Hemberger 2011-10-21 09:23:56 +02:00
parent d2755dc082
commit 2043c543d2

View File

@ -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