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 need to turn off escaping:
i18n.t("key", { 'interpolation': {'escapeValue': false} })