从markdown

时间:2016-06-16 20:35:14

标签: collections attributes jekyll liquid

我有一套代表我教的课程的藏品。他们每个人都有一些与该课程相关的独特属性。例如:

# Collections, which are CS courses for me
collections:  
  cs1:  
    output: true  
    title:  "CS1"  
    permalink: /teaching/cs1/:path/  
    TAemail: "cs1@school.edu"  

  cs2:
    output: true  
    title:  "CS2"  
    permalink: /teaching/cs2/:path/  
    TAemail: "cs2@school.edu"  
   ...

在每个集合中,都有一个Logistics.md文件,该文件应显示该课程的电子邮件地址。例如,如果课程是cs2,我想要使用的是:

[Teaching team email](mailto:{{ site.cs2.TAemail }}) ...

然而,这不起作用。如果我将TAemail名称放在集合中的Logistics.md文件中,并对其进行某种查找,如:

{% for file in site.cs2 %}
  {% if file.type == 'Info' %}
      {% if file.subtype == 'Logistics' %}
| | email: | [ Team ](mailto: {{ file.TAemail }}) |  
      {% endif %}
  {% endif %}
{% endfor %}

它工作正常。这看起来很尴尬而且不是很像jekyll。

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

{{ site.cs2.TAemail }}不起作用,因为site.cs2是包含集合项的数组,因此您无法访问指定的元数据,因为它不是数组的属性。 / p>

访问集合元数据的方法是site.collections

e.g。

{% assign cs_collection = site.collections | where: "label", "cs1" | first %}
Send e-mail to: {{ cs_collection.TAemail }}

BTW,集合中的每个项目都包含一个名为collection的属性,其中包含它所属的集合的名称,因此您可以根据项目动态查询集合,而无需对其进行硬编码。过滤器中的集合名称。

e.g。

{% for item in site.cs1 %}
  {% assign this_collection = item.collection %}

  {% assign cs_collection = site.collections | where: "label", this_collection | first %}
  Send e-mail to: {{ cs_collection.TAemail }}
{% endfor %}