Skip to content

Commit 5e65810

Browse files
committed
try again
1 parent d9b2eeb commit 5e65810

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
- name: Convert Notebooks to QMD
2323
run: |
2424
mkdir -p converted_chapters
25-
for notebook in notebooks/*.ipynb; do
25+
cd converted_chapters
26+
for notebook in ./notebooks/*.ipynb; do
2627
quarto convert "$notebook"
2728
done
2829

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 results"
31+
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines"
3232
]
3333
},
3434
{

0 commit comments

Comments
 (0)