-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_pkgdown.yml
58 lines (49 loc) · 1.29 KB
/
_pkgdown.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
url: https://bryanwhiting.github.io/generalconference
# home:
# strip_header: true
template:
params:
bootswatch: cerulean
navbar:
type: default
left:
- text: Intro
href: articles/introduction.html
- text: Articles
menu:
- text: How to Scrape
- text: Examples of How to Scrape
href: articles/how-to-scrape.html
- text: How to Add a New Session
href: articles/new-sessions.html
- text: Case Studies
- text: 'Case Study: Example Analysis'
href: articles/example-analysis.html
- text: "Development"
href: CONTRIBUTING.html
- text: Reference
href: reference/index.html
- text: News
href: news/index.html
reference:
- title: Datasets
desc: >
General conference datasets. `data("genconf")`
- contents:
- "genconf"
- title: Scrape
desc: >
Scrape general conference talks urls and contents. Any function with
`scrape` as a prefix will execute an rvest::read_html() call (e.g.,
visit the web page).
- contents:
- starts_with("scrape_")
- title: Utilities
desc: >
`extract_*()` funcitons will pull html content out of an rvest::read_html()
document.
`parse_*()` will manipulate strings, etc. and don't require a read_html()
document.
- contents:
- starts_with("extract")
- starts_with("parse")