Is there a way to display Rich Text?

I’m trying to present the contents of a WixEvent in my own form. As far as I can see the only way to present Rich Text is linking it to a dynamic Dataset which doesn’t work for me.
As a clumsy workaround I’m using a rich text input box set to read-only. Only downside is that it has all of the rich text editing menu.
Any thoughts anyone?

$w.onReady(() => {
	$w('#text').html  = myRichTextString;
})