From 3b63baad5c44fa1191c54ac73ec7dcf8aa94d6ff Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 24 Jan 2026 00:44:22 +0000 Subject: [PATCH] Fix pandoc option for disabling syntax highlighting Use --no-highlight instead of the non-existent --syntax-highlighting=none option, which was causing the GH Pages workflow to fail. --- scripts/generate_docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_docs.sh b/scripts/generate_docs.sh index ad6bc09c..eb9d4221 100755 --- a/scripts/generate_docs.sh +++ b/scripts/generate_docs.sh @@ -5,7 +5,7 @@ set -euo pipefail cd "${0%/*}/.." pandoc \ - --syntax-highlighting=none --toc \ + --no-highlight --toc \ --template ./docs/index.tmpl \ --output ./docs/index.html \ ./docs/index.md