Tooltipster can take a string as content. For example,
var myHTML = "Hello world";
instance.content(myHTML);
But the content cannot include HTML tags. You can't use this
var myHTML = "Hello <i>world</i>";
although this
var myHTML = "Hello <i>world</i>";
works.
What is the straightforward way to set a string of tagged HTML as the content of Toolstipster?