blaze-meta
blaze-meta copied to clipboard
Can't set property with same name. Visible only last one.
For example I need :
<meta property="og:image" content="http://example.com/rock.jpg" />
<meta property="og:image" content="http://example.com/rock2.jpg" />
So when I try:
Meta.set([
{
name: "property",
property: "og:image",
content: "http://example.com/rock.jpg"
},
{
name: "property",
property: "og:image",
content: "http://example.com/rock2.jpg"
},
])
The result is:
<meta property="og:image" content="http://example.com/rock2.jpg" />
Can we fix it? Or it's not easy thing? Seems like second property with the same name overwrite previous one.
We keep key:value pairs for every key. We need to change our design, PRs welcomed :)