class Jekyll::FragmentBlock
Public Class Methods
new(tag_name, markup, options)
click to toggle source
Calls superclass method
# File lib/jekyll-dry.rb, line 90 def initialize(tag_name, markup, options) super end
Public Instance Methods
parse(tokens)
click to toggle source
# File lib/jekyll-dry.rb, line 94 def parse(tokens) @body = FragmentBlockBody.new while parse_body(@body, tokens) end end