File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "modules" : {
3+ "stage" : " https://circuitpython-stage.readthedocs.io/#module-stage" ,
4+ "ugame" : " https://circuitpython-stage.readthedocs.io/#module-ugame" ,
5+ "adafruit_connection_manager" : " https://docs.circuitpython.org/projects/connectionmanager/"
6+ }
7+ }
Original file line number Diff line number Diff line change 77{% assign stable = board[0].versions | where: "stable", true | sort: "version" %}
88{% assign unstable = board[0].versions | where: "stable", false | sort: "version" %}
99{% assign bootloaders = site.data.bootloaders.bootloaders %}
10+ {% assign modules = site.data.modules.modules %}
1011{% assign bootloader_info = bootloaders[page.family] %}
1112{% assign bootloader_version = bootloader_info.version %}
1213{% assign bootloader_id = page.bootloader_id %}
@@ -184,7 +185,12 @@ <h3>CircuitPython {{ version.version }}</h3>
184185 Included frozen< sup > < a href ="https://docs.circuitpython.org/en/latest/docs/reference/glossary.html?highlight=frozen#term-frozen-module " title ="What is a frozen module "> (?)</ a > </ sup > modules:
185186 < span class ="download-modules {% if version.stable %}stable{% else %}unstable{% endif %} ">
186187 {% for module_name in version.frozen_libraries %}
188+ {% assign module_link = modules[module_name] %}
189+ {% if module_link %}
190+ < a target ="_blank " class ="library-link " href ="{{ module_link }} ">
191+ {% else %}
187192 < a target ="_blank " class ="library-link " href ="https://docs.circuitpython.org/projects/{{ module_name | split: 'adafruit_' | last }} ">
193+ {% endif %}
188194 {{ module_name }}</ a > {% unless forloop.last %}, {% endunless %}
189195 {% endfor %}
190196 </ span >
Original file line number Diff line number Diff line change 66
77< div id ="awesome-page ">
88 {% capture awesome_include %}{% include_relative awesome-circuitpython/README.md %}{% endcapture %}
9+ {% assign awesome_include = awesome_include | replace: '](./', ']( /awesome-circuitpython/' %}
910 {{ awesome_include | markdownify }}
1011</ div >
You can’t perform that action at this time.
0 commit comments