ci: migrate GitHub actions to Gitea actions
Deploy CV Site (andreknie.de) / deploy (push) Canceled after 0s

This commit is contained in:
2026-07-22 15:42:06 +02:00
parent e1cf49b0a2
commit b46de6dc7d
649 changed files with 127224 additions and 2786 deletions
+11
View File
@@ -0,0 +1,11 @@
const text = `KI Quiz Teil 2 - jetzt wird's schwerer "
"
"Letzte Woche haben wir die 5 Einstiegsfragen gesehen:
"Viel Vergnügen!`;
// Strip trailing quotes
let cleaned = text.replace(/ "\n/g, '\n');
// Strip quotes on their own line
cleaned = cleaned.replace(/\n"\n/g, '\n');
// Strip leading quotes
cleaned = cleaned.replace(/\n"/g, '\n');
console.log(cleaned);