mkdocs.yml 1.27 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
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'
16
17
18
19
    - License:
      - Overview: 'licenses/index.md'
      - CC0: 'licenses/cc0.md'
      - GPLv3: 'licenses/gplv3.md'
Lukas Wiest's avatar
Lukas Wiest committed
20
  - Usage: 'usage.md'
Lukas Wiest's avatar
Lukas Wiest committed
21
  - Moodle-Plugin: 'moodle-plugin/index.md'
Lukas Wiest's avatar
Lukas Wiest committed
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
  - 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