mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-20 11:20:41 -07:00
add documentation to include, fixes #163
This commit is contained in:
@@ -1,7 +1,22 @@
|
|||||||
module Liquid
|
module Liquid
|
||||||
|
|
||||||
|
# Include allows templates to relate with other templates
|
||||||
|
#
|
||||||
|
# Simply include another template:
|
||||||
|
#
|
||||||
|
# {% include 'product' %}
|
||||||
|
#
|
||||||
|
# Include a template with a local variable:
|
||||||
|
#
|
||||||
|
# {% include 'product' with products[0] %}
|
||||||
|
#
|
||||||
|
# Include a template for a collection:
|
||||||
|
#
|
||||||
|
# {% include 'product' for products %}
|
||||||
|
#
|
||||||
class Include < Tag
|
class Include < Tag
|
||||||
Syntax = /(#{QuotedFragment}+)(\s+(?:with|for)\s+(#{QuotedFragment}+))?/o
|
Syntax = /(#{QuotedFragment}+)(\s+(?:with|for)\s+(#{QuotedFragment}+))?/o
|
||||||
|
|
||||||
def initialize(tag_name, markup, tokens)
|
def initialize(tag_name, markup, tokens)
|
||||||
if markup =~ Syntax
|
if markup =~ Syntax
|
||||||
|
|
||||||
@@ -19,14 +34,14 @@ module Liquid
|
|||||||
|
|
||||||
super
|
super
|
||||||
end
|
end
|
||||||
|
|
||||||
def parse(tokens)
|
def parse(tokens)
|
||||||
end
|
end
|
||||||
|
|
||||||
def render(context)
|
def render(context)
|
||||||
partial = load_cached_partial(context)
|
partial = load_cached_partial(context)
|
||||||
variable = context[@variable_name || @template_name[1..-2]]
|
variable = context[@variable_name || @template_name[1..-2]]
|
||||||
|
|
||||||
context.stack do
|
context.stack do
|
||||||
@attributes.each do |key, value|
|
@attributes.each do |key, value|
|
||||||
context[key] = context[value]
|
context[key] = context[value]
|
||||||
@@ -43,7 +58,7 @@ module Liquid
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
def load_cached_partial(context)
|
def load_cached_partial(context)
|
||||||
cached_partials = context.registers[:cached_partials] || {}
|
cached_partials = context.registers[:cached_partials] || {}
|
||||||
@@ -61,7 +76,7 @@ module Liquid
|
|||||||
|
|
||||||
def read_template_from_file_system(context)
|
def read_template_from_file_system(context)
|
||||||
file_system = context.registers[:file_system] || Liquid::Template.file_system
|
file_system = context.registers[:file_system] || Liquid::Template.file_system
|
||||||
|
|
||||||
# make read_template_file call backwards-compatible.
|
# make read_template_file call backwards-compatible.
|
||||||
case file_system.method(:read_template_file).arity
|
case file_system.method(:read_template_file).arity
|
||||||
when 1
|
when 1
|
||||||
@@ -74,5 +89,5 @@ module Liquid
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Template.register_tag('include', Include)
|
Template.register_tag('include', Include)
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user