I think there must be something I'm missing.

  1. the facebook like button requires this as the doctype: < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
  2. The facebook like button is inserted using an iframe
  3. Iframes are invalid with this doctype

Can someone set me straight here?

...Mike

link|improve this question
where did you read that facebook like button requires that DOCTYPE? – dragonjet May 31 '11 at 1:21
@dragonjet The like button alone does not need it, but you need the mentioned doctype if you want to include OpenGraph meta data on your page. See stackoverflow.com/questions/2834091/opengraph-w3c-valid – MicE Jun 9 '11 at 2:32
feedback

1 Answer

You don't need that DOCTYPE, only if you want it to validate at W3.org otherwise you should be fine and the OG tags should still work. You can use the url linter to check this:

http://developers.facebook.com/tools/lint/

I've done this many times just using

<!DOCTYPE html>

I would have just added a comment for this to extend on what MicE said but I don't have enough REP yet!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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