-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
113 lines (104 loc) · 3.17 KB
/
mkdocs.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
site_name: doing CLI for Azure DevOps
site_description: 'Speed up work with Azure Devops'
edit_uri: ''
copyright: 'Copyright © 2021'
repo_url: https://github.com/ing-bank/doing-cli
site_url: 'https://ing-bank.github.io/doing-cli/'
theme:
name: material
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: deep orange
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
accent: deep orange
toggle:
icon: material/toggle-switch
name: Switch to light mode
font: false
icon:
logo: octicons/terminal-16
repo: fontawesome/brands/github
favicon: assets/images/cli.png
features:
- navigation.tracking
- navigation.sections
- header.autohide
- navigation.tabs
- navigation.top
nav:
- index.md
- Getting started:
- get_started/install.md
- get_started/setup_auth.md
- get_started/setup_project.md
- How to:
- Workflow new issues: howto/workflow_new_item.md
- Workflow existing issues: howto/workflow_existing_item.md
- Workflow sprints: howto/workflow_sprints.md
- Workflow bulk edit issues: howto/workflow_bulk_edit_items.md
- Python scripting: howto/python_scripting.md
- Shell completion: howto/command_completion.md
- Connection problems: howto/connection_problems.md
- Commands:
- init: reference/manual/init.md
- list: reference/manual/list.md
- issue:
- create: reference/manual/issue_create.md
- close: reference/manual/issue_close.md
- list: reference/manual/issue_list.md
- pr:
- create: reference/manual/pr_create.md
- close: reference/manual/pr_close.md
- checkout: reference/manual/pr_checkout.md
- list: reference/manual/pr_list.md
- workon: reference/manual/workon.md
- open: reference/manual/open.md
- Config:
- Config file: config/config_file.md
- Using env vars: config/env_config.md
- Discussion:
- One Project Setup: discussion/oneproject_setup.md
- contributing.md
- discussion/upgrading.md
plugins:
- search
- macros:
module_name: src/doing/utils
markdown_extensions:
- abbr
- meta
- admonition
- pymdownx.keys
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- site/overrides/.icons
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
extra_javascript:
- 'https://unpkg.com/[email protected]/dist/mermaid.min.js'
- 'assets/js/termynal.js'
- 'assets/js/custom.js'
extra_css:
- 'assets/css/termynal.css'
- 'assets/css/custom.css'