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,4 +1,19 @@
|
|||||||
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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user