For the popular Open Graph protocol, namespaces are held in a prefix attribute on <head>, like so:
<head prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#">
Is it possible to add headAttributes alongside the existing htmlAttributes and titleAttributes props?
For folks stumbling across this: a temporary workaround is to put the prefix attribute on <html>.
<head> is preferred, but <html prefix="..."> works in a pinch.
Most helpful comment
For folks stumbling across this: a temporary workaround is to put the
prefixattribute on<html>.<head>is preferred, but<html prefix="...">works in a pinch.