diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-08-01 17:35:33 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-08-01 17:35:44 -0400 |
commit | 7b52fb492ec003efbc0663fc5f8549bc4c6209b8 (patch) | |
tree | 93127328b26b2d71ae48c9dcd456c8f901b74a70 | |
parent | 08dc63a95e071401d4724ca8c9b9270eaf843012 (diff) | |
download | my_new_personal_website-7b52fb492ec003efbc0663fc5f8549bc4c6209b8.tar.xz my_new_personal_website-7b52fb492ec003efbc0663fc5f8549bc4c6209b8.zip |
added yml alias for yaml code highlighting
Diffstat (limited to '')
-rw-r--r-- | plugins/code_block.rb | 1 | ||||
-rw-r--r-- | plugins/include_code.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/code_block.rb b/plugins/code_block.rb index 86708285..ff242aab 100644 --- a/plugins/code_block.rb +++ b/plugins/code_block.rb @@ -79,6 +79,7 @@ module Jekyll if @filetype @filetype = 'objc' if @filetype == 'm' @filetype = 'perl' if @filetype == 'pl' + @filetype = 'yaml' if @filetype == 'yml' source += " #{highlight(code, @filetype)}</figure></div>" else source += "<pre><code>" + code.lstrip.rstrip.gsub(/</,'<') + "</code></pre></figure></div>" 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" |