-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_quarto.yml
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy path_quarto.yml
File metadata and controls
45 lines (45 loc) · 1.18 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
project:
type: website
output-dir: _site
website:
title: "Introduction to Web Scraping with Gazpacho"
navbar:
left:
- href: index.qmd
text: Home
- text: Tutorials
menu:
- href: 01-gazpacho-basics.qmd
text: "Getting Started with Gazpacho"
- href: 02-getting-data.qmd
text: "Making HTTP Requests"
- href: 03-parsing-soup.qmd
text: "Parsing HTML with Soup Objects"
- href: 04-strict-attributes.qmd
text: "Advanced Selection and Strict Mode"
- href: 05-pandas-integration.qmd
text: "Integration with Pandas"
right:
- icon: github
href: https://github.com/PovertyAction/research-data-science-training
sidebar:
style: docked
search: true
contents:
- section: "Episodes"
contents:
- 01-gazpacho-basics.qmd
- 02-getting-data.qmd
- 03-parsing-soup.qmd
- 04-strict-attributes.qmd
- 05-pandas-integration.qmd
format:
html:
theme: cosmo
toc: true
toc-depth: 3
code-copy: true
code-overflow: wrap
highlight-style: github
execute:
freeze: auto