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'] = 'default'
+ self.data['layout'] = 'page'
self.data['title'] = content[0].match(/^#* ?(.*)\n$/)[1]
slug = self.data['title'].match(/^([^:]*):.*$/)
if slug
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']