forked from fasrc/AC290R_R-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
65 lines (52 loc) · 1.23 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
baseurl = "https://hbs-rcs.github.io/R_Intro-gapminder/"
canonifyURLs = false
languageCode = "en-us"
title = "R for the Social Sciences"
theme = "hugo-material-docs"
googleAnalytics = ""
disqusShortname = ""
ignoreFiles = ["\\.Rmd$", "_files$", "_cache$"]
[permalinks]
post = "/:slug/"
[params]
description = "A website built through Hugo and blogdown."
# options for highlight.js (version, additional languages, and theme)
highlightjsVersion = "9.9.0"
highlightjsLang = ["r"]
highlightjsTheme = "github"
logo = "images/logo.png"
permalink = " "
# menu items
[[menu.main]]
name = "Introduction"
url = ""
weight = 1
[[menu.main]]
name = "Motivation"
url = "motivation/"
weight = 2
[[menu.main]]
name = "RStudio IDE"
url = "rstudio-ide/"
weight = 10
[[menu.main]]
name = "Data Read/Write"
url = "data-io/"
weight = 20
[[menu.main]]
name = "Data Transformation"
url = "data-transformation/"
weight = 30
[[menu.main]]
name = "Data Visualization"
url = "data-visualization/"
weight = 40
[[menu.main]]
name = "Base R"
url = "base-r/"
weight = 50
[blackfriday]
smartypants = true
fractions = true
smartDashes = true
plainIDAnchors = true