This commit is contained in:
parent
4a654d0b94
commit
56c75c2f2e
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in a new issue