const: clarify and typo
[web.git] / ralf / _plugins / readmes.rb
index 63df995ef9afd17a431ee2295d39baa5decb6d96..b5c7ea60c80aa99e24ffbbdfaed8c10d2dfe09d8 100644 (file)
@@ -10,7 +10,7 @@ module Jekyll
       self.process(@name)
       self.data ||= {}
       
-      content = File.read(src, self.merged_file_read_opts({})).each_line.to_a
+      content = File.read(src, Utils.merged_file_read_opts(site, {})).each_line.to_a
 
       self.data['layout'] = 'page'
       self.data['title'] = content[0].match(/^#* ?(.*)\n$/)[1]
@@ -27,6 +27,7 @@ module Jekyll
     safe true
 
     def generate(site)
+      # Go through all READMEs, and add them as pages
       readmes = site.config['readmes']
       return if readmes.nil?
       base = readmes['src_base']