Comment retourner html dans la fonction de texte d3?

Je veux être en mesure de retourner html à partir de la fonction de texte comme ceci:

textEnter.append("tspan")
          .attr("x", 0)
          .text(function(d,i) {
             return 'some text' + '<br/>' + d.someProp;
           })

Essayé d'utiliser &lt;br&gt;mais didnot travail. Comment puis-je y parvenir?

source d'informationauteur Isaac