diff options
Diffstat (limited to 'plugins/include_code.rb')
-rw-r--r-- | plugins/include_code.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/include_code.rb b/plugins/include_code.rb index f2b8e37b..e064fe2c 100644 --- a/plugins/include_code.rb +++ b/plugins/include_code.rb @@ -55,6 +55,7 @@ module Jekyll @filetype = file.extname.sub('.','') @filetype = 'objc' if @filetype == 'm' @filetype = 'perl' if @filetype == 'pl' + @filetype = 'yaml' if @filetype == 'yml' title = @title ? "#{@title} (#{file.basename})" : file.basename url = "#{context.registers[:site].config['url']}/#{code_dir}/#{@file}" source = "<div><figure role=code><figcaption><span>#{title}</span> <a href='#{url}'>download</a></figcaption>\n" |