From a594d37cf162f6cd69f60c7c19f339839f00dc0e Mon Sep 17 00:00:00 2001 From: elpatron Date: Fri, 1 Aug 2025 14:37:47 +0200 Subject: [PATCH] Fix markdown linter errors --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b7ec8d1..0147c67 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ Alle Datumsfunktionen stehen auch als REST-API zur Verfügung. Die API akzeptier ``` **Mit curl:** + ```bash curl -X POST http://localhost:5000/api/tage_werktage \ -H "Content-Type: application/json" \ @@ -190,6 +191,7 @@ curl -X POST http://localhost:5000/api/tage_werktage \ ``` **Antwort:** + ```json { "result": 7 } ``` @@ -205,6 +207,7 @@ curl -X POST http://localhost:5000/api/tage_werktage \ ``` **Mit curl:** + ```bash curl -X POST http://localhost:5000/api/wochentag \ -H "Content-Type: application/json" \ @@ -212,6 +215,7 @@ curl -X POST http://localhost:5000/api/wochentag \ ``` **Antwort:** + ```json { "result": "Montag" } ``` @@ -225,6 +229,7 @@ curl -X POST http://localhost:5000/api/wochentag \ ``` **Mit curl:** + ```bash curl -X POST http://localhost:5000/api/kw_berechnen \ -H "Content-Type: application/json" \ @@ -232,6 +237,7 @@ curl -X POST http://localhost:5000/api/kw_berechnen \ ``` **Antwort:** + ```json { "result": "KW 24 (2024)", "kw": 24, "jahr": 2024 } ``` @@ -245,6 +251,7 @@ curl -X POST http://localhost:5000/api/kw_berechnen \ ``` **Mit curl:** + ```bash curl -X POST http://localhost:5000/api/kw_datum \ -H "Content-Type: application/json" \ @@ -252,6 +259,7 @@ curl -X POST http://localhost:5000/api/kw_datum \ ``` **Antwort:** + ```json { "result": "10.06.2024 bis 16.06.2024", @@ -275,6 +283,7 @@ curl -X POST http://localhost:5000/api/kw_datum \ ``` **Mit curl:** + ```bash curl -X POST http://localhost:5000/api/plusminus \ -H "Content-Type: application/json" \ @@ -282,6 +291,7 @@ curl -X POST http://localhost:5000/api/plusminus \ ``` **Antwort:** + ```json { "result": "2024-06-15" } ``` @@ -296,11 +306,13 @@ curl -X POST http://localhost:5000/api/plusminus \ **GET** `/api/stats` **Mit curl:** + ```bash curl http://localhost:5000/api/stats ``` **Antwort:** + ```json { "pageviews": 42, @@ -314,11 +326,13 @@ curl http://localhost:5000/api/stats **GET** `/api/monitor` **Mit curl:** + ```bash curl http://localhost:5000/api/monitor ``` **Antwort:** + ```json { "status": "ok", @@ -413,7 +427,7 @@ Es werden keine IP-Adressen oder sonstigen persönlichen Daten gespeichert, ledi - *Fokus-Indikatoren:* Deutliche visuelle Hervorhebung des Fokus für alle Bedienelemente. - *Farbkontraste:* Hohe Kontraste für Texte, Buttons und Ergebnisboxen, geprüft nach WCAG-Richtlinien. - *Status- und Fehlermeldungen:* Ergebnisse und Fehler werden mit `aria-live` für Screenreader zugänglich gemacht. -- **Sprachausgabe:** Alle Ergebnisse können über 🔊-Buttons vorgelesen werden (Web Speech API, deutsche Sprache). +- *Sprachausgabe:* Alle Ergebnisse können über 🔊-Buttons vorgelesen werden (Web Speech API, deutsche Sprache). - *Mobile Optimierung:* Zusätzliche Meta-Tags für bessere Bedienbarkeit auf mobilen Geräten und Unterstützung von Screenreadern. - *SEO:* Das Thema Barrierefreiheit ist in den Meta-Tags für Suchmaschinen sichtbar.