-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmint.json
More file actions
109 lines (109 loc) · 2.37 KB
/
mint.json
File metadata and controls
109 lines (109 loc) · 2.37 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema": "https://mintlify.com/schema.json",
"name": "Reader",
"logo": {
"dark": "/images/logo-dark.png",
"light": "/images/logo-light.png",
"height": 120
},
"favicon": "/images/favicon.ico",
"colors": {
"primary": "#0D9373",
"light": "#07C983",
"dark": "#0D9373",
"anchors": {
"from": "#0D9373",
"to": "#07C983"
}
},
"topbarLinks": [
{
"name": "GitHub",
"url": "https://github.com/vakra-dev/reader"
}
],
"topbarCtaButton": {
"name": "Get Started",
"url": "https://reader.dev"
},
"tabs": [
{
"name": "Home",
"url": "home"
},
{
"name": "Documentation",
"url": "documentation"
},
{
"name": "API Reference",
"url": "api-reference"
}
],
"anchors": [
{
"name": "GitHub",
"icon": "github",
"url": "https://github.com/vakra-dev/reader"
},
{
"name": "npm",
"icon": "npm",
"url": "https://www.npmjs.com/package/@vakra-dev/reader"
}
],
"navigation": [
{
"group": "Home",
"pages": ["home/introduction", "home/quickstart", "home/examples"]
},
{
"group": "Documentation",
"pages": ["documentation/overview"]
},
{
"group": "Concepts",
"pages": [
"documentation/concepts/scraping",
"documentation/concepts/crawling",
"documentation/concepts/content-extraction",
"documentation/concepts/browser-pool"
]
},
{
"group": "Guides",
"pages": [
"documentation/guides/basic-scraping",
"documentation/guides/batch-scraping",
"documentation/guides/website-crawling",
"documentation/guides/proxy-configuration",
"documentation/guides/cli-usage",
"documentation/guides/deployment"
]
},
{
"group": "API Reference",
"pages": ["api-reference/overview"]
},
{
"group": "Classes",
"pages": ["api-reference/reader-client"]
},
{
"group": "Functions",
"pages": ["api-reference/scrape", "api-reference/crawl"]
},
{
"group": "Types",
"pages": [
"api-reference/scrape-options",
"api-reference/scrape-result",
"api-reference/crawl-options",
"api-reference/crawl-result"
]
}
],
"footerSocials": {
"github": "https://github.com/vakra-dev/reader"
}
}