We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 807f049 + ce9bc12 commit 4fd474dCopy full SHA for 4fd474d
shared-bindings/support_matrix.rst
@@ -6,11 +6,16 @@ Support Matrix
6
The following table lists the available built-in modules for each CircuitPython
7
capable board.
8
9
-.. csv-table::
+.. list-table::
10
:header-rows: 1
11
:widths: 7, 50
12
13
- "Board", "Modules Available"
14
- {% for key, value in support_matrix|dictsort -%}
15
- "{{ key }}", "{{ '`' ~ value|join("`, `") ~ '`' }}"
16
- {% endfor -%}
+ * - Board
+ - Modules Available
+
+ {% for key, value in support_matrix|dictsort %}
17
+ {{ '.. _' ~ key|replace(" ", "-") ~ ':' }}
18
+ * - {{ key }}
19
+ - {{ '`' ~ value|join("`, `") ~ '`' }}
20
21
+ {% endfor %}
0 commit comments