Comments for Convertible.render_all_layouts and Convertible.render_liquid
This commit is contained in:
parent
29a1c18300
commit
5f13e00791
|
@ -68,9 +68,9 @@ module Jekyll
|
||||||
|
|
||||||
# Render Liquid in the content
|
# Render Liquid in the content
|
||||||
#
|
#
|
||||||
# content -
|
# content - the raw Liquid content to render
|
||||||
# payload -
|
# payload - the payload for Liquid
|
||||||
# info -
|
# info - the info for Liquid
|
||||||
#
|
#
|
||||||
# Returns the converted content
|
# Returns the converted content
|
||||||
def render_liquid(content, payload, info)
|
def render_liquid(content, payload, info)
|
||||||
|
@ -83,6 +83,13 @@ module Jekyll
|
||||||
abort("Build Failed")
|
abort("Build Failed")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Recursively render layouts
|
||||||
|
#
|
||||||
|
# layouts - a list of the layouts
|
||||||
|
# payload - the payload for Liquid
|
||||||
|
# info - the info for Liquid
|
||||||
|
#
|
||||||
|
# Returns nothing
|
||||||
def render_all_layouts(layouts, payload, info)
|
def render_all_layouts(layouts, payload, info)
|
||||||
# recursively render layouts
|
# recursively render layouts
|
||||||
layout = layouts[self.data["layout"]]
|
layout = layouts[self.data["layout"]]
|
||||||
|
|
Loading…
Reference in New Issue