added a raw option to render_partial. Now you can import partials without having them parsed by the Liquid template parser

source
Brandon Mathis 2011-08-01 16:24:06 -04:00
parent 6009daa8a2
commit 08dc63a95e
1 changed files with 14 additions and 5 deletions

View File

@ -26,9 +26,14 @@ require 'pathname'
module Jekyll
class RenderPartialTag < Liquid::Tag
def initialize(tag_name, file, tokens)
def initialize(tag_name, markup, tokens)
@file = nil
@raw = false
if markup =~ /^(\S+)\s?(\w+)?/
@file = $1.strip
@raw = $2 == 'raw'
end
super
@file = file.strip
end
def render(context)
@ -45,9 +50,13 @@ module Jekyll
if contents =~ /\A-{3}.+[^\A]-{3}\n(.+)/m
contents = $1.lstrip
end
partial = Liquid::Template.parse(contents)
context.stack do
partial.render(context)
if @raw
contents
else
partial = Liquid::Template.parse(contents)
context.stack do
partial.render(context)
end
end
end
end