support_matrix.rst: add internal links to boards in the table

This commit is contained in:
sommersoft 2020-08-07 22:52:34 -05:00
parent 354edd9431
commit c374368053
1 changed files with 10 additions and 5 deletions

View File

@ -6,11 +6,16 @@ Support Matrix
The following table lists the available built-in modules for each CircuitPython
capable board.
.. csv-table::
.. list-table::
:header-rows: 1
:widths: 7, 50
"Board", "Modules Available"
{% for key, value in support_matrix|dictsort -%}
"{{ key }}", "{{ '`' ~ value|join("`, `") ~ '`' }}"
{% endfor -%}
* - Board
- Modules Available
{% for key, value in support_matrix|dictsort %}
{{ '.. _' ~ key ~ ':' }}
* - {{ key }}
- {{ '`' ~ value|join("`, `") ~ '`' }}
{% endfor %}