In Swift 1, how do I add a custom meta tag? I tried this in ProductViewDetail.cshtml:
Pageview.Meta.AddTag("One", "The other");
But when the tags are then rendered in the master file using:
@Model.MetaTags
the new tag doesn't show up.
It seems to work in Swift 2?
Imar