Skip to content

Instantly share code, notes, and snippets.

@imathis
Created June 15, 2011 16:04
Show Gist options
  • Save imathis/1027416 to your computer and use it in GitHub Desktop.
Save imathis/1027416 to your computer and use it in GitHub Desktop.
Jekyll plugin to import code blocks from the filesystem for syntax highlighting
require 'pathname'
module Jekyll
class CodeBlockTag < 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
source = file.read
file_type = file.extname
url = "#{context.registers[:site].config['url']}/#{code_dir}/#{file.basename}"
source = "<figure>{% highlight #{file_type} %}\n" + source + "\n{% endhighlight %}"
source += "<figcaption><span>#{file.basename}</span><a href='#{url}'>Download</a></figcaption></figure>"
partial = Liquid::Template.parse(source)
context.stack do
partial.render(context)
end
end
end
end
end
Liquid::Template.register_tag('codeblock', Jekyll::CodeBlockTag)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment