mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-12-25 08:58:58 -05:00
Added {% raw %} liquid block, allowing for blocks of code which are not parsed by Liquid
This commit is contained in:
parent
3d05721908
commit
9d2c76e189
24
plugins/raw.rb
Normal file
24
plugins/raw.rb
Normal 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)
|
Loading…
Reference in New Issue
Block a user