Skip to content

Commit

Permalink
Default to using the UTF-8 encoding when reading files.
Browse files Browse the repository at this point in the history
Fixes #2029.
  • Loading branch information
parkr committed Feb 11, 2014
1 parent 56a633a commit c58c5b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Configuration < Hash

'timezone' => nil, # use the local timezone

'encoding' => nil, # use the system encoding
'encoding' => 'utf-8', # always use utf-8 encoding. NEVER FORGET

'safe' => false,
'detach' => false, # default to not detaching the server
Expand Down

0 comments on commit c58c5b8

Please sign in to comment.