mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-12-24 08:28:50 -05:00
include_code is now more forgiving, stripping leading forward slashes from the code_dir config
This commit is contained in:
parent
df86e647b1
commit
20de112526
@ -38,7 +38,7 @@ module Jekyll
|
|||||||
end
|
end
|
||||||
|
|
||||||
def render(context)
|
def render(context)
|
||||||
code_dir = (context.registers[:site].config['code_dir'] || 'downloads/code')
|
code_dir = (context.registers[:site].config['code_dir'].sub(/^\//,'') || 'downloads/code')
|
||||||
code_path = (Pathname.new(context.registers[:site].source) + code_dir).expand_path
|
code_path = (Pathname.new(context.registers[:site].source) + code_dir).expand_path
|
||||||
file = code_path + @file
|
file = code_path + @file
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user