-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmkdocs.yml
59 lines (53 loc) · 1.7 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: dude uncomplicated data extraction
site_description: A simple framework for writing web scrapers using Python decorators
repo_url: https://github.com/roniemartinez/dude
repo_name: roniemartinez/dude
copyright: Copyright © 2022 Ronie Martinez
use_directory_urls: false
theme:
name: material
features:
- navigation.expand
- navigation.indexes
- toc.follow
- content.code.annotate
icon:
repo: fontawesome/brands/github
markdown_extensions:
- toc:
permalink: True
- admonition
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- index.md
- features.md
- basic_usage.md
- Advanced Usage:
- advanced/index.md
- Setup: advanced/01_setup.md
- Navigate: advanced/02_navigate.md
- Grouping Results: advanced/03_grouping.md
- URL Pattern Matching: advanced/04_url_pattern_matching.md
- Prioritization: advanced/05_prioritization.md
- Custom Storage: advanced/06_custom_storage.md
- The Scraper Application Class: advanced/07_the_scraper_application_class.md
- Asynchronous Support: advanced/08_async.md
- BeautifulSoup4 Scraper: advanced/09_beautifulsoup4.md
- Parsel Scraper: advanced/10_parsel.md
- lxml Scraper: advanced/11_lxml.md
- Selenium Scraper: advanced/13_selenium.md
- Events: advanced/14_events.md
- "@start_requests": advanced/15_start_requests.md
- Helper Functions: advanced/16_helper_functions.md
- Supported Parser Backends:
- supported_parser_backends/index.md
- Migrating Your Web Scrapers to Dude: supported_parser_backends/migrating.md
- cli.md
- reference.md
extra_css:
- style.css
plugins:
- search
- mkdocstrings