diff --git a/broker.ts b/broker.ts index 353864b..9e14446 100644 --- a/broker.ts +++ b/broker.ts @@ -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; } \ No newline at end of file