-
Notifications
You must be signed in to change notification settings - Fork 31
/
config.toml
124 lines (99 loc) · 2.03 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
baseurl = "/"
languageCode = "pt-br"
title = "Curso-R"
theme = "hugo-material-docs"
metadataformat = "yaml"
canonifyurls = true
relativeurls = true
# Enable Google Analytics by entering your tracking id
googleAnalytics = "UA-87272102-1"
pluralizeListTitles = false
[params]
# General information
author = "Curso-R"
description = "Materiais para cursos de R"
copyright = "Disponível sobre Licença MIT"
# Repository
provider = "GitHub"
repo_url = "https://github.com/curso-r/material"
version = ""
logo = "logo-curso-r.png"
favicon = ""
permalink = "%>%"
# Custom assets
custom_css = []
custom_js = []
# Syntax highlighting theme
highlight_css = ""
[params.palette]
primary = "red"
accent = "teal"
[params.font]
text = "Ubuntu"
code = "Ubuntu Mono"
[social]
twitter = "curso_r"
github = "curso-r"
facebook = "cursodeR"
email = "[email protected]"
[[menu.main]]
name = "Instalação"
url = "instalacao/"
weight = 05
[[menu.main]]
name = "R básico"
url = "rbase/"
weight = 10
[[menu.main]]
name = "Pipe"
url = "pipe/"
weight = 15
[[menu.main]]
name = "Importação"
url = "import/"
weight = 20
[[menu.main]]
name = "Manipulação"
url = "manip/"
weight = 25
[[menu.main]]
name = "Visualizações"
url = "ggplot/"
weight = 30
[[menu.main]]
name = "Strings"
url = "stringr/"
weight = 35
[[menu.main]]
name = "Datas"
url = "lubridate/"
weight = 40
[[menu.main]]
name = "Fatores"
url = "forcats/"
weight = 45
[[menu.main]]
name = "Programação Funcional"
url = "purrr/"
weight = 50
[[menu.main]]
name = "Modelagem"
url = "modelos/"
weight = 55
[[menu.main]]
name = "Shiny"
url = "shiny/"
weight = 60
[[menu.main]]
name = "APIs"
url = "api/"
weight = 65
[[menu.main]]
name = "Web Scraping"
url = "scrape/"
weight = 70
[blackfriday]
smartypants = true
fractions = true
smartDashes = true
plainIDAnchors = true