C#模板引擎 DotLiquid
DotLiquid 是一个简单、快速和安全的模板引擎,移植自 Ruby 的 Liquid 标签。
示例模板:
<p>{{ user.name }} has to do:</p>
<ul>
{% for item in user.tasks %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
2023-04-17 09:39:54 阅读次数:112
DotLiquid 是一个简单、快速和安全的模板引擎,移植自 Ruby 的 Liquid 标签。
示例模板:
<p>{{ user.name }} has to do:</p>
<ul>
{% for item in user.tasks %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
文章
25746
阅读量
3134233