mkdocs.yml 855 B

12345678910111213141516171819202122232425262728293031323334
  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 du 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. - FAQ: 'en/faq.md'
  25. - Support: 'en/support.md'
  26. - Modules:
  27. - 'node': 'en/modules/node.md'
  28. - Deutsch:
  29. - Home: 'de/index.md'