projects
/
web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
make the code background color actually (faintly) visible
[web.git]
/
personal
/
_plugins
/
readmes.rb
diff --git
a/personal/_plugins/readmes.rb
b/personal/_plugins/readmes.rb
index 4360d767b1a93f3589a7f78e451fdc7dc4e1f3d6..7767be727366e97a81bffd3c5e077e47bbdf2d3b 100644
(file)
--- a/
personal/_plugins/readmes.rb
+++ b/
personal/_plugins/readmes.rb
@@
-12,7
+12,7
@@
module Jekyll
content = File.read(src, self.merged_file_read_opts({})).each_line.to_a
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(/^([^:]*):.*$/)
if slug
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)
safe true
def generate(site)
+ # Go through all READMEs, and add them as pages
readmes = site.config['readmes']
readmes = site.config['readmes']
+ return if readmes.nil?
base = readmes['src_base']
dir = readmes['out_base']
idx = 0
base = readmes['src_base']
dir = readmes['out_base']
idx = 0