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
1 changed files with 2 additions and 2 deletions

View File

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