I saw this note under the binding expression documentation for Polymer.
You can’t insert HTML using expressions. To avoid XSS issues, the output of an expression is HTML escaped before being inserted as the value of the binding.
I need to display HTML formatted text from my database. My app contains rich text that is user authored content. The tags in the content are managed e.g. p, em, font size.
Its an important part of the use of polymer databinding in my app. How can I override this documented behavior? I also store alot of non-user authored content in my database for display purposes e.g. textual blocks providing user instructions on how to perform a task.