-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
105 lines (95 loc) · 2.58 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
site_name: GoLink Documentation
theme:
name: material
palette:
- scheme: custom
features:
- content.code.copy
- navigation.sections
- navigation.top
- content.code.annotate
- header.autohide
- navigation.instant
icon:
repo: fontawesome/brands/github-alt
# favicon: images/favicon.png
# logo: images/logo.png
font: false
repo_url: https://github.com/azrod/golink
repo_name: azrod/golink
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocs-video
- render_swagger
nav:
- Overview: "index.md"
- Golink Server:
- Deployment:
- "Getting Start": "deployment/getting-start.md"
- "Docker": "deployment/docker.md"
- "Docker Compose": "deployment/docker-compose.md"
- "Kubernetes": "deployment/kubernetes.md"
- "Manual": "deployment/manual.md"
- Configuration: "configuration/index.md"
- Storage Backend:
- "Getting Start": "storage/index.md"
- "Local Filesystem": "storage/local.md"
- "Redis": "storage/redis.md"
- glctl (CLI):
- "Concept": "glctl/concept.md"
- "Install": "glctl/install.md"
- "Usage": "glctl/usage.md"
- "Commands":
- "namespace": "glctl/commands/namespace.md"
- "link": "glctl/commands/link.md"
- "go": "glctl/commands/go.md"
- "version": "glctl/commands/version.md"
- "update": "glctl/commands/update.md"
- "Completions":
- "Bash": "glctl/completions/bash.md"
- "Zsh": "glctl/completions/zsh.md"
- "Fish": "glctl/completions/fish.md"
- "PowerShell": "glctl/completions/powershell.md"
# - glweb (Web UI):
# - "Getting Start": "glweb/index.md"
- glapi (API):
- "Getting Start": "api/index.md"
- "Swagger": "api/api.md"
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/azrod/golink
copyright: Copyright © 2023 - 2024 azrod