1.0.13 • Published 6 years ago

i18next-markdown-jsx-plugin v1.0.13

Weekly downloads
178
License
MIT
Repository
github
Last release
6 years ago

Introduction

npm version Build Status

This is a i18next postProcessor converting markdown language to JSX components.

Getting Started

Source can be loaded via npm.

$ npm install i18next-markdown-jsx-plugin

Wiring up:

import i18next from 'i18next';
import markdownJsx from 'i18next-markdown-jsx-plugin';

i18next
  .use(markdownJsx)
  .init(i18nextOptions);

Usage sample

// given loaded resources
// translation: {
//   key: '# This is an _example_',
// }

i18next.t('key', { postProcess: 'markdown-jsx' });

Will return <h1>This is an <em>example</em></h1>

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.3

6 years ago