Merge pull request #3256 from sommersoft/spt_mtrx_anchors

Add Internal Links To Boards In The Support Matrix
This commit is contained in:
Scott Shawcroft 2020-08-10 14:14:57 -07:00 committed by GitHub
commit 4fd474dd08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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|replace(" ", "-") ~ ':' }}
* - {{ key }}
- {{ '`' ~ value|join("`, `") ~ '`' }}
{% endfor %}