summaryrefslogtreecommitdiffstats
path: root/mkdocs.yml
blob: 02e0c7ecea4ada0ee7c8bd4eae6c480e7290eadf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
site_name: Nextcloud News App
site_url: https://nextcloud.github.io/news/
site_description: Documentation for the Nextcloud News App
site_author: Nextcloud News Team
repo_url: https://github.com/nextcloud/news
edit_uri: blob/master/documentation/

nav:
  - index.md
  - install.md
  - clients.md
  - admin.md
  - developer.md
  - troubleshooting.md
  - Features:
    - Integration: features/integration.md
    - Custom CSS: features/customCSS.md
    - Plugins: features/plugins.md
    - Themes: features/themes.md
  - REST API:
    - API v1.2: api/api-v1-2.md
    - API v1.3: api/api-v1-3.md
    - API v2: api/api-v2.md
  - maintenance.md

theme:
  name: material
  logo: assets/logo.svg
  favicon: assets/favicon.png
  font: false
  palette:
   - media: "(prefers-color-scheme: light)"
     scheme: default
     accent: indigo
     primary: indigo
     toggle:
        icon: material/toggle-switch-off-outline
        name: Switch to dark mode
   - media: "(prefers-color-scheme: dark)"
     scheme: slate
     primary: indigo
     accent: indigo
     toggle:
        icon: material/toggle-switch
        name: Switch to light mode

  features:
    - navigation.indexes
    - navigation.tracking
    - navigation.instant
    - navigation.expand
    - navigation.sections

markdown_extensions:
  - admonition
  - pymdownx.highlight:
      anchor_linenums: true
      line_spans: "code-line"
      pygments_lang_class: true
  - pymdownx.inlinehilite
  - pymdownx.snippets
  - pymdownx.superfences

# extra:
#   version:
#     provider: mike