0.1.1 • Published 2 years ago

i18next-decode-postprocessor v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

i18next-decode-postprocessor

Decode html entities in i18next translations.

Installation

npm install i18next-decode-postprocessor

Usage

Local

i18next.t('ça va bien. très bien.', {postProcess: 'decode'});
// 'ça va bien. très bien.'

Global

import i18next from 'i18next';
import decode from 'i18next-decode-postprocessor';

i18next.use(decode).init({
	postProcess: 'decode',
});

i18next.t('ça va bien. très bien.');
// 'ça va bien. très bien.'