Deng is a templating language inspired by Nunjucks, Jinja and the Django template language. Here is an example:
<h2>Articles</h2>
{% for page.articles as article %}
<h3>{{ article.title }}</h3>
{% if article.author as author %}
<p>Written by {{ author }}.</p>
{% endif %}
<p>{{ article.content | excerpt(maxWords: 20) }}</p>
{% endfor %}
It is written in Zig.
See also
- TomatenMark, a markup language I am creating
- D★Mark, a slightly older markup language I have created