League\HTMLToMarkdown\HtmlConverter::createDOMDocument PHP Method

createDOMDocument() private method

private createDOMDocument ( string $html ) : DOMDocument
$html string
return DOMDocument
    private function createDOMDocument($html)
    {
        $document = new \DOMDocument();
        if ($this->getConfig()->getOption('suppress_errors')) {
            // Suppress conversion errors (from http://bit.ly/pCCRSX)
            libxml_use_internal_errors(true);
        }
        // Hack to load utf-8 HTML (from http://bit.ly/pVDyCt)
        $document->loadHTML('<?xml encoding="UTF-8">' . $html);
        $document->encoding = 'UTF-8';
        if ($this->getConfig()->getOption('suppress_errors')) {
            libxml_clear_errors();
        }
        return $document;
    }