1.0.4 • Published 7 years ago

interlinear-text-lib v1.0.4

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

When you want to display interlinear text like so:

Image of Interlinear Text

Quickstart:

import InterlinearSentence from 'interlinear-text-lib';

<InterlinearSentence sentence={[{"en":"Hello","iw":"שלום"},{"en":"World!","iw":"עולם!"},{"en":"My name","iw":"שם שלי"},{"en":"is","iw":"הוא"},{"en":"Michael.","iw":"מיכאל."}]} />

English sentence: Hello World! My name is Michael. Hebrew sentence: שלום עולם! שם שלי הוא מיכאל.

Here's how you use the component

<InterlinearSentence sentence={wordObjectArray} />

Here's an example of the JSON needed to build the sentence in the image:

[{"en":"Hello","iw":"שלום"},{"en":"World!","iw":"עולם!"},{"en":"My name","iw":"שם שלי"},{"en":"is","iw":"הוא"},{"en":"Michael.","iw":"מיכאל."}]