From 4df60cd75b6f86a5333cfb8a3c2d8ba0c61c2615 Mon Sep 17 00:00:00 2001 From: Greg Bowler Date: Thu, 15 Aug 2019 10:40:43 +0100 Subject: [PATCH] Don't format output on page render (#216) --- src/Document.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Document.php b/src/Document.php index 3d650ee3..8c4cf636 100644 --- a/src/Document.php +++ b/src/Document.php @@ -63,7 +63,6 @@ protected function getRootDocument():DOMDocument { } public function __toString() { - $this->formatOutput = true; return $this->saveHTML(); }