public function testOnDocumentDoesNotLinkWithDoubleQuote() { $document = new Document(); $document->setPath('index.html'); $body = '<a href="https://google.com">"google.com"</a>'; $document->setBody($body); $event = new CarewEvent($document); $toc = new Toc(); $toc->onDocument($event); $this->assertSame($body, $document->getBody()); }