Skip to content

Commit

Permalink
- added native render to navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski committed Oct 17, 2023
1 parent 1bfc8c4 commit 7522f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pagedeploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
jupyter nbconvert --to html --output-dir ./jupyters/ ./*.ipynb
- name: Customize Lecture pages with headers
run: |
cat <(echo "---"; echo "layout: default"; echo "title: Lecture 1"; echo "description: (coverig tasks 1-4)"; echo "---"; echo ""; echo "**| [Main Page](./index.html) | [Lecture 1](./Lecture1.html) |**") ./temp/Lecture1.md > Lecture1.md
cat <(echo "---"; echo "layout: default"; echo "title: Lecture 1"; echo "description: (coverig tasks 1-4)"; echo "---"; echo ""; echo "**| [Main Page](./index.html) | [Lecture 1](./Lecture1.html) ([native render](./jupyters/Lecture1.html)) |**") ./temp/Lecture1.md > Lecture1.md
sed -i '/# MatSE580 Guest Lecture 1/d' Lecture1.md
cat Lecture1.md
- name: Customize README
run: |
cp README.md temp/README.md
cat <(echo "**| [Main Page](./index.html) | [Lecture 1](./Lecture1.html) |**") ./temp/README.md > README.md
cat <(echo "**| [Main Page](./index.html) | [Lecture 1](./Lecture1.html) ([native render](./jupyters/Lecture1.html)) |**") ./temp/README.md > README.md
sed -i '/# MatSE580 Guest Lectures/d' README.md
cat README.md
# README-related tasks
Expand Down

0 comments on commit 7522f5f

Please sign in to comment.