File: mkdocs.yml

package info (click to toggle)
jacktrip 2.7.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,804 kB
  • sloc: cpp: 44,416; sh: 965; makefile: 152; ansic: 32; ruby: 20; python: 15
file content (46 lines) | stat: -rw-r--r-- 1,211 bytes parent folder | download
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
site_name: JackTrip
repo_url: https://github.com/jacktrip/jacktrip
edit_uri: edit/dev/docs/
nav:
  - Home: index.md
  - User Guide:
    - Installation: Install.md
    - Virtual Studio: VirtualStudio.md
    - Using custom JACK server name: CustomJackServerName.md
  - Developer Guide:
    - QMake Build:
      - Linux: Build/Linux.md
      - Mac OS: Build/Mac.md
      - Windows: Build/Windows.md
    - Meson Build: Build/Meson_build.md
    - Development Tools:
      - Formatting: DevTools/Formatting.md
      - Static Analysis: DevTools/StaticAnalysis.md
    - Network Protocol: Documentation/NetworkProtocol.md
    - Write Documentation: Documentation/MkDocs.md
  - About:
    - Contributors: About/Contributors.md
    - Resources: About/Resources.md
    - Changelog: About/CHANGELOG.md
    - License: About/License.md
plugins:
  - search
  - macros:
      include_yaml:
        - releases: docs/changelog.yml
theme:
  name: material
  logo: assets/jacktrip.svg
  palette:
    primary: black
    accent: red
  features:
    - navigation.tabs
markdown_extensions:
  - attr_list
  - pymdownx.snippets
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.superfences
  - pymdownx.details
  - admonition