create html part 2
All checks were successful
ci / build (push) Successful in 1m4s

This commit is contained in:
Christopher Hase 2025-03-26 15:34:52 +01:00
parent 4a654d0b94
commit 56c75c2f2e

View file

@ -68,7 +68,8 @@ function html(input: string): string {
const lines = input.split("\n");
// Bearbeite jede Zeile (z.B. trimme Leerzeichen und füge einen Prefix hinzu)
const processedLines = lines.map(line => `> ${line.trim()}`);
//const processedLines = lines.map(line => `> ${line.trim()}`);
const processedLines = lines.map(line => processLine(line));
// Füge die Zeilen wieder zu einem String zusammen
return processedLines.join("\n");
@ -77,6 +78,6 @@ function html(input: string): string {
//TODO: process every line...
function processLine(input: string): string {
return "";
return input;
}