mkdocs.yml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. site_name: HttpHound Documentation
  2. site_description: HTTP reverse proxy testing framework
  3. site_author: Fabrizio Furnari
  4. site_url: https://gitlab.wikimedia.org/repos/sre/httphound/
  5. # Repository
  6. repo_name: sre/httphound
  7. repo_url: https://gitlab.wikimedia.org/repos/sre/httphound/
  8. edit_uri: edit/main/docs/
  9. # Theme configuration
  10. theme:
  11. name: material
  12. palette:
  13. # Light mode
  14. - media: "(prefers-color-scheme: light)"
  15. scheme: default
  16. primary: indigo
  17. accent: indigo
  18. toggle:
  19. icon: material/brightness-7
  20. name: Switch to dark mode
  21. # Dark mode
  22. - media: "(prefers-color-scheme: dark)"
  23. scheme: slate
  24. primary: indigo
  25. accent: indigo
  26. toggle:
  27. icon: material/brightness-4
  28. name: Switch to light mode
  29. features:
  30. - navigation.tabs
  31. - navigation.sections
  32. - navigation.top
  33. - navigation.tracking
  34. - search.highlight
  35. - search.share
  36. - search.suggest
  37. - content.code.copy
  38. - content.code.annotate
  39. icon:
  40. repo: fontawesome/brands/git-alt
  41. # Extensions
  42. markdown_extensions:
  43. - admonition
  44. - pymdownx.details
  45. - pymdownx.superfences
  46. - pymdownx.highlight:
  47. anchor_linenums: true
  48. - pymdownx.inlinehilite
  49. - pymdownx.snippets
  50. - pymdownx.tabbed:
  51. alternate_style: true
  52. - tables
  53. - footnotes
  54. - attr_list
  55. - md_in_html
  56. - toc:
  57. permalink: true
  58. # Plugins
  59. plugins:
  60. - search
  61. - autorefs
  62. - mkdocstrings:
  63. handlers:
  64. python:
  65. paths: [.]
  66. options:
  67. docstring_style: google
  68. show_source: true
  69. show_root_heading: true
  70. show_symbol_type_heading: true
  71. show_symbol_type_toc: true
  72. members_order: source
  73. separate_signature: true
  74. show_signature_annotations: true
  75. signature_crossrefs: true
  76. # Navigation structure
  77. nav:
  78. - Home: index.md
  79. - Getting Started:
  80. - Installation: getting-started/installation.md
  81. - Quick Start: getting-started/quickstart.md
  82. - CLI Reference: cli.md
  83. - API Reference:
  84. - BaseProxyTest: api/base-proxy-test.md
  85. - Configuration: api/configuration.md
  86. - Test Runner: api/test-runner.md
  87. - Validation: api/validation.md
  88. - Troubleshooting: troubleshooting.md
  89. - Contributing: contributing.md
  90. # Extra
  91. extra:
  92. version:
  93. provider: mike # For versioned docs (optional)
  94. watch:
  95. - docs