Skip to content

Commit

Permalink
convert location
Browse files Browse the repository at this point in the history
  • Loading branch information
weijie-chen committed Aug 15, 2024
1 parent 5e65810 commit 0ddf436
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/convert-to-qmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ jobs:
- name: Convert Notebooks to QMD
run: |
mkdir -p converted_chapters
cd converted_chapters
for notebook in ./notebooks/*.ipynb; do
quarto convert "$notebook"
for notebook in notebooks/*.ipynb; do
quarto convert "$notebook" -o "converted_chapters/$(basename "$notebook" .ipynb).qmd"
done
- name: Checkout the weijie-chen.github.io repository
Expand Down
2 changes: 1 addition & 1 deletion notebooks/Chapter 2 - Basic Matrix Algebra.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"outputs": [],
"source": [
"from IPython.core.interactiveshell import InteractiveShell\n",
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines"
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines."
]
},
{
Expand Down

0 comments on commit 0ddf436

Please sign in to comment.