Vincular conteúdo contendo tags html

Como posso exibir conteúdo contendo tags html, como<br> dentro de um elemento polímero como:

<polymer-element name="my-element">
  <template>
    {{mylongtext}}
  </template>
<script ...></script>
</polymer-element>
@CustomTag("my-element")
class MyElement extends PolymerElement {
  @observable string mylongtext = "bla bla <br> bla bla <strong> bla </strong>";
}

Atualmente, essas tags são mostradas como texto.

questionAnswers(2)

yourAnswerToTheQuestion