summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsommersoft <sommersoft@gmail.com>2020-08-08 11:37:49 -0500
committersommersoft <sommersoft@gmail.com>2020-08-08 11:37:49 -0500
commitce9bc1258a1579ed05c6fbedfb5cb11ba6eb6a4c (patch)
treeb20cfcdf1ec03ed1c833c8762da67a7f73c2e2cb
parentc3743680539808881ad1328b10523b4825578f72 (diff)
support_matrix.rst: pre-process space chars in internal link names; would cause a no-id situation when names like 'ndGarage[n°] Bit6: FeatherSnow-v2' were parsed.
-rw-r--r--shared-bindings/support_matrix.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/support_matrix.rst b/shared-bindings/support_matrix.rst
index e77d15162..1b75e0256 100644
--- a/shared-bindings/support_matrix.rst
+++ b/shared-bindings/support_matrix.rst
@@ -14,7 +14,7 @@ capable board.
- Modules Available
{% for key, value in support_matrix|dictsort %}
- {{ '.. _' ~ key ~ ':' }}
+ {{ '.. _' ~ key|replace(" ", "-") ~ ':' }}
* - {{ key }}
- {{ '`' ~ value|join("`, `") ~ '`' }}