mkdocs.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. site_dir: server/docs
  2. site_name: ntfy
  3. site_url: https://ntfy.sh
  4. site_description: simple HTTP-based pub-sub
  5. copyright: Made with ❤️ by Philipp C. Heckel
  6. repo_name: binwiederhier/ntfy
  7. repo_url: https://github.com/binwiederhier/ntfy
  8. edit_uri: edit/main/docs/
  9. theme:
  10. name: material
  11. language: en
  12. logo: static/img/ntfy.png
  13. favicon: static/img/favicon.png
  14. include_search_page: false
  15. search_index_only: true
  16. palette:
  17. - media: "(prefers-color-scheme: light)" # Light mode
  18. scheme: default
  19. primary: teal
  20. toggle:
  21. icon: material/lightbulb-outline
  22. name: Switch to light mode
  23. - media: "(prefers-color-scheme: dark)" # Dark mode
  24. scheme: slate
  25. primary: teal
  26. accent: indigo
  27. toggle:
  28. icon: material/lightbulb
  29. name: Switch to dark mode
  30. features:
  31. - search.suggest
  32. - search.highlight
  33. - search.share
  34. - navigation.sections
  35. - navigation.instant
  36. - toc.integrate
  37. - content.tabs.link
  38. extra_javascript:
  39. - static/js/extra.js
  40. extra_css:
  41. - static/css/extra.css
  42. markdown_extensions:
  43. - admonition
  44. - meta
  45. - toc:
  46. permalink: true
  47. - pymdownx.tabbed:
  48. alternate_style: true
  49. - pymdownx.superfences
  50. - pymdownx.highlight:
  51. extend_pygments_lang:
  52. - name: php-inline
  53. lang: php
  54. options:
  55. startinline: true
  56. - pymdownx.tasklist:
  57. custom_checkbox: true
  58. - attr_list
  59. - md_in_html
  60. plugins:
  61. - search
  62. extra:
  63. social:
  64. - icon: fontawesome/brands/github-alt
  65. link: https://github.com/binwiederhier
  66. nav:
  67. - "Getting started": index.md
  68. - "Installation": install.md
  69. - "Configuration": config.md
  70. - "Publishing":
  71. - "Sending messages": publish.md
  72. - "Subscribing":
  73. - "From your phone": subscribe/phone.md
  74. - "From the Web UI": subscribe/web.md
  75. - "Using the API": subscribe/api.md
  76. - "Other things":
  77. - "Examples": examples.md
  78. - "Emojis 🥳 🎉": emojis.md
  79. - "Development": develop.md
  80. - "FAQs": faq.md