How to style text within locize?
You may be trying to do some basic stylization: bold, italics, underline, etc... Ideally, you also want to add links within a string as well (i.e. a html tag)?
<Trans i18nKey="welcomeUser">
Hello <strong>{{name}}</strong>. <Link to="/inbox">See my profile</Link>
</Trans>
// JSON -> "welcomeUser": "Hello <strong>{{name}}</strong>. <1>See my profile</1>"
<Trans i18nKey="multiline">
Some newlines <br/> would be <br/> fine
</Trans>
// JSON -> "multiline": "Some newlines <br/> would be <br/> fine"<p merge>
all inside will be used as on segment, even if having other
<a>elements inside</a>
</p>
// key = all inside will be used as on segment, even if having other
<a>elements inside</a>Last updated