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

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