I\'m new to Polymer and while testing data-binding, I discover that I have to encapsulate double-mustache expressions within HTML tags (for example {{var}}<
According to the docs :
The binding annotation must currently span the entire content of the tag.
This means you currently have to wrap your bindings in a tag as you did in this example:
This is <b>{{owner}}</b>'s name-tag element.
I expect in the future this will be changed so that you don't have to wrap bindings in a tag.