lnbits icon indicating copy to clipboard operation
lnbits copied to clipboard

Remove all `{% raw %}` usage

Open prusnak opened this issue 1 year ago • 0 comments

PR https://github.com/lnbits/lnbits/pull/2136 addresses some of {% raw %} usage, but there is still more ...

We should use replace

{% raw %}
<p>{{ foo.bar }}</p>
{% endraw %}

and

{% raw %}
{{ foo.bar }}
{% endraw %}

with

<p v-text="foo.bar"></p>

and

<span v-text="foo.bar"></span>

respectively

prusnak avatar Dec 24 '23 11:12 prusnak