diff options
| author | sommersoft <sommersoft@gmail.com> | 2020-08-08 11:37:49 -0500 |
|---|---|---|
| committer | sommersoft <sommersoft@gmail.com> | 2020-08-08 11:37:49 -0500 |
| commit | ce9bc1258a1579ed05c6fbedfb5cb11ba6eb6a4c (patch) | |
| tree | b20cfcdf1ec03ed1c833c8762da67a7f73c2e2cb /shared-bindings | |
| parent | c3743680539808881ad1328b10523b4825578f72 (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.
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/support_matrix.rst | 2 |
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("`, `") ~ '`' }} |
