Skip to content

Commit

Permalink
Add utf-8 encoding option to Pygments highlighter, fixes home-assista…
Browse files Browse the repository at this point in the history
  • Loading branch information
fhemberger committed Oct 21, 2011
1 parent d2755dc commit 2043c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/pygments_code.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def pygments(code, lang)
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
Expand Down

0 comments on commit 2043c54

Please sign in to comment.