ParsedownTest::testExternalLinks PHP Method

    public function testExternalLinks()
    {
        $this->assertSame('<p><a href="http://www.cnn.com">cnn.com</a></p>', $this->parsedown->text('[cnn.com](http://www.cnn.com)'));
        $this->assertSame('<p><a href="https://www.google.com">google.com</a></p>', $this->parsedown->text('[google.com](https://www.google.com)'));
        $this->assertSame('<p><a href="https://github.com/getgrav/grav/issues/new?title=%5Badd-resource%5D%20New%20Plugin%2FTheme&body=Hello%20%2A%2AThere%2A%2A">complex url</a></p>', $this->parsedown->text('[complex url](https://github.com/getgrav/grav/issues/new?title=[add-resource]%20New%20Plugin/Theme&body=Hello%20**There**)'));
    }