diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-15 18:31:22 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-15 18:38:25 -0400 |
commit | ab29d45ae81760e82a6715a41674f58c3f51683a (patch) | |
tree | b02264d2b2be677dd042971862b5fedd7f4d9bcc /themes/classic/_plugins/include_code.rb | |
parent | fea1cc49d939d09c6a3e4d41322bd40e2125d94f (diff) | |
download | my_new_personal_website-ab29d45ae81760e82a6715a41674f58c3f51683a.tar.xz my_new_personal_website-ab29d45ae81760e82a6715a41674f58c3f51683a.zip |
1. Added new include_code tag to allow auhtors to insert files from the file system with syntax highligting and a download link
2. Improved the gist tag to properly insert the sources in <noscript> tags
3. Improved semantics in the blockquote plugin and DRYed things up.
4. Pygments caching now stores to the _code_cache directory by default
5. Added a configuration for the default include_code directory
6. Updated the .gitignore
Diffstat (limited to 'themes/classic/_plugins/include_code.rb')
-rw-r--r-- | themes/classic/_plugins/include_code.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/themes/classic/_plugins/include_code.rb b/themes/classic/_plugins/include_code.rb new file mode 100644 index 00000000..fa5c76ff --- /dev/null +++ b/themes/classic/_plugins/include_code.rb @@ -0,0 +1,40 @@ +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 = "<figure><figcaption><span>#{file.basename}</span><a href='#{url}'>download</a></figcaption>\n" + source += "{% highlight #{file_type} %}\n" + code + "\n{% endhighlight %}</figure>" + partial = Liquid::Template.parse(source) + context.stack do + partial.render(context) + end + end + end + end + +end + +Liquid::Template.register_tag('include_code', Jekyll::IncludeCodeTag) |