1

I'm not sure whether this is a valid (per spec) url or not, but this url

http://www.bestbuy.com/site/olspage.jsp?skuId=9230708&st=samsung+lcd+32"&lp=1&type=product&cp=1&id=1218063831450 

Doesn't work in stackoverflow. It doesn't get made into a link when you view the post. Notice the quotation mark? That appears to be the problem.

Here is a test. This is the page it should link to.

3

2 Answers 2

4

It's that double-quote (") in the URL. The parser is expecting another one because it would be used as the TITLE part of the link.

It's not intuitive, but you'll have to encode that double-quote as:

%22 

So your above link would be like this:

http://example.com/site/olspage.jsp?skuId=9230708&st=samsung+lcd+32%22&lp=1&type=product&cp=1&id=1218063831450

1
  • 2
    That edit was obviously just an excuse to post that certain edit summary. Commented Sep 13, 2009 at 3:38
0

As of recently, when entering a link via the button (or Ctrl-L), the characters will automatically be escaped.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.