Can anyone tell me how you add additional XML namespaces to an HTML 5 document?
I'm trying to create an HTML 5 version of the following
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
Is it simply a case of dropping the xhtml namespace:
<html xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
Thanks.