IncludeTag is now namespaced under the Jekyll::Tags module.

This commit is contained in:
Parker Moore 2013-03-25 16:56:44 +01:00
parent cb0c6b7b86
commit 4f222317bd
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ module Jekyll
end
def render_include(file, context)
tag = IncludeTag.new('', file, [])
tag = Tags::IncludeTag.new('', file, [])
tag.render(context)
end
end