You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support Jekyll-like include parameters: {% include file key=val %} to expose key=val inside "include" hash - that is, access via {{ include.key }} to access "val"
#441
Closed
Nowaker opened this issue
Jan 18, 2022
· 1 comment
Liquid:
{% include file key=val %}
{{ key }}
Jekyll
{% include file key=val %}
{{ include.key }}
Proposal
val
both in{{ key }}
and{{ include.key }}
{{ include.key }}
onlyCC @harttle
As per: https://jekyllrb.com/docs/includes/#passing-parameters-to-includes
The text was updated successfully, but these errors were encountered: