Outputting HTML in CS

Does anyone have an quick pointers to outputting a text multi-line formatted variable (as an example) in a CS component such as a presenter ?

I’d like it to be rendered as actual HTML rather than the textual equivalent of HTML.

I’m being a bit cheeky just to see if I can cut my investigation time :grin:

The basic idea is to have a help renderer which draws record data as a basis for its display and this ideally would be text multi-line formatted for ease / convenience.

Use v-html in the main.htm of a presenter.

Example, set the value of presentThis to the editable value of the Text, multi-line formatted. Then in the main.htm use:

<div v-html="presentThis" />

Morning Neil,

Thats excellent - just what I was looking for … thanks for the quick tip.

Haydn