mkdocs.yml 682 Bytes
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
site_name: Unified Ticketing Doku

repo_name: 'Unified Ticketing Java Bibliothek'
repo_url: 'http://#'
edit_uri: ''
docs_dir: docs

use_directory_urls: false

nav:
  - Home:
    - Index: 'index.md'

theme:
  name: 'material'
  palette:
    primary: 'white'
    accent: 'teal'
  language: 'en'
  feature:
    tabs: true
  logo:
    icon: library_books

markdown_extensions:
- admonition
- codehilite:
    linenums: true
- toc:
    permalink: True
- footnotes
- tables
- plantuml_markdown:
    server: http://plantuml.com/plantuml
    format: svg
- pymdownx.emoji:
    emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.tasklist
- pymdownx.details
- pymdownx.superfences