From 5fe88f611f9a6f6de5b53abe1ddfd5e03e802259 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Wed, 29 Apr 2026 13:03:20 -0400 Subject: [PATCH] fix: Try to fix plausible script injection --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 60bdc941..3022d6f1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -52,7 +52,7 @@ jobs: - name: Inject Plausible into examples run: | find docs/static/examples -name "index.html" | while read f; do - sed -i 's|||' "$f" + sed -i 's###' "$f" done - name: Build docs