Closed RomkeVdMeulen closed 8 years ago
Unfortunately, we can't change this. The interpolation binding mechanism sets textContent
. The only way to bind html is to use innerhtml.bind. We don't want to make this any easier because of security concerns.
If I have a ValueConverter that produces HTML, like:
and I use it like so:
then the
<br/>
elements are escaped. Of course I can dobut it'd be nice if I can configure this specific ValueConverter to not have its output escaped, say with a decorator. What do you think?