-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathmkdocs.yml
66 lines (59 loc) · 1.81 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
site_name: Ruia
site_url: https://docs.python-ruia.org/
site_description: An async web scraping micro-framework based on asyncio.
site_author: howie.hu
repo_url: https://github.com/howie6879/ruia
repo_name: 'howie6879/ruia'
copyright: Copyright © 2018 - 2022 <a href="https://github.com/howie6879/ruia">howie.hu</a>.
theme:
name: 'material'
logo: './images/logo.png'
favicon: './images/favicon.ico'
features:
- content.code.annotate
- navigation.expand
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
font:
code: Roboto Mono
text: Roboto
use_directory_urls: false
nav:
- Introduction: index.md
- Quick Start: ./en/quickstart.md
- Tutorials:
- 1. Overview: ./en/tutorials/overview.md
- 2. Installation: ./en/tutorials/installation.md
- 3. Define Data Items: ./en/tutorials/item.md
- 4. Spider Control: ./en/tutorials/spider.md
- 5. Request & Response: ./en/tutorials/request.md
- 6. Customize Middleware: ./en/tutorials/middleware.md
- 7. Write a Plugins: ./en/tutorials/plugins.md
- API Guide:
- Field: ./en/apis/field.md
- Item: ./en/apis/item.md
- Spider: ./en/apis/spider.md
- Request: ./en/apis/request.md
- Response: ./en/apis/response.md
- Middleware: ./en/apis/middleware.md
- Topics:
- Write Spiders like Scrapy: ./en/topics/write_spiders_like_scrapy.md
- Item Data Cleaning: ./en/topics/item_data_cleaning.md
- Examples:
- Full featured project: ./en/examples/project.md
- Parent Class For Your Spider: ./en/examples/spider_parent_class.md
plugins:
- search
markdown_extensions:
- toc:
permalink: []
- admonition
- def_list
- codehilite