The following syntax:
<template repeat="{{items}}">
However, the following syntax ("named scope"):
<template repeat="{{item in items}}">
I assume this is because the expression "item in items" is only parsed by Polymer Expressions, but it took me some time to investigate.
I have few questions:
2. I there a way to make this expression parse outside of a <polymer-element>? I see a big benefit from using named scopes in my templates but I prefer not to wrap my whole app in a <polymer-element>
Thanks for your great work!