From ee7b9dd9581a048cee17e89181cba94254033fb2 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Mon, 11 Jul 2011 11:17:15 -0400 Subject: Changed _plugins folder to plugins and updated rake tasks accordingly --- .themes/classic/_plugins/include_code.rb | 40 -------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .themes/classic/_plugins/include_code.rb (limited to '.themes/classic/_plugins/include_code.rb') diff --git a/.themes/classic/_plugins/include_code.rb b/.themes/classic/_plugins/include_code.rb deleted file mode 100644 index fa5c76ff..00000000 --- a/.themes/classic/_plugins/include_code.rb +++ /dev/null @@ -1,40 +0,0 @@ -require 'pathname' - -module Jekyll - - class IncludeCodeTag < Liquid::Tag - def initialize(tag_name, file, tokens) - super - @file = file.strip - end - - def render(context) - code_dir = (context.registers[:site].config['code_dir'] || 'downloads/code') - code_path = (Pathname.new(context.registers[:site].source) + code_dir).expand_path - file = code_path + @file - - if File.symlink?(code_path) - return "Code directory '#{code_path}' cannot be a symlink" - end - - unless file.file? - return "File #{file} could not be found" - end - - Dir.chdir(code_path) do - code = file.read - file_type = file.extname - url = "#{context.registers[:site].config['url']}/#{code_dir}/#{@file}" - source = "
#{file.basename}download
\n" - source += "{% highlight #{file_type} %}\n" + code + "\n{% endhighlight %}
" - partial = Liquid::Template.parse(source) - context.stack do - partial.render(context) - end - end - end - end - -end - -Liquid::Template.register_tag('include_code', Jekyll::IncludeCodeTag) -- cgit v1.2.1