mkdocs.yml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. site_name: NodeMCU Documentation
  2. site_description: Description of the NodeMCU documentation
  3. repo_url: https://github.com/nodemcu/nodemcu-firmware/
  4. theme: readthedocs
  5. strict: true
  6. markdown_extensions:
  7. #http://pythonhosted.org/Markdown/extensions/admonition.html
  8. - admonition:
  9. - toc:
  10. permalink: True
  11. #requird due to https://github.com/rtfd/readthedocs.org/issues/1313
  12. #see http://mkdocs.readthedocs.org/en/latest/user-guide/styling-your-docs/#customising-a-theme
  13. extra_css:
  14. - css/extra.css
  15. extra_javascript:
  16. - js/extra.js
  17. site_favicon: img/favicon.png
  18. pages:
  19. - Overview: 'index.md'
  20. - English:
  21. - Home: 'en/index.md'
  22. - Building the firmware: 'en/build.md'
  23. - Flashing the firmware: 'en/flash.md'
  24. - Filesystem notes: 'en/spiffs.md'
  25. - Uploading code: 'en/upload.md'
  26. - FAQs:
  27. - Lua Developer FAQ: 'en/lua-developer-faq.md'
  28. - Extension Developer FAQ: 'en/extn-developer-faq.md'
  29. - Hardware FAQ: 'en/hardware-faq.md'
  30. - Support: 'en/support.md'
  31. - Modules:
  32. - 'adc': 'en/modules/adc.md'
  33. - 'adxl345': 'en/modules/adxl345.md'
  34. - 'am2320': 'en/modules/am2320.md'
  35. - 'apa102': 'en/modules/apa102.md'
  36. - 'bit': 'en/modules/bit.md'
  37. - 'bme280': 'en/modules/bme280.md'
  38. - 'bmp085': 'en/modules/bmp085.md'
  39. - 'cjson': 'en/modules/cjson.md'
  40. - 'coap': 'en/modules/coap.md'
  41. - 'crypto': 'en/modules/crypto.md'
  42. - 'dht': 'en/modules/dht.md'
  43. - 'encoder': 'en/modules/encoder.md'
  44. - 'enduser setup': 'en/modules/enduser-setup.md'
  45. - 'file': 'en/modules/file.md'
  46. - 'gpio': 'en/modules/gpio.md'
  47. - 'hmc5883l': 'en/modules/hmc5883l.md'
  48. - 'http': 'en/modules/http.md'
  49. - 'hx711' : 'en/modules/hx711.md'
  50. - 'i2c' : 'en/modules/i2c.md'
  51. - 'l3g4200d' : 'en/modules/l3g4200d.md'
  52. - 'mdns': 'en/modules/mdns.md'
  53. - 'mqtt': 'en/modules/mqtt.md'
  54. - 'net': 'en/modules/net.md'
  55. - 'node': 'en/modules/node.md'
  56. - 'ow (1-Wire)': 'en/modules/ow.md'
  57. - 'perf': 'en/modules/perf.md'
  58. - 'pwm' : 'en/modules/pwm.md'
  59. - 'rc' : 'en/modules/rc.md'
  60. - 'rotary' : 'en/modules/rotary.md'
  61. - 'rtcfifo': 'en/modules/rtcfifo.md'
  62. - 'rtcmem': 'en/modules/rtcmem.md'
  63. - 'rtctime': 'en/modules/rtctime.md'
  64. - 'sigma delta': 'en/modules/sigma-delta.md'
  65. - 'sntp': 'en/modules/sntp.md'
  66. - 'spi': 'en/modules/spi.md'
  67. - 'struct': 'en/modules/struct.md'
  68. - 'tm1829': 'en/modules/tm1829.md'
  69. - 'tmr': 'en/modules/tmr.md'
  70. - 'tsl2561': 'en/modules/tsl2561.md'
  71. - 'u8g': 'en/modules/u8g.md'
  72. - 'uart': 'en/modules/uart.md'
  73. - 'ucg': 'en/modules/ucg.md'
  74. - 'wifi': 'en/modules/wifi.md'
  75. - 'ws2801': 'en/modules/ws2801.md'
  76. - 'ws2812': 'en/modules/ws2812.md'
  77. #- Deutsch:
  78. # - Home: 'de/index.md'