fulls1z3 / ngx-meta

Dynamic page title & meta tags utility for Angular (w/server-side rendering)
MIT License
333 stars 47 forks source link

different property name according tag #181

Closed eduardmarcinov closed 4 years ago

eduardmarcinov commented 6 years ago

[ x] Bug report

If I set meta tag like this - setTag('fb:app_id', fbAppId); I got: <meta name="fb:app_id" content="fbAppId">

and if I set setTag('og:description', openGraph.description); I got: <meta property="og:description" content="">

Difference between these tags is name of property - in the first one is "name" and second one is "property". How can I set <meta property"fb:id" ... >? Is this behavior expected or is it bug?

Thank you for explanation