X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/b2e3f027086fdf54f6d057d7b28ec13025e72a78..ab6d193f3042edcf9b7092878cb3d92860a3ed9b:/ralf/_plugins/readmes.rb diff --git a/ralf/_plugins/readmes.rb b/ralf/_plugins/readmes.rb index 4360d76..b5c7ea6 100644 --- a/ralf/_plugins/readmes.rb +++ b/ralf/_plugins/readmes.rb @@ -10,9 +10,9 @@ 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'] = 'default' + self.data['layout'] = 'page' self.data['title'] = content[0].match(/^#* ?(.*)\n$/)[1] slug = self.data['title'].match(/^([^:]*):.*$/) if slug @@ -27,7 +27,9 @@ 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'] dir = readmes['out_base'] idx = 0