I am still struggling to find a simple solution to render dynamic html.
This question has probably been asked million times but I can't find a simple answer so far.
My current solution implies using querySelector and innerHtml but I can't call it "simple".
So considering a template such as:
<template>
<template bind repeat="{{item in itemList}}">
{{item}}
</template>
</template>
And considering itemList as ["<div>A</div>", "<div>B</div>"] (value initialized once ready)
What would be the best way to render the items?
I really wish Polymer would provide a triple brackets "{{{item}}}" to avoid encoding the html.
Thanks,
Xavier