Currently, the SeoPart only allows adding <meta> tags with a name and content attribute. However, certain scenarios require different attributes, such as property.
The expected format right now is to enter a content=value pair on each line, e.g.:
og:title=My Title
og:description=My description
Which translates to:
<meta name="og:title" content="My Title" />
<meta name="og:description" content="My description" />
The SeoPart needs to be updated such that the user can add the entire tag so that she can use any attributes she needs. This opens up the possibility of including other HTML tags in the <head> element, but I think that's better than to prevent it by asking the user to only provide key=value pairs.
Currently, the
SeoPartonly allows adding<meta>tags with anameandcontentattribute. However, certain scenarios require different attributes, such asproperty.The expected format right now is to enter a content=value pair on each line, e.g.:
Which translates to:
The SeoPart needs to be updated such that the user can add the entire tag so that she can use any attributes she needs. This opens up the possibility of including other HTML tags in the
<head>element, but I think that's better than to prevent it by asking the user to only provide key=value pairs.