diff --git a/lib/jekyll/document.rb b/lib/jekyll/document.rb index 9832c0f4..0410875d 100644 --- a/lib/jekyll/document.rb +++ b/lib/jekyll/document.rb @@ -1,3 +1,5 @@ +# encoding: UTF-8 + module Jekyll class Document include Comparable @@ -82,7 +84,7 @@ module Jekyll end # Determine whether the document has a YAML header. - # + # # Returns true if the file starts with three dashes def has_yaml_header? @has_yaml_header unless @has_yaml_header.nil? diff --git a/lib/jekyll/renderer.rb b/lib/jekyll/renderer.rb index 25a1552c..f5d30133 100644 --- a/lib/jekyll/renderer.rb +++ b/lib/jekyll/renderer.rb @@ -1,3 +1,5 @@ +# encoding: UTF-8 + module Jekyll class Renderer diff --git a/lib/jekyll/site.rb b/lib/jekyll/site.rb index 87b84f0e..a656b088 100644 --- a/lib/jekyll/site.rb +++ b/lib/jekyll/site.rb @@ -1,3 +1,5 @@ +# encoding: UTF-8 + module Jekyll class Site attr_accessor :config, :layouts, :posts, :pages, :static_files, diff --git a/lib/jekyll/tags/include.rb b/lib/jekyll/tags/include.rb index 97e5c754..f90f8e8a 100644 --- a/lib/jekyll/tags/include.rb +++ b/lib/jekyll/tags/include.rb @@ -1,3 +1,5 @@ +# encoding: UTF-8 + module Jekyll module Tags class IncludeTagError < StandardError