-
Notifications
You must be signed in to change notification settings - Fork 58
/
mkdocs.yml
52 lines (48 loc) · 1.41 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
site_name: Parsera
site_description: Web-scraping without actually writing a scraper
site_url: https://docs.parsera.org/
theme:
name: material
logo: parsera_open_logo_v2.png
favicon: icon.ico
palette:
- media: "(prefers-color-scheme: light)"
primary: amber
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: amber
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
repo_name: raznem/parsera
repo_url: https://github.com/raznem/parsera
nav:
- Home: index.md
- Getting started: getting-started.md
- Features:
- Custom browser: features/custom-browser.md
- Custom cookies: features/custom-cookies.md
- Custom playwright: features/custom-playwright.md
- Custom models: features/custom-models.md
- Proxy: features/proxy.md
- Scrolling: features/scrolling.md
- Extractors: features/extractors.md
- Docker: features/docker.md
- API:
- Getting started: api/getting-started.md
- Proxy: api/proxy.md
- Cookies: api/cookies.md
- Precision mode: api/precision-mode.md
- Contributing: contributing.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences