forked from gocolly/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
64 lines (53 loc) · 1.15 KB
/
config.toml
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
baseURL = "http://go-colly.org/"
languageCode = "en-us"
title = "Colly"
theme = "colly"
DefaultContentLanguage = "en"
SectionPagesMenu = "main"
enableRobotsTXT = false
pygmentsCodeFences = true
#pygmentsOptions = "linenos=true"
[params]
title = "Colly"
description = "Scraping Framework for Golang"
github = "https://github.com/gocolly/colly"
[[menu.main]]
name = "Docs"
url = "/docs/"
weight = 10
identifier = "docs"
[[menu.main]]
name = "Articles"
url = "/articles/"
weight = 15
identifier = "articles"
[[menu.main]]
name = "Services"
url = "/services/"
weight = 21
identifier = "services"
[[menu.main]]
name = "Datasets"
url = "/datasets/"
weight = 30
identifier = "datasets"
[[menu.docs]]
name = "Introduction"
url = "/docs/introduction/"
weight = 10
identifier = "introduction"
[[menu.docs]]
name = "Best Practices"
url = "/docs/best_practices/"
weight = 15
identifier = "best_practices"
[[menu.docs]]
name = "Examples"
url = "/docs/examples/"
weight = 20
identifier = "examples"
[[menu.docs]]
name = "Real life examples"
url = "/docs/real_examples/"
weight = 20
identifier = "real_examples"