Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I will be using Open Graph Meta on my site for sharing with Facebook. I am a bit confused though. For the og tags to work it must have the following: xmlns:og="http://ogp.me/ns#" Correct?

So it comes down to two questions:

  1. Must I have the xmlns?
  2. Will it work properly if using HTML5 doctype?
share|improve this question

1 Answer

up vote 2 down vote accepted

You don't have to use this xmlns syntax. You can use HTML5's prefix:

<head prefix='og: http://ogp.me/ns#'>

Anyway, this is really just a short hand instead of having the whole namespace in each property.

eg:

<head prefix='og: http://ogp.me/ns#'>
    <title>Dom Perignon 1993</title>
    <meta property='og:site_name' content='Wine Site' />
    ...

is semantically the same as

<head>
    <title>Dom Perignon 1993</title>
    <meta property='http://ogp.me/ns#site_name' content='Wine Site' />
    ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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