From 4ff06eca17efe57b304c59d3269a53432b1df996 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Sun, 26 Apr 2026 21:16:37 +0200 Subject: [PATCH] fix(docs): add language tag to bare code fences in testing.md pymdownx.highlight requires language specification on code fences. Bare ``` causes NoneType error during MkDocs build. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs-src/development/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-src/development/testing.md b/docs-src/development/testing.md index fcfa8f1..e242b3b 100644 --- a/docs-src/development/testing.md +++ b/docs-src/development/testing.md @@ -19,7 +19,7 @@ **Speicherort:** Im gleichen Verzeichnis wie der Code -``` +```text internal/ ├── services/ │ ├── auth_service.go @@ -93,7 +93,7 @@ func TestValidateEmail(t *testing.T) { **Speicherort:** `/backend/tests/` -``` +```text backend/ ├── consent_client.py ├── gdpr_api.py