Browse Source

use url::to

Taylor Otwell 13 years ago
parent
commit
21530751a5
1 changed files with 1 additions and 0 deletions
  1. 1 0
      bundles/docs/libraries/markdown.php

+ 1 - 0
bundles/docs/libraries/markdown.php

@@ -1445,6 +1445,7 @@ class Markdown_Parser {
 	}
 	function _doAutoLinks_url_callback($matches) {
 		$url = $this->encodeAttribute($matches[1]);
+		$url = Laravel\URL::to($url);
 		$link = "<a href=\"$url\">$url</a>";
 		return $this->hashPart($link);
 	}