qmk_firmware/data/templates/xap/docs/term_definitions.md.j2

8 lines
442 B
Text
Raw Normal View History

2022-02-14 18:19:13 +00:00
| Name | Definition |
| -- | -- |
{%- for type, definition in xap.term_definitions | dictsort %}
| _{{ type }}_ | {{ definition }} |
2022-03-31 22:16:56 +00:00
{%- endfor %}
2022-03-31 22:31:01 +00:00
{%- for type, definition in xap.type_definitions | dictsort %}
2022-03-31 22:16:56 +00:00
| _{{ definition.name }}_ | {{ definition.description }}{% if 'struct' == definition.type %} Takes the format:{% for item in definition.struct_members %}<br>`{{ item.type }}` - {{ item.name }}{%- endfor %}{% endif %} |
2022-02-14 18:19:13 +00:00
{%- endfor %}