diff --git a/.github/workflows/convert-to-qmd.yml b/.github/workflows/convert-to-qmd.yml index 2be93ee..92bcd3c 100644 --- a/.github/workflows/convert-to-qmd.yml +++ b/.github/workflows/convert-to-qmd.yml @@ -22,7 +22,8 @@ jobs: - name: Convert Notebooks to QMD run: | mkdir -p converted_chapters - for notebook in notebooks/*.ipynb; do + cd converted_chapters + for notebook in ./notebooks/*.ipynb; do quarto convert "$notebook" done diff --git a/notebooks/Chapter 2 - Basic Matrix Algebra.ipynb b/notebooks/Chapter 2 - Basic Matrix Algebra.ipynb index 21eaee2..bf202cd 100644 --- a/notebooks/Chapter 2 - Basic Matrix Algebra.ipynb +++ b/notebooks/Chapter 2 - Basic Matrix Algebra.ipynb @@ -28,7 +28,7 @@ "outputs": [], "source": [ "from IPython.core.interactiveshell import InteractiveShell\n", - "InteractiveShell.ast_node_interactivity = \"all\" # display multiple results" + "InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines" ] }, {