Vdom output html instead of converted string

${item.doc.needAnswer == 'offer' && $h`
                <p class="from-bg">
                  <b>${app.f7.mod.helper.lng('offer')}</b>
                  <span class="flex-break"></span>
                  <span>${app.f7.mod.helper.nl2br(item.doc.messages[0].txt)}</span>
                </p>
              `}

the function helper.nl2br() replaces \n with
but this is then converted to a string instead of keeping the html tags. what do i have to do to prevent conversion?

Use special innerHTML attribute: