X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/a9427057409359dd7aaeace41ab68f8a6d49dc54..a0ac63cb5281c536a4a317c83e099b9e51657418:/_plugins/readmes.rb diff --git a/_plugins/readmes.rb b/_plugins/readmes.rb index 82f917f..f702589 100644 --- a/_plugins/readmes.rb +++ b/_plugins/readmes.rb @@ -12,9 +12,9 @@ module Jekyll content = File.read(src, self.merged_file_read_opts({})).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(/^(.*):.*$/) + slug = self.data['title'].match(/^([^:]*):.*$/) if slug self.data['slug'] = slug[1] end @@ -23,7 +23,7 @@ module Jekyll end end - class CategoryPageGenerator < Generator + class ReadmePageGenerator < Generator safe true def generate(site)