forked from vektra/mockery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
85 lines (78 loc) · 1.9 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
site_name: mockery
site_url: https://vektra.github.io/mockery/
site_description: >-
Create mock implementations of your Golang interfaces using mockery and testify.
repo_name: vektra/mockery
repo_url: https://github.com/vektra/mockery
theme:
name: material
custom_dir: overrides
icon:
logo: fontawesome/brands/golang
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: light blue
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.annotate
- content.code.copy
- content.action.edit
- content.action.view
- navigation.indexes
- navigation.sections
- navigation.tracking
- toc.follow
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
auto_title: true
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Configuration: configuration.md
- Running: running.md
- Examples: examples.md
- Features: features.md
- Notes:
- FAQ: notes.md
- Changelog: changelog.md
- Migrating to Packages: migrating_to_packages.md
extra_css:
- stylesheets/extra.css
extra:
version:
provider: mike
plugins:
- mike:
alias_type: symlink
canonical_version: latest
- glightbox
- social
- search
- open-in-new-tab