盛夏的果实 发表于 2021-7-18 12:54:33

C#模板引擎 DotLiquid

C#模板引擎 DotLiquid
DotLiquid 是一个简单、快速和安全的模板引擎,移植自 Ruby 的 Liquid 标签。
示例模板:
<p>{{ user.name }} has to do:</p>
<ul>
{% for item in user.tasks %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>文档来源:51CTO技术博客https://blog.51cto.com/u_11743833/3119042
页: [1]
查看完整版本: C#模板引擎 DotLiquid