Skip to content

mvllow/i18next-decode-postprocessor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.'

About

Decode html entities in i18next translations.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published