include_code now defaults to relative urls for easy testing on a development server

This commit is contained in:
Brandon Mathis 2011-08-21 16:15:46 -04:00
parent 089af26b02
commit 11c6e1f7a7
1 changed files with 1 additions and 1 deletions

View File

@ -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