-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
116 lines (110 loc) · 3.12 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
114
115
116
site_name: harbor-cli
repo_url: https://github.com/unioslo/harbor-cli
repo_name: unioslo/harbor-cli
edit_uri: edit/main/docs/
theme:
name: "material"
palette:
scheme: slate
primary: blue
accent: orange
language: en
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.indexes
watch:
- harbor_cli
plugins:
- search
- autorefs
- mkdocs-simple-hooks:
hooks:
on_pre_build: docs.scripts.run:main
- literate-nav: # enhanced nav section (enables wildcards)
- macros:
on_error_fail: true
include_dir: "docs/data"
include_yaml:
- commandlist: "docs/data/commandlist.yaml"
- formats: "docs/data/formats.yaml"
- options: "docs/data/options.yaml"
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: numpy
members_order: source
docstring_section_style: table
heading_level: 1
show_source: true
show_if_no_docstring: true
show_signature_annotations: true
show_root_heading: true
show_category_heading: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- admonition
- footnotes
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- "Home":
- index.md
- "Configuration":
- configuration/introduction.md
- configuration/config-file.md
- configuration/auth.md
- configuration/formats.md
- "Usage":
- usage/basic-usage.md
- usage/options.md
- usage/repl.md
- usage/tui.md
- usage/terminology.md
# TODO: formats
- "Commands":
- "commands/*.md"
- "Reference":
- "reference/index.md"
- "reference/*.md"
- "reference/config.md"
- "reference/dirs.md"
- "reference/exceptions.md"
- "reference/format.md"
- "reference/logs.md"
- "reference/models.md"
- "reference/main.md"
- "reference/state.md"
- "reference/types.md"
- "Utils":
- "reference/utils/index.md"
- "reference/utils/args.md"
- "reference/utils/commands.md"
- "reference/utils/utils.md"
- "Harbor":
- "reference/harbor/index.md"
- "reference/harbor/artifact.md"
- "reference/harbor/common.md"
- "Output":
- "reference/output/index.md"
- "reference/output/console.md"
- "reference/output/prompts.md"
- "reference/output/render.md"
- "Formatting":
- "reference/output/formatting/index.md"
- "reference/output/formatting/bytes.md"
- "reference/output/formatting/path.md"
- "Tables":
- "reference/output/table/index.md"
- "reference/output/table/artifact.md"
- "reference/output/table/repository.md"
- "reference/output/table/system.md"
- contributing.md