discord-community/wiki/Home.md.tpl
Knut Ahlers 2df640bf35
Wiki: Update tpl location, fix field align
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-07-25 14:28:46 +02:00

18 lines
503 B
Smarty

# Discord-Community
## Modules
{% for module in modules -%}
### {{ module.type }}
{{ module.description }}
| Attribute | Req. | Type | Default Value | Description |
| --------- | :--: | ---- | ------------- | ----------- |
{%- for attr in module.attributes %}
| `{{ attr.name }}` | {% if attr.required == 'required' %}{% endif %} | {{ attr.type }} | {% if attr.default != "" %}`{{ attr.default }}`{% endif %} | {{ attr.description }} |
{%- endfor %}
{% endfor %}
<!-- vim: set ft=markdown : -->