wiki/_includes/list-details.md

923 B

{% comment %} 引数: type: 表示するdetailsの種類 list: 表示するデータのリスト キー: アンカー名 値: データ: name: データ名 {% endcomment %}

{% capture anchors %} {% for data in include.list %} {{ data[0] }} {% endfor %} {% endcapture %}

{% assign sorted-anchors = anchors | split: " " | sort %}

{% capture template-name %}details-{{ include.type }}.md{% endcapture %}

{% for anchor in sorted-anchors %}

{{ include.list[anchor].name }} {#{{ anchor }}}

{% include {{ template-name }} list=include.list key=anchor %} {% endfor %}