-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path_quarto.yml
More file actions
55 lines (51 loc) · 1.82 KB
/
_quarto.yml
File metadata and controls
55 lines (51 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
project:
type: book # Use book layout for left sidebar navigation
output-dir: docs # Render site output to docs/ for GitHub Pages
extensions:
- r-wasm/quarto-live # ← register the live extension
book:
site-url: https://how-to-learn-to-code.github.io/python-class/
sidebar:
tools:
- icon: github
href: https://github.com/How-to-Learn-to-Code
navbar:
foreground: "black"
background: "lightblue"
title: "How to Learn to Code"
collapse: true
search: true
pinned: true
right:
- icon: github
href: https://github.com/How-to-Learn-to-Code
aria-label: GitHub
sidebar:
search: true
border: true
style: "floating"
title: "How to Learn to Code – Python for Data Science"
chapters: # notebooks (ipynb) live inside lesson folders
- index.qmd
- Lesson_0_Introduction/Lesson_0_Student_Version.ipynb
- Lesson_1_Basics/Lesson_1_Student_Version.ipynb
- Lesson_2_Control_Structs/Lesson_2_Control_structs_student.ipynb
- Lesson_3_Abstraction_Functions/functions_student.ipynb
- Lesson_4_FileIO/Lesson_4_student.ipynb
- Lesson_5_Pandas_DataFrame/Lesson5_pandas_DataFrame_Student.ipynb
- Lesson_6_NumPy/Lesson_6_NumPy_Student_Version.ipynb
- Lesson_7_Plotting/plotting_student.ipynb
- Lesson_8a_Scikit_Learn/scikit_learn_student.ipynb
- Lesson_8b_Python_Ecosystem/Lesson_8b_Python_Ecosystem_teacher.ipynb
- Lesson_8c_scanpy/Lesson_8c_scanpy.ipynb
format:
live-html: # enables Pyodide interactivity
theme: cosmo
toc: true
number-sections: false
execute:
enabled: true # allow Quarto to process code cells
cache: true # still cache for speed, if you like
error: true # don’t fail the build if a cell errors
warning: false
message: false