interlinear-text-lib
v1.0.4
Published
When you want to display interlinear text like so:
Downloads
4
Readme
When you want to display interlinear text like so:
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":"מיכאל."}]