Added {% raw %} liquid block, allowing for blocks of code which are not parsed by Liquid

This commit is contained in:
Brandon Mathis 2011-09-07 17:49:20 -05:00
parent 3d05721908
commit 9d2c76e189
1 changed files with 24 additions and 0 deletions

24
plugins/raw.rb Normal file
View File

@ -0,0 +1,24 @@
# Author: phaer, https://github.com/phaer
# Source: https://gist.github.com/1020852
# Description: Raw tag for jekyll. Keeps liquid from parsing text betweeen {% raw %} and {% endraw %}
module Jekyll
class RawTag < Liquid::Block
def parse(tokens)
@nodelist ||= []
@nodelist.clear
while token = tokens.shift
if token =~ FullToken
if block_delimiter == $1
end_tag
return
end
end
@nodelist << token if not token.empty?
end
end
end
end
Liquid::Template.register_tag('raw', Jekyll::RawTag)