-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
100 lines (87 loc) · 1.99 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
site_name: inline-snapshot
site_url: https://15r10nk.github.io/inline-snapshot/
repo_url: https://github.com/15r10nk/inline-snapshot/
edit_uri: edit/main/docs
theme:
name: material
custom_dir: docs/theme
features:
- toc.follow
- content.code.annotate
palette:
- media: (prefers-color-scheme)
# Palette toggle for light mode
- scheme: default
media: '(prefers-color-scheme: light)'
primary: teal
# Palette toggle for dark mode
- scheme: slate
media: '(prefers-color-scheme: dark)'
primary: teal
validation:
links:
absolute_links: relative_to_docs
watch:
- CONTRIBUTING.md
- CHANGELOG.md
- README.md
- src/inline_snapshot
nav:
- Introduction: index.md
- Core:
- x == snapshot(): eq_snapshot.md
- x <= snapshot(): cmp_snapshot.md
- x in snapshot(): in_snapshot.md
- snapshot()[key]: getitem_snapshot.md
- outsource(data): outsource.md
- '@customize_repr': customize_repr.md
- types: types.md
- Extensions:
- first-party (extra): extra.md
- third-party: third_party.md
- pytest integration: pytest.md
- Categories: categories.md
- Configuration: configuration.md
- Code generation: code_generation.md
- Testing: testing.md
- Limitations: limitations.md
- Contributing: contributing.md
- Changelog: changelog.md
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- mkdocstrings:
handlers:
python:
options:
show_symbol_type_heading: true
show_symbol_type_toc: true
- social
- search
- markdown-exec:
ansi: required
- replace-url
extra:
social:
- icon: fontawesome/brands/x-twitter
link: https://x.com/15r10nk
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@15r10nk
version:
provider: mike
default:
- latest
- development