class Jekyll::Renderer
Attributes
output[RW]
Public Instance Methods
render_liquid(content, payload, info, path = nil)
click to toggle source
# File lib/octopress-hooks.rb, line 309 def render_liquid(content, payload, info, path = nil) if document.respond_to?(:merge_payload) && document.hooks old_render_liquid(content, document.merge_payload(payload.dup), info, path) else old_render_liquid(content, payload, info, path) end end
Also aliased as: old_render_liquid
run()
click to toggle source
# File lib/octopress-hooks.rb, line 304 def run document.pre_render if document.respond_to?(:pre_render) && document.hooks old_run end
Also aliased as: old_run