diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-25 20:34:52 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-25 20:35:24 -0400 |
commit | 20764e31eefcc077341a7dab649e37dcd361a8d0 (patch) | |
tree | 46c3cd9529d66b3b34fc7cbbeced0744b8f7d16a /plugins/include_code.rb | |
parent | d10ba20d140ca0a4a0eda1900d66f6c76bbfa883 (diff) | |
download | my_new_personal_website-20764e31eefcc077341a7dab649e37dcd361a8d0.tar.xz my_new_personal_website-20764e31eefcc077341a7dab649e37dcd361a8d0.zip |
updated syntax highlighting support for perl and objective c in code_block and include_code plugins
Diffstat (limited to '')
-rw-r--r-- | plugins/include_code.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/include_code.rb b/plugins/include_code.rb index 6a7d786e..b0258a4c 100644 --- a/plugins/include_code.rb +++ b/plugins/include_code.rb @@ -50,11 +50,13 @@ module Jekyll Dir.chdir(code_path) do code = file.read - file_type = file.extname + @filetype = file.extname + @filetype = 'objc' if @filetype == 'm' + @filetype = 'perl' if @filetype == 'pl' 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" - source += "{% highlight #{file_type} %}\n" + code + "\n{% endhighlight %}</figure></div>" + source += "{% highlight #{@filetype} %}\n" + code + "\n{% endhighlight %}</figure></div>" partial = Liquid::Template.parse(source) context.stack do partial.render(context) |