{% comment %} 引数: type: 表示するコンテンツの種類 list: 表示するデータのリスト キー: アンカー名 値: データ: name: データ名 {% endcomment %} {% capture anchors %} {% for data in include.list %} {{ data[0] }} {% endfor %} {% endcapture %} {% assign sorted-anchors = anchors | split: " " | sort %} {% capture template-name %}content-{{ include.type }}.md{% endcapture %} {% for anchor in sorted-anchors %} # {{ include.list[anchor].name }} {#{{ anchor }}} {% include {{ template-name }} list=include.list key=anchor %} {% endfor %}