Skip to content

Commit 4eef18f

Browse files
fix toc
1 parent e42fe7d commit 4eef18f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,5 @@ venv
6666
.conda_envs/
6767

6868
# Make file markers
69-
.install*
69+
.install*
70+
_toc.yml

src/eo_datascience/render_sfinx_toc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import yaml
33

44
def render_toc():
5-
p = Path("notebooks").glob('*.ipynb')
5+
p = Path("chapters").glob('*.qmd')
66
files = [x.with_suffix('') for x in p if x.is_file()]
77
files.sort()
88
titles = [x.stem.split("_")[-1].title() for x in files]

0 commit comments

Comments
 (0)