Output HTML attribute name with HTL
If I want to output the attribute name via HTL, how do I go about doing this?
For example I want to be able to specify the meta tag as either <meta name=.. or <meta property=....
When I try this...
<meta ${metadata.metaTypeName}="${metadata.metaTypeNameValue}" content="${metadata.metaContentValue}" />
It renders in the HTML source as...
<meta ${metadata.metaTypeName}="metaTypeNameValue1" content="contentValue1"/>
The second two properties render fine, but the first one isn't getting evaluated. Any thoughts?

