-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
117 lines (115 loc) · 3.78 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
117
site_name: cookie-doh
repo_url: https://github.com/microsoft/cookie-doh
edit_uri: edit/main/docs/
repo_name: cookie-doh
docs_dir: docs
theme:
name: material
logo: images/logo.png
favicon: images/favicon.ico
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.sections
- navigation.expand
- navigation.instant
- navigation.instant.prefetch
- navigation.path
- navigation.indexes
- navigation.sections
- navigation.top
- navigation.footer
- content.code.copy
- search.suggest
- content.action.edit
extra_css:
- css/extra.css
# removed because of codeql detection
# https://github.com/microsoft/cookie-doh/security/code-scanning/3
# https://github.com/microsoft/cookie-doh/security/code-scanning/4
#extra_javascript:
# - js/mathjax.js
# - js/tex-mml-chtml.js
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
show_inheritance_diagram: true
show_if_no_docstring: true
show_symbol_type_toc: true
show_symbol_type_heading: true
show_signature_annotations: true
show_submodules: true
show_source: true
group_by_category: false
show_category_heading: true
docstring_options:
ignore_init_summary: false
merge_init_into_class: true
separate_signature: true
- awesome-pages
- git-revision-date-localized:
enable_creation_date: true
# - mkdocs-video:
# is_video: true
# video_controls: true
# - git-committers:
# repository: microsoft/cookie-doh
# branch: main
markdown_extensions:
# Allows for nicely styled notes and warnings: !!! note
- admonition
# Allows for adding attributes to markdown content: !(some-image){: align=left }
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
- def_list # definition / description lists
- pymdownx.tasklist: # Allows us to make a Tasklist: [x] some checked thing
custom_checkbox: true
# removed because of codeql detection
# https://github.com/microsoft/cookie-doh/security/code-scanning/3
# https://github.com/microsoft/cookie-doh/security/code-scanning/4
# - pymdownx.arithmatex:
# generic: true
copyright: |
<div id="left_copyright"><span style="color: grey;">Made with <a href="https://squidfunk.github.io/mkdocs-material/">Material for MkDocs</a></div>
<div id="center_copyright"><a href="https://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a> | <a href="https://go.microsoft.com/fwlink/?linkid=2259814">Consumer Health Privacy</a> | <a href="https://www.microsoft.com/trademarks">Trademarks</a> | <a href="https://go.microsoft.com/fwlink/?LinkID=206977">Terms of use</a> | © 2024 Microsoft</div>
extra:
generator: false