You appear to be a bot. Output may be restricted
Description
Renders the content of the BODY element of the normalized and processed HTML.
Usage
$string = AbstractHtmlProcessor::renderBodyContent();
Parameters
Returns
string
Source
File name: woocommerce/vendor/pelago/emogrifier/src/Emogrifier/HtmlProcessor/AbstractHtmlProcessor.php
Lines:
1 to 8 of 8
public function renderBodyContent() { $htmlWithPossibleErroneousClosingTags = $this->domDocument->saveHTML($this->getBodyElement()); $bodyNodeHtml = $this->removeSelfClosingTagsClosingTags($htmlWithPossibleErroneousClosingTags); return \preg_replace('%</?+body(?:\\s[^>]*+)?+>%', '', $bodyNodeHtml); }