diff options
Diffstat (limited to '')
-rw-r--r-- | plugins/include_code.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/include_code.rb b/plugins/include_code.rb index 5529f322..70d5f138 100644 --- a/plugins/include_code.rb +++ b/plugins/include_code.rb @@ -58,7 +58,7 @@ module Jekyll code = file.read @filetype = file.extname.sub('.','') if @filetype.nil? title = @title ? "#{@title} (#{file.basename})" : file.basename - url = "#{context.registers[:site].config['url']}/#{code_dir}/#{@file}" + url = "/#{code_dir}/#{@file}" source = "<div><figure role=code><figcaption><span>#{title}</span> <a href='#{url}'>download</a></figcaption>\n" source += " #{highlight(code, @filetype)}</figure></div>" end |