Class: Burr::BlockTag
- Defined in:
- lib/burr/liquid_ext/block.rb
Constant Summary collapse
- Syntax =
/(\w)+/
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#parent ⇒ Object
Returns the value of attribute parent.
Instance Method Summary collapse
- #add_parent(nodelist) ⇒ Object
- #call_super(context) ⇒ Object
-
#initialize(tag_name, markup, tokens) ⇒ BlockTag
constructor
A new instance of BlockTag.
- #render(context) ⇒ Object
Constructor Details
#initialize(tag_name, markup, tokens) ⇒ BlockTag
Returns a new instance of BlockTag.
20 21 22 23 24 25 26 27 28 |
# File 'lib/burr/liquid_ext/block.rb', line 20 def initialize(tag_name, markup, tokens) if markup =~ Syntax @name = $1 else raise Liquid::SyntaxError.new("Syntax Error in 'block' - Valid syntax: block [name]") end super if tokens end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
18 19 20 |
# File 'lib/burr/liquid_ext/block.rb', line 18 def name @name end |
#parent ⇒ Object
Returns the value of attribute parent.
17 18 19 |
# File 'lib/burr/liquid_ext/block.rb', line 17 def parent @parent end |
Instance Method Details
#add_parent(nodelist) ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/burr/liquid_ext/block.rb', line 38 def add_parent(nodelist) if parent parent.add_parent(nodelist) else self.parent = BlockTag.new(@tag_name, @name, nil) parent.nodelist = nodelist end end |
#call_super(context) ⇒ Object
47 48 49 50 51 52 53 |
# File 'lib/burr/liquid_ext/block.rb', line 47 def call_super(context) if parent parent.render(context) else '' end end |