fix(PDF): install texlive-latex-extra to get fvextra to enable line wrapping in code blocks (#398)

This commit is contained in:
Max Heller 2024-03-16 20:45:11 -04:00 committed by GitHub
parent edae79a67b
commit 3dd157b9d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,7 @@ runs:
- name: Install mdbook-pandoc and related dependencies
run: |
sudo apt-get update
sudo apt-get install -y texlive texlive-luatex texlive-lang-cjk librsvg2-bin fonts-noto
sudo apt-get install -y texlive texlive-latex-extra texlive-luatex texlive-lang-cjk librsvg2-bin fonts-noto
curl -LsSf https://github.com/jgm/pandoc/releases/download/3.1.12.2/pandoc-3.1.12.2-linux-amd64.tar.gz | tar zxf -
echo "$PWD/pandoc-3.1.12.2/bin" >> $GITHUB_PATH
shell: bash