ad3abff378dbd7ac1f241bc3db1bb5d7e340c44c
[GitHub/WoltLab/WCF.git] /
1 <?php
2
3 namespace Pelago\Emogrifier\HtmlProcessor;
4
5 /**
6 * Normalizes HTML:
7 * - add a document type (HTML5) if missing
8 * - disentangle incorrectly nested tags
9 * - add HEAD and BODY elements (if they are missing)
10 * - reformat the HTML
11 *
12 * @internal This class currently is a new technology preview, and its API is still in flux. Don't use it in production.
13 *
14 * @author Oliver Klee <github@oliverklee.de>
15 */
16 class HtmlNormalizer extends AbstractHtmlProcessor
17 {
18 }