mirror of
https://github.com/Luzifer/discord-community.git
synced 2024-11-12 17:02:44 +00:00
17 lines
503 B
Smarty
17 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 : -->
|