-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
50 lines (44 loc) · 1.6 KB
/
mkdocs.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
# Project information
site_name: Python Web Scraping
site_description: Companion website to the Python Web Scraping workshop
site_author: Satya, Naveen and Tarun
site_url: https://monashdatafluency.github.io/python-web-scraping/
site_dir: docs
docs_dir: markdowns
# Repository
repo_name: python-web-scraping
repo_url: https://github.com/MonashDataFluency/python-web-scraping
edit_uri: ""
# Theme
theme: # refer to https://www.wheelodex.org/entry-points/mkdocs.themes/
name: material # refer to https://squidfunk.github.io/mkdocs-material/; others slate cyborg material
palette:
primary: 'light blue' # indigo
accent: 'light blue'
logo:
icon: 'school' # refer to https://material.io/resources/icons/
# Page tree
nav:
- Getting started: 'index.md'
- A (brief) Python refresher: 'section-0-brief-python-refresher.md'
- Introduction to Web scraping: 'section-1-intro-to-web-scraping.md'
- HTML based scraping: 'section-2-HTML-based-scraping.md'
- API based scraping: 'section-3-API-based-scraping.md'
- Wrangling and Analysis: 'section-4-wrangling-and-analysis.md'
- Legal and Ethical Considerations: 'section-5-legal-and-ethical-considerations.md'
# - Advanced topics: 'section-6-advanced-topics.md'
- References: 'section-7-references.md'
# - Sample: 'sample.md'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: true
- toc:
permalink: true
# Extra
extra:
social:
- type: 'github'
link: 'https://github.com/MonashDataFluency/python-web-scraping'