vote up 0 vote down star

Should I encode quotes (such as " and ' -> &rdquo; and &rsquo;) in my HTML body (e.g. convert <p>Matt's Stuff</p> to <p>Matt&rsquo;s Stuff</p>)? I was under the impression I should, but a co-worker said that it was no big deal. I'm dubious but I can't find anything that says it is verboten. Am I mistaken? Is it a best-practice to encode? Or is it simply useless?

flag

Can you quote your quotes so it's clearer what you are asking? I think you want to differentiate between " and &amp;rsquo but it hasn't come through – peter.murray.rust Nov 2 at 22:50
Peter, edited a bit. Thanks to Greg as well – Matt Rogish Nov 3 at 0:52

4 Answers

vote up 1 vote down check

Encoding quotation marks (") is in practice only needed if the're inside an attribute, however for the HTML code to be correct (passing HTML validation), you should always encode quotation marks as &quot;.

Apostrophes (') don't need escaping in HTML. In XHTML they should be encoded as &apos;.

link|flag
1  
&apos; is OK — but only as long as you don't plan to serve the document as text/html (which most people do as they want Internet Explorer to render the pages). w3.org/TR/xhtml-media-types/#C_16 – David Dorward Nov 2 at 22:54
@David: Good point. – Guffa Nov 2 at 23:33
vote up 1 vote down

If you want your markup to be parsable as XML, you'll want to encode the following:

& => &amp;
< => &lt;
> => &gt;
" => &quot;
' => &apos;

Definitely do this in attributes whether you're trying to make your code XML compliant or not.

link|flag
vote up 1 vote down

No, you only need to use character references for quotes (single or double) if you want to use them inside an attribute value declaration that uses the same quotes for the value declaration:

title="The sign says &quot;Matt's Stuff&quot;"
title='The sign says "Matt&#39;s Stuff"'

Both title values are The sign says "Matt's Stuff".

link|flag
vote up 3 vote down

Typicaly such isn't necessary unless you're placing such values into a tag's attribute (or other places where having quote marks would throw off parsing). In regular body text un-encoded will work fine.

<img src="..." alt="A &quot;quote mark&quot; in an alt attribute" />
link|flag
It works, but it's not valid HTML... – Guffa Nov 2 at 23:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.