How can I translate HTML tag inside {{t}}

Hi, I got this on example.

"Read <a href='{url}'>more posts</a> by this author": "Lee <a href='{url}'>más artículos</a> de este autor"

I tried this way, but it is not working. Showing HTML tags.
Is it my mistake or ghost docs mistake?

I used like this

{{t "Don't have an account yet? <a href='{sitetitle}/signup/'>Sign up</a>" sitetitle=@site.url}}

Thanks

You should use 3 curly brackets if it contains HTML. {{{t }}}
https://handlebarsjs.com/guide/#html-escaping

1 Like