Open
Description
Right now if we want to use the same string or variable for the regular description, facebook description and the twitter description we have to do this.
{
'hid': "description",
'property': 'description',
'content': this.short_description
},
{
'property': 'og:description',
'content': this.short_description
},
{
'property': 'twitter:description',
'content': this.short_description
}
Its the same for title, image any any other tags. Im sure there are times when you want different values for all three of these but would love to see some option to automatically set them all with the same thing?
Maybe theres already some way to do this that im not seeing?