File "HtmlNormalizer.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/HtmlNormalizer.php
File size: 322 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace Pelago\Emogrifier\HtmlProcessor;

/**
 * Normalizes HTML:
 * - add a document type (HTML5) if missing
 * - disentangle incorrectly nested tags
 * - add HEAD and BODY elements (if they are missing)
 * - reformat the HTML
 */
class HtmlNormalizer extends AbstractHtmlProcessor
{
}