📅  最后修改于: 2022-03-11 14:57:42.211000             🧑  作者: Mango
{% assign tags = site.note | map: 'tags' | join: ',' | split: ',' | uniq %}
{% for tag in tags %}
{{ tag }}
{% for note in site.note %}
{% if note.tags contains tag %}
- {{ note.title }}
{% endif %}
{% endfor %}
{% endfor %}