-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
75 lines (68 loc) · 1.88 KB
/
mkdocs.yml
File metadata and controls
75 lines (68 loc) · 1.88 KB
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
site_name: Playwright Web Storages
site_url: https://swimmwatch.github.io/playwright-localstorage/
site_author: Dmitry Vasiliev
site_description: >-
Extension for the Playwright package that allows access to the Web Storage API.
repo_url: https://github.com/swimmwatch/playwright-localstorage
repo_name: swimmwatch/playwright-localstorage
copyright: Copyright © 2023 - 2024 Dmitry Vasiliev
theme:
name: material
language: en
features:
- navigation.sections
- navigation.indexes
- navigation.footer
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: slate
primary: deep green
accent: green
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: default
primary: green
accent: deep green
toggle:
icon: material/lightbulb
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/swimmwatch/playwright-localstorage/
- icon: fontawesome/brands/python
link: https://pypi.org/project/playwright-localstorage/
nav:
- Home: index.md
- Guide:
- Installation: guide/install.md
- References:
- Base: references/playwright_localstorage.base.md
- Sync: references/playwright_localstorage.sync_.md
- Async: references/playwright_localstorage.async_.md
- License: license.md
plugins:
- search
- section-index
- mkdocstrings
- coverage
- macros:
include_dir: .
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
cache_safe: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences