mkdocs.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. site_name: howdoi
  2. theme:
  3. name: "material"
  4. palette:
  5. primary: ""
  6. accent: "teal"
  7. icon:
  8. repo: fontawesome/brands/github
  9. repo_name: gleitz/howdoi
  10. repo_url: https://github.com/gleitz/howdoi
  11. edit_uri: ""
  12. nav:
  13. - howdoi: index.md
  14. - Introduction: introduction.md
  15. - Usage: usage.md
  16. - Setting up development environment: development_env.md
  17. - Contributing: contributing_to_howdoi.md
  18. - Contributing documentation: contributing_docs.md
  19. - Extension development: extension_dev.md
  20. - Howdoi advanced usage: howdoi_advanced_usage.md
  21. - Troubleshooting: troubleshooting.md
  22. - Development for Windows: windows-contributing.md
  23. markdown_extensions:
  24. - toc:
  25. permalink: true
  26. - markdown.extensions.codehilite:
  27. guess_lang: false
  28. - admonition
  29. - codehilite
  30. - extra
  31. - pymdownx.snippets:
  32. base_path: docs
  33. - pymdownx.superfences:
  34. custom_fences:
  35. - name: mermaid
  36. class: mermaid
  37. format: !!python/name:pymdownx.superfences.fence_div_format
  38. - pymdownx.tabbed
  39. extra:
  40. social:
  41. - icon: fontawesome/brands/github
  42. link: "https://github.com/gleitz/howdoi"