Skip to content

Commit 0ddf436

Browse files
committed
convert location
1 parent 5e65810 commit 0ddf436

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/convert-to-qmd.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ jobs:
2222
- name: Convert Notebooks to QMD
2323
run: |
2424
mkdir -p converted_chapters
25-
cd converted_chapters
26-
for notebook in ./notebooks/*.ipynb; do
27-
quarto convert "$notebook"
25+
for notebook in notebooks/*.ipynb; do
26+
quarto convert "$notebook" -o "converted_chapters/$(basename "$notebook" .ipynb).qmd"
2827
done
2928
3029
- name: Checkout the weijie-chen.github.io repository

notebooks/Chapter 2 - Basic Matrix Algebra.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"outputs": [],
2929
"source": [
3030
"from IPython.core.interactiveshell import InteractiveShell\n",
31-
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines"
31+
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines."
3232
]
3333
},
3434
{

0 commit comments

Comments
 (0)