-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
mkdocs.yml
59 lines (56 loc) · 1.26 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
site_name: scrapelib
site_url: https://jamesturk.github.io/scrapelib/
site_author: James Turk
site_description: A library for making requests to unreliable sites.
copyright: Copyright © 2021 James Turk
repo_url: https://github.com/jamesturk/scrapelib
repo_name: jamesturk/scrapelib
edit_uri: edit/main/docs/
theme:
name: material
palette:
- scheme: default
primary: teal
accent: teal
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: teal
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
#- navigation.tabs
- navigation.sections
- navigation.top
- content.tabs.link
icon:
repo: fontawesome/brands/github
markdown_extensions:
- admonition
- def_list
- pymdownx.highlight
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: restructured-text
rendering:
show_source: false
show_root_full_path: false
show_root_toc_entry: false
watch:
- scrapelib
extra_css:
- assets/extra.css
nav:
- 'index.md'
- 'reference.md'
- 'scrapeshell.md'
- 'changelog.md'