Created
November 9, 2023 11:14
-
-
Save anosatsuk124/6011d3a9bfa20503858ce91a0621e133 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
filename="$(basename "$1")" | |
temp="$(mktemp -d)/$filename" | |
pandoc -i "$1" -o "$temp".1.html | |
cat "$temp".1.html | perl -pe 's/<\/?ruby>//g' | perl -pe 's/<\/?rb>//g' | perl -pe 's/<rt>.*<\/rt>//g' | perl -pe 's/<svg.+$//g' > "$temp".2.html | |
pandoc "$temp".2.html --pdf-engine=lualatex -V documentclass=bxjsarticle -V classoption=pandoc -V pagestyle=empty -o "$filename".pdf | |
rm -rf "$temp.*" | |
echo "Done: $filename.pdf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment