This question is an exact duplicate of:

The URL recognizer stops at the ' character, yet this is a valid character in URLs.

Example: http://en.wikipedia.org/wiki/Rice's_theorem

On a related note, wrapping the URL in <a href="..."> doesn't help either; somehow the sanitizing process filters out the URL it thinks is faulty:

<a href="http://en.wikipedia.org/wiki/Rice's_theorem">this is (not) a link</a>

Yields:

<p>this is (not) a link</p>

(Currently: this is (not) a link.)

share|improve this question
@Arjan: Thanks for your effort – Philip Apr 20 '11 at 8:06

marked as duplicate by Sha Wiz Dow Ard, hims056, Lucifer, yhw42, Hugo Dozois Jun 4 at 13:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Instead, wrap it in Markdown syntax:

[http://en.wikipedia.org/wiki/Rice's_theorem](http://en.wikipedia.org/wiki/Rice's_theorem)

Produces http://en.wikipedia.org/wiki/Rice's_theorem

share|improve this answer
...or make the editor do it for you: paste the URL, select it, hit Ctrl-L, paste it again. Of course, in this very example a nice text rather than the bare URL looks better anyhow! Like: "Wikipedia explains for Rice's theorem...". So: type that nice title, select it, hit Ctrl-L, paste the URL. – Arjan Apr 20 '11 at 10:21

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged