support_matrix.rst: add internal links to boards in the table
This commit is contained in:
parent
354edd9431
commit
c374368053
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue