Parent

Liquid::Tag

Attributes

nodelist[RW]

Public Class Methods

new(tag_name, markup, tokens) click to toggle source
# File lib/liquid/tag.rb, line 7
def initialize(tag_name, markup, tokens)
  @tag_name   = tag_name
  @markup     = markup
  parse(tokens)
end

Public Instance Methods

name() click to toggle source
# File lib/liquid/tag.rb, line 16
def name
  self.class.name.downcase
end
parse(tokens) click to toggle source
# File lib/liquid/tag.rb, line 13
def parse(tokens)
end
render(context) click to toggle source
# File lib/liquid/tag.rb, line 20
def render(context)
  ''
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.