Skip to content

Commit 213ce35

Browse files
authored
Merge pull request #158 from afeld/escape-check
fix double-escaping
2 parents 0f4abea + d986dc8 commit 213ce35

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ jobs:
4646
# path: ./
4747
- name: Render for school
4848
run: ./extras/scripts/school_ci.sh ${{ matrix.school }}
49+
50+
# https://github.com/jupyter-book/jupyter-book/issues/2271
51+
# https://stackoverflow.com/a/1583282/358804
52+
- name: Fix double-escaping
53+
run: find _build/html -name '*.html' -print0 | xargs -0 sed -i 's/&/\&/g'
54+
4955
- name: Update commit
5056
run: |
5157
git add -A

0 commit comments

Comments
 (0)