File "html2text.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor/soundasleep/html2text/html2text.php
File size: 306 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if (!defined('ABSPATH')) exit;
require_once(__DIR__ . "/src/Html2Text.php");
require_once(__DIR__ . "/src/Html2TextException.php");
function convert_html_to_text($html) {
 return Html2Text\Html2Text::convert($html);
}
function fix_newlines($text) {
 return Html2Text\Html2Text::fixNewlines($text);
}