-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathmkdocs.yml
119 lines (111 loc) · 3.15 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
118
119
site_name: Pydoll
repo_url: https://github.com/autoscrape-labs/pydoll
repo_name: autoscrape-labs/pydoll
# Configuração da navegação
nav:
- Pydoll: index.md
- Features: features.md
- Deep Dive:
- Overview: deep-dive/index.md
- Chrome DevTools Protocol: deep-dive/cdp.md
- The Connection Layer: deep-dive/connection-layer.md
- The Browser Domain: deep-dive/browser-domain.md
- The Page Domain: deep-dive/page-domain.md
- The Find Elements Mixin: deep-dive/find-elements-mixin.md
- The WebElement Domain: deep-dive/webelement-domain.md
- The Event System: deep-dive/event-system.md
- Network Capabilities: deep-dive/network-capabilities.md
theme:
name: material
font:
text: Roboto
code: Roboto Mono
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Dark Mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: indigo
toggle:
icon: material/toggle-switch
name: Light Mode
icon:
repo: fontawesome/brands/github
logo: fontawesome/solid/bolt
favicon: fontawesome/solid/bolt
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.indexes
- navigation.expand
- navigation.path
- navigation.top
- toc.follow
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
extensions:
- griffe_typingdoc
show_root_heading: true
show_if_no_docstring: true
preload_modules:
- pydoll
- pydoll.browser
- pydoll.browser.chrome
- pydoll.browser.options
- pydoll.constants
- pydoll.exceptions
- pydoll.utils
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters:
- '!^_'
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
extra_css:
- stylesheets/termynal.css
- stylesheets/extra.css
extra_javascript:
- scripts/termynal.js
- scripts/extra.js
- https://unpkg.com/mermaid@10.0.0/dist/mermaid.min.js
markdown_extensions:
- pymdownx.critic
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.keys
- footnotes
- admonition
- markdown.extensions.attr_list
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- md_in_html