S// Formatiert den transformierten Text für die Ausgabe function textgen_format_output($text) { if (empty($text)) { return ''; } // Zuerst die Zeilen in ein Array aufteilen $lines = explode("\n", $text); $formatted_output = ''; foreach ($lines as $line) { $line = trim($line); if (empty($line)) { continue; } // Tags erkennen und formatieren if (preg_match('/^\[H1\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } elseif (preg_match('/^\[INTRO\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } elseif (preg_match('/^\[H2\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } elseif (preg_match('/^\[H2-ABSATZ\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } elseif (preg_match('/^\[H3\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } elseif (preg_match('/^\[H3-ABSATZ\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } elseif (preg_match('/^\[HASHTAGS\](.*)/i', $line, $matches)) { $formatted_output .= '

' . trim($matches[1]) . '

'; } else { // Fallback für nicht erkannte Zeilen $formatted_output .= '

' . $line . '

'; } } return $formatted_output; } Oktober 2024 – Seite 117 – HundKatzekaufen.de

Monat: Oktober 2024