I\'m using i18next to power i18n for my weblog. It works great on text-only content, but when I try to translate content that includes HTML markup, it is displaying the raw
You can turn off the escaping during initialization globally:
i18n.init({ // ... interpolation: { escapeValue: false, } });