mkdocs.yml 1.68 KB
Newer Older
1
site_name: Unified Ticketing Docs
Lukas Wiest's avatar
Lukas Wiest committed
2

3
4
docs_dir: docs
edit_uri: 'blob/master/docs/'
5
repo_name: 'Code on Transfer Portal'
Lukas Wiest's avatar
Lukas Wiest committed
6
repo_url: 'https://transfer.hft-stuttgart.de/gitlab/9Lukas5/unified-ticketing'
Lukas Wiest's avatar
Lukas Wiest committed
7

8
copyright: 'Copyright © 2020 University for Applied Sciences Stuttgart'
Lukas Wiest's avatar
Lukas Wiest committed
9

Lukas Wiest's avatar
Lukas Wiest committed
10
11
12
13
14
use_directory_urls: false

nav:
  - Home:
    - Index: 'index.md'
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    - Changelog: 'unified-ticketing/changelog-softlink.md'
    - Usage: 'unified-ticketing/usage.md'
    - Contributing: 'unified-ticketing/contributing.md'
    - License: 'unified-ticketing/license-softlink.md'
  - API:
    - Index: 'api/index.md'
    - Core:
      - Logging: 'api/core/logging.md'
      - Ticket: 'api/core/ticket.md'
      - Ticketsystem: 'api/core/ticket-system.md'
    - Exceptions: 'api/exceptions.md'
    - Systems:
        - GitLab:
          - Ticket: 'api/systems/gitlab/ticket.md'
          - Ticketsystem: 'api/systems/gitlab/ticket-system.md'
  - Developers Guide:
31
    - Index: 'developers-guide/index.md'
32
    - Styleguide: 'developers-guide/styleguide.md'
33
    - Workflow: 'developers-guide/workflow.md'
Lukas Wiest's avatar
Lukas Wiest committed
34
35

theme:
36
37
38
39
40
  features:
    - navigation.tabs
  icon:
    logo: material/book-open
  language: 'en'
Lukas Wiest's avatar
Lukas Wiest committed
41
42
  name: 'material'
  palette:
43
44
    accent: 'blue'
    primary: 'red'
Lukas Wiest's avatar
Lukas Wiest committed
45
46

markdown_extensions:
47
  - admonition
48
  - attr_list
49
  - footnotes
50
  - markdown_del_ins
51
52
  - plantuml_markdown:
      format: svg
53
      server: http://plantuml.com/plantuml
54
  - pymdownx.details
55
56
57
58
59
  - pymdownx.emoji:
      emoji_index: !!python/name:materialx.emoji.twemoji
      emoji_generator: !!python/name:materialx.emoji.to_svg
  - pymdownx.highlight:
      linenums: true
60
  - pymdownx.superfences
61
62
63
64
65
  - pymdownx.tabbed
  - pymdownx.tasklist
  - toc:
      permalink: True
  - tables