Solved Wrapper display HTML for custom fields contains tabs in {$value} property

This topic has been solved
K

Kruzya

Guest
As said in title, when we use {$value} in Wrapper display HTML, it may contains tabs when output.
Simple example:
HTML:

Code:
<a href="https://t.me/{$value}" target="_blank">Open chat in Telegram</a>
&nbsp;
<a data-xf-init="copy-to-clipboard tooltip"
   class="is-hidden"
   title="Copy"
   data-copy-text="{$value}">
    <i class="far fa-clone" aria-hidden="true"></i>
</a>

Produces the next HTML (copied from browser after handling by JS-code):
HTML:

<a href="https://t.me/...

Read more

Continue reading...