diff --git a/bundles/docs/libraries/markdown.php b/bundles/docs/libraries/markdown.php index 59ef7191..6a234051 100755 --- a/bundles/docs/libraries/markdown.php +++ b/bundles/docs/libraries/markdown.php @@ -1445,6 +1445,7 @@ function doAutoLinks($text) { } function _doAutoLinks_url_callback($matches) { $url = $this->encodeAttribute($matches[1]); + $url = Laravel\URL::to($url); $link = "$url"; return $this->hashPart($link); }