forked from jamesturk/spatula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (70 loc) · 1.58 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
site_name: spatula
site_url: https://jamesturk.github.io/spatula/
site_author: James Turk
site_description: A modern Python library for writing maintainable web scrapers.
copyright: Copyright © 2021 James Turk
repo_url: https://github.com/jamesturk/spatula
repo_name: jamesturk/spatula
edit_uri: edit/main/docs/
theme:
logo: assets/white-spatula.svg
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
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- mkdocs-click
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: sphinx
show_source: false
show_root_full_path: false
show_root_toc_entry: false
watch:
- src/spatula
extra_css:
- assets/extra.css
nav:
- 'index.md'
- Usage:
- 'scraper-basics.md'
- 'data-models.md'
- 'advanced-techniques.md'
- Reference:
- 'cli.md'
- 'reference.md'
- About Spatula:
- 'philosophy.md'
- 'anatomy-of-a-scrape.md'
- 'contributing.md'
- 'code_of_conduct.md'
- 'changelog.md'