96d0c238d6
While Pandoc was generating something sane, the output of CodeHilite puts silly amount of extra text and makes the HTML output completely unreadable. In the end, it still looks like prism.js is a nice and solid solution, even if it's JS. I'll explore other options, but so far, it's either back to Pandoc, or sticking with Prism.
8 lines
174 B
Bash
Executable file
8 lines
174 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
source ./.venv/bin/activate
|
|
python3 nasg.py "$@"
|
|
rsync -avuhH --delete-after ../www/ liveserver:/web/petermolnar.net/web/
|