mkdocs.yml 1.14 KB
Newer Older
Lukas Wiest's avatar
Lukas Wiest committed
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
site_name: Dockerized Testing Toolkit

docs_dir: docs
edit_uri: 'blob/master/docs/'
repo_name: 'Code on Transfer Portal'
repo_url: 'https://transfer.hft-stuttgart.de/gitlab/dtt/documentation'

copyright: 'Copyright © 2020 University for Applied Sciences Stuttgart'

use_directory_urls: false

nav:
  - Home:
    - Index: 'index.md'
    - Changelog: 'changelog.md'
    - License: 'license.md'
  - Usage: 'usage.md'
  - Testrunner:
    - Index: 'testrunner/index.md'
  - Contribute:
    - Index: 'contribute/index.md'
theme:
  features:
    - navigation.tabs
  icon:
    logo: material/book-open
  language: 'en'
  name: 'material'
  palette:
    accent: 'blue'
    primary: 'red'

markdown_extensions:
  - admonition
  - attr_list
  - footnotes
  - markdown_del_ins
  - plantuml_markdown:
      format: svg
      server: http://plantuml.com/plantuml
  - pymdownx.details
  - pymdownx.emoji:
      emoji_index: !!python/name:materialx.emoji.twemoji
      emoji_generator: !!python/name:materialx.emoji.to_svg
  - pymdownx.highlight:
      linenums: true
  - pymdownx.superfences
  - pymdownx.tabbed
  - pymdownx.tasklist
  - toc:
      permalink: True
  - tables