this is an alternative of Tolgee ICU formatter if you are using React and want to pass JSX in params when using the "argument" notation (ex: "Hello {thing}").
npm install @artshell/tolgee-format-icu-jsx-param
First, create a Tolgee instance and run it.
import { FormatIcu } from "@artshell/tolgee-format-icu-jsx-param";
const tolgee = Tolgee()
.use(FormatIcu())
.init(...)
...
Now you can use ICU format in your translations. Example:
tolgee.t("test", "Hello {thing}", { thing: <strong>world</strong> });
// 'Hello <strong>world</strong>'
for more information refer to Tolgee ICU formatter