-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
97 lines (97 loc) · 3.07 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
site_name: Deepworks Core Github Repository
site_description: The core repository that contains documentation, actions and templates for Deepworks github repositories.
site_author: Deepworks
copyright: Deepworks 2022-2024
repo_url: https://github.com/deepworks-net/github.toolkit
docs_dir: docs
site_dir: site
extra:
version: 1.1.0
extra_css:
- stylesheets/extra.css
plugins:
# Mono Repo must come before search!
- monorepo
- search
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
- macros
- tags
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
theme:
name: material
features:
- navigation.instant
- navigation.tracking
#- navigation.tabs
#- navigation.tabs.sticky
- navigation.indexes
- navigation.top
- content.tabs
- content.tabs.link
- content.code.copy
- search.suggest
- search.highlight
- search.share
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
'nav':
- 'Home':
- 'index.md'
- 'Getting Started': 'getting-started.md'
- 'Meta Level': 'meta-level.md'
- 'Release Process': 'release-process.md'
- 'Repository': 'repo/index.md'
- 'Actions':
- 'Overview': 'actions/index.md'
- 'Core':
- 'actions/core/index.md'
- 'Manage Release': 'actions/core/manage_release/index.md'
- 'Version Calculator': 'actions/core/version_calculator/index.md'
- 'Version Updater': 'actions/core/version_updater/index.md'
- 'Composite':
- 'actions/composite/index.md'
- 'Update Changelog': 'actions/composite/update_changelog/index.md'
- 'Workflows':
- 'Overview': 'workflows/index.md'
- 'Core':
- 'Version Calculator': 'workflows/core/version_calculator.md'
- 'Version Updater': 'workflows/core/version_updater.md'
- 'Composite':
- 'Create Release Tag': 'workflows/create-release-tag.md'
- 'Publish Github Release': 'workflows/release-drafter.md'
- 'Prepare Release': 'workflows/prepare-release.md'
- 'Update Changelog': 'workflows/update-changelog.md'
- 'MkDocs Publish': 'workflows/mkdocs-gh-pages.md'
- 'Tests':
- 'Overview': 'tests/index.md'
- 'Core':
- 'Version Calculator': 'tests/core/version_calculator.md'
- 'Version Updater': 'tests/core/version_updater.md'