Update RTD MkDocs (#3458)

This commit is contained in:
Marcel Stör 2021-08-19 07:44:56 +02:00 committed by GitHub
parent d2f08f54d2
commit bc9cba2430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 171 additions and 175 deletions

27
.gitignore vendored
View File

@ -1,24 +1,37 @@
sdk/
cache/
user_config.h
server-ca.crt
sdkconfig
sdkconfig.old*
build/
components/*/.output/
tools/toolchains
extmods.ini
.ccache
bin
.gdb_history .gdb_history
app/lua/.std app/lua/.std
app/lua53/.std app/lua53/.std
sdk/ sdk/
cache/
.ccache/
local/ local/
user_config.h
server-ca.crt
luac.cross luac.cross
luac.cross.int luac.cross.int
uz_unzip uz_unzip
uz_zip uz_zip
tools/toolchains/
#ignore Eclipse project files #ignore Eclipse project files
.cproject .cproject
.project .project
.settings/ .settings/
.vscode
.vs # ignore VS Code files
.vscode/**
# ignore IDEA files
.idea
*.iml
#ignore temp file for build infos #ignore temp file for build infos
buildinfo.h buildinfo.h

15
.readthedocs.yaml Normal file
View File

@ -0,0 +1,15 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
mkdocs:
configuration: mkdocs.yml
# Optionally set the version of Python and requirements required to build your docs
python:
version: "3.7"
install:
- requirements: docs/requirements.txt

View File

@ -1,48 +1,9 @@
blockquote { /*https://github.com/mkdocs/mkdocs/issues/2538*/
padding: 0 15px; .wy-menu-vertical header,
color: #777; .wy-menu-vertical p.caption {
border-left: 4px solid #ddd; color: #55a5d9;
}
.rst-content blockquote {
margin: 0;
}
/*shifts the nested subnav label to the left to align it with the regular nav item labels*/
ul.subnav ul.subnav span {
padding-left: 1.3em;
}
body {
font-size: 100%;
}
p {
line-height: 20px;
margin-bottom: 16px;
}
h1, h2 {
border-bottom: 1px solid #eee;
line-height: 1.2;
margin-top: 1.2em;
margin-bottom: 16px;
}
h3, h4, h5, h6 {
margin: 1em 0 0.7em 0;
}
code {
font-size: 85%; font-size: 85%;
margin-right: 3px; margin: 12px 0 0;
}
table.docutils td code {
font-size: 100%;
}
.wy-plain-list-disc, .rst-content .section ul, .rst-content .toctree-wrapper ul, article ul {
line-height: 20px;
margin-bottom: 16px;
}
table#gs td {
text-align: center;
} }
table#gs { table#gs {
@ -52,10 +13,12 @@ table#gs {
} }
table#gs td { table#gs td {
text-align: center;
font-size: 14px; font-size: 14px;
padding: 10px 5px; padding: 10px 5px;
color: #333; color: #333;
background-color: #fff; background-color: #fff;
white-space: unset;
} }
table#gs th { table#gs th {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 116 KiB

View File

