morph_gnt 0.1.2

Provides queryable text of the Greek New Testament (SBLGNT), including glosses and parsing data.
Documentation
1
2
3
4
5
6
7
use crate::word::Word;
use bible_ref::bible_ref::BibleRef;

pub struct Verse {
    pub bible_ref: BibleRef,
    pub words: Vec<Word>
}