我有一个 .md 文件,它遍历一组标签:
---
title: The First Page
date: Created
tags:
- home
- flashcards
- info
- other
---
## {{ title }}
**Publish Date:** {{ page.date }}
This is the index page now.
<ul>
{% for item in tags %}
<li>{{ item }}</li>
{% endfor %}
</ul>
但是当我运行它 ( eleventy --serve
) 时,它会对 HTML 标签进行编码:
如何让它不编码 HTML 标签?