@ -45,9 +45,11 @@ var nodemcu = nodemcu || {};
*/ */
function replaceRelativeLinksWithStaticGitHubUrl() { function replaceRelativeLinksWithStaticGitHubUrl() {
if (isOnRtd()) { if (isOnRtd()) {
var relativePath = "../../.."; var relativePath = "../..";
var gitHubPath = "https://github.com/nodemcu/nodemcu-firmware/tree/" + determineSelectedBranch(); var gitHubPath = "https://github.com/nodemcu/nodemcu-firmware/tree/" + determineSelectedBranch();
var gitHubLinks = $("a[href^='" + relativePath + "']").each(function (index) { // 'div.section' denotes the container into which doc pages are integrated i.e. "the content" w/o navigation,
// header, breadcrumbs, footer, etc. It's important that only links in this very section are manipulated.
var gitHubLinks = $("div.section a[href^='" + relativePath + "']").each(function (index) {
var url = $(this).attr('href'); var url = $(this).attr('href');
$(this).attr('href', url.replace(relativePath, gitHubPath)); $(this).attr('href', url.replace(relativePath, gitHubPath));
}); });

1
docs/requirements.txt Normal file
View File

@ -0,0 +1 @@
mkdocs==1.2.2

View File

@ -4,6 +4,8 @@ repo_url: https://github.com/nodemcu/nodemcu-firmware/
theme: theme:
name: "readthedocs" name: "readthedocs"
hljs_languages:
- lua
strict: false #Allows to build and test documentation in local environment where some links are unreachable strict: false #Allows to build and test documentation in local environment where some links are unreachable
# Uncomment the line below to build docs to be used locally; site/index.html # Uncomment the line below to build docs to be used locally; site/index.html
@ -11,132 +13,132 @@ strict: false #Allows to build and test documentation in local environment where
# use_directory_urls: false # use_directory_urls: false
markdown_extensions: markdown_extensions:
#http://pythonhosted.org/Markdown/extensions/admonition.html #http://pythonhosted.org/Markdown/extensions/admonition.html
- admonition: - admonition:
- toc: - toc:
permalink: True permalink: True
#required due to https://github.com/rtfd/readthedocs.org/issues/1313 #required due to https://github.com/rtfd/readthedocs.org/issues/1313
#see http://mkdocs.readthedocs.org/en/latest/user-guide/styling-your-docs/#customising-a-theme #see http://mkdocs.readthedocs.org/en/latest/user-guide/styling-your-docs/#customising-a-theme
extra_css: extra_css:
- css/extra.css - css/extra.css
extra_javascript: extra_javascript:
- js/extra.js - js/extra.js
pages: pages:
- Overview: 'index.md' - Overview: 'index.md'
- Basics: - Basics:
- Getting started: 'getting-started.md' - Getting started: 'getting-started.md'
- Building the firmware: 'build.md' - Building the firmware: 'build.md'
- Flashing the firmware: 'flash.md' - Flashing the firmware: 'flash.md'
- Uploading code: 'upload.md' - Uploading code: 'upload.md'
- Compiling code: 'compiling.md' - Compiling code: 'compiling.md'
- Support: 'support.md' - Support: 'support.md'
- Reference: - Reference:
- NodeMCU Language Reference Manual: 'nodemcu-lrm.md' - NodeMCU Language Reference Manual: 'nodemcu-lrm.md'
- Programming in NodeMCU: 'nodemcu-pil.md' - Programming in NodeMCU: 'nodemcu-pil.md'
- FAQs: - FAQs:
- Lua Developer FAQ: 'lua-developer-faq.md' - Lua Developer FAQ: 'lua-developer-faq.md'
- Extension Developer FAQ: 'extn-developer-faq.md' - Extension Developer FAQ: 'extn-developer-faq.md'
- Hardware FAQ: 'hardware-faq.md' - Hardware FAQ: 'hardware-faq.md'
- Whitepapers: - Whitepapers:
- Lua 5.3 Support: 'lua53.md' - Lua 5.3 Support: 'lua53.md'
- Lua Flash Store (LFS): 'lfs.md' - Lua Flash Store (LFS): 'lfs.md'
- Lua Compact Debug (LCD): 'lcd.md' - Lua Compact Debug (LCD): 'lcd.md'
- Filesystem on SD card: 'sdcard.md' - Filesystem on SD card: 'sdcard.md'
- Internal filesystem: 'spiffs.md' - Internal filesystem: 'spiffs.md'
- Lua Modules: - Lua Modules:
- 'Lua modules directory': 'lua-modules/README.md' - 'Lua modules directory': 'lua-modules/README.md'
- 'bh1750': 'lua-modules/bh1750.md' - 'bh1750': 'lua-modules/bh1750.md'
- 'bme280': 'lua-modules/bme280.md' - 'bme280': 'lua-modules/bme280.md'
- 'cohelper': 'lua-modules/cohelper.md' - 'cohelper': 'lua-modules/cohelper.md'
- 'ds18b20': 'lua-modules/ds18b20.md' - 'ds18b20': 'lua-modules/ds18b20.md'
- 'ds3231': 'lua-modules/ds3231.md' - 'ds3231': 'lua-modules/ds3231.md'
- 'fifo' : 'lua-modules/fifo.md' - 'fifo': 'lua-modules/fifo.md'
- 'fifosock' : 'lua-modules/fifosock.md' - 'fifosock': 'lua-modules/fifosock.md'
- 'file_lfs': 'lua-modules/file_lfs.md' - 'file_lfs': 'lua-modules/file_lfs.md'
- 'ftpserver': 'lua-modules/ftpserver.md' - 'ftpserver': 'lua-modules/ftpserver.md'
- 'gossip': 'lua-modules/gossip.md' - 'gossip': 'lua-modules/gossip.md'
- 'hdc1000': 'lua-modules/hdc1000.md' - 'hdc1000': 'lua-modules/hdc1000.md'
- 'httpserver': 'lua-modules/httpserver.md' - 'httpserver': 'lua-modules/httpserver.md'
- 'imap': 'lua-modules/imap.md' - 'imap': 'lua-modules/imap.md'
- 'liquidcrystal': 'lua-modules/liquidcrystal.md' - 'liquidcrystal': 'lua-modules/liquidcrystal.md'
- 'lm92': 'lua-modules/lm92.md' - 'lm92': 'lua-modules/lm92.md'
- 'mcp23008': 'lua-modules/mcp23008.md' - 'mcp23008': 'lua-modules/mcp23008.md'
- 'mcp23017': 'lua-modules/mcp23017.md' - 'mcp23017': 'lua-modules/mcp23017.md'
- 'redis': 'lua-modules/redis.md' - 'redis': 'lua-modules/redis.md'
- 'telnet': 'lua-modules/telnet.md' - 'telnet': 'lua-modules/telnet.md'
- 'yeelink': 'lua-modules/yeelink.md' - 'yeelink': 'lua-modules/yeelink.md'
- C Modules: - C Modules:
- 'adc': 'modules/adc.md' - 'adc': 'modules/adc.md'
- 'ads1115': 'modules/ads1115.md' - 'ads1115': 'modules/ads1115.md'
- 'adxl345' : 'modules/adxl345.md' - 'adxl345': 'modules/adxl345.md'
- 'am2320': 'modules/am2320.md' - 'am2320': 'modules/am2320.md'
- 'apa102': 'modules/apa102.md' - 'apa102': 'modules/apa102.md'
- 'bit': 'modules/bit.md' - 'bit': 'modules/bit.md'
- 'bloom' : 'modules/bloom.md' - 'bloom': 'modules/bloom.md'
- 'bme280': 'modules/bme280.md' - 'bme280': 'modules/bme280.md'
- 'bme280_math': 'modules/bme280_math.md' - 'bme280_math': 'modules/bme280_math.md'
- 'bme680': 'modules/bme680.md' - 'bme680': 'modules/bme680.md'
- 'bmp085': 'modules/bmp085.md' - 'bmp085': 'modules/bmp085.md'
- 'cjson': 'modules/cjson.md' - 'cjson': 'modules/cjson.md'
- 'coap': 'modules/coap.md' - 'coap': 'modules/coap.md'
- 'color-utils': 'modules/color-utils.md' - 'color-utils': 'modules/color-utils.md'
- 'cron': 'modules/cron.md' - 'cron': 'modules/cron.md'
- 'crypto': 'modules/crypto.md' - 'crypto': 'modules/crypto.md'
- 'dcc': 'modules/dcc.md' - 'dcc': 'modules/dcc.md'
- 'dht': 'modules/dht.md' - 'dht': 'modules/dht.md'
- 'encoder': 'modules/encoder.md' - 'encoder': 'modules/encoder.md'
- 'enduser setup / captive portal / WiFi manager': 'modules/enduser-setup.md' - 'enduser setup / captive portal / WiFi manager': 'modules/enduser-setup.md'
- 'file': 'modules/file.md' - 'file': 'modules/file.md'
- 'gdbstub': 'modules/gdbstub.md' - 'gdbstub': 'modules/gdbstub.md'
- 'gpio': 'modules/gpio.md' - 'gpio': 'modules/gpio.md'
- 'hdc1080': 'modules/hdc1080.md' - 'hdc1080': 'modules/hdc1080.md'
- 'hmc5883l': 'modules/hmc5883l.md' - 'hmc5883l': 'modules/hmc5883l.md'
- 'http': 'modules/http.md' - 'http': 'modules/http.md'
- 'hx711' : 'modules/hx711.md' - 'hx711': 'modules/hx711.md'
- 'i2c' : 'modules/i2c.md' - 'i2c': 'modules/i2c.md'
- 'l3g4200d' : 'modules/l3g4200d.md' - 'l3g4200d': 'modules/l3g4200d.md'
- 'mcp4725': 'modules/mcp4725.md' - 'mcp4725': 'modules/mcp4725.md'
- 'mdns': 'modules/mdns.md' - 'mdns': 'modules/mdns.md'
- 'mqtt': 'modules/mqtt.md' - 'mqtt': 'modules/mqtt.md'
- 'net': 'modules/net.md' - 'net': 'modules/net.md'
- 'node': 'modules/node.md' - 'node': 'modules/node.md'
- 'ow (1-Wire)': 'modules/ow.md' - 'ow (1-Wire)': 'modules/ow.md'
- 'pcm' : 'modules/pcm.md' - 'pcm': 'modules/pcm.md'
- 'perf': 'modules/perf.md' - 'perf': 'modules/perf.md'
- 'pipe': 'modules/pipe.md' - 'pipe': 'modules/pipe.md'
- 'pixbuf': 'modules/pixbuf.md' - 'pixbuf': 'modules/pixbuf.md'
- 'pwm' : 'modules/pwm.md' - 'pwm': 'modules/pwm.md'
- 'pwm2' : 'modules/pwm2.md' - 'pwm2': 'modules/pwm2.md'
- 'rfswitch' : 'modules/rfswitch.md' - 'rfswitch': 'modules/rfswitch.md'
- 'rotary' : 'modules/rotary.md' - 'rotary': 'modules/rotary.md'
- 'rtcfifo': 'modules/rtcfifo.md' - 'rtcfifo': 'modules/rtcfifo.md'
- 'rtcmem': 'modules/rtcmem.md' - 'rtcmem': 'modules/rtcmem.md'
- 'rtctime': 'modules/rtctime.md' - 'rtctime': 'modules/rtctime.md'
- 'si7021' : 'modules/si7021.md' - 'si7021': 'modules/si7021.md'
- 'sigma delta': 'modules/sigma-delta.md' - 'sigma delta': 'modules/sigma-delta.md'
- 'sjson': 'modules/sjson.md' - 'sjson': 'modules/sjson.md'
- 'sntp': 'modules/sntp.md' - 'sntp': 'modules/sntp.md'
- 'softuart': 'modules/softuart.md' - 'softuart': 'modules/softuart.md'
- 'somfy': 'modules/somfy.md' - 'somfy': 'modules/somfy.md'
- 'spi': 'modules/spi.md' - 'spi': 'modules/spi.md'
- 'struct': 'modules/struct.md' - 'struct': 'modules/struct.md'
- 'switec': 'modules/switec.md' - 'switec': 'modules/switec.md'
- 'tcs34725': 'modules/tcs34725.md' - 'tcs34725': 'modules/tcs34725.md'
- 'tls': 'modules/tls.md' - 'tls': 'modules/tls.md'
- 'tm1829': 'modules/tm1829.md' - 'tm1829': 'modules/tm1829.md'
- 'tmr': 'modules/tmr.md' - 'tmr': 'modules/tmr.md'
- 'tsl2561': 'modules/tsl2561.md' - 'tsl2561': 'modules/tsl2561.md'
- 'u8g2': 'modules/u8g2.md' - 'u8g2': 'modules/u8g2.md'
- 'uart': 'modules/uart.md' - 'uart': 'modules/uart.md'
- 'ucg': 'modules/ucg.md' - 'ucg': 'modules/ucg.md'
- 'websocket': 'modules/websocket.md' - 'websocket': 'modules/websocket.md'
- 'wiegand': 'modules/wiegand.md' - 'wiegand': 'modules/wiegand.md'
- 'wifi': 'modules/wifi.md' - 'wifi': 'modules/wifi.md'
- 'wifi.monitor': 'modules/wifi_monitor.md' - 'wifi.monitor': 'modules/wifi_monitor.md'
- 'wps': 'modules/wps.md' - 'wps': 'modules/wps.md'
- 'ws2801': 'modules/ws2801.md' - 'ws2801': 'modules/ws2801.md'
- 'ws2812': 'modules/ws2812.md' - 'ws2812': 'modules/ws2812.md'
- 'ws2812-effects': 'modules/ws2812-effects.md' - 'ws2812-effects': 'modules/ws2812-effects.md'
- 'xpt2046': 'modules/xpt2046.md' - 'xpt2046': 'modules/xpt2046.md'