Expand description
This crate has been created in order to be a tool box for studying the greek new testament. The crate is provided AS-IS.
§Examples
use gnt_tools::core_text;
let s = "16 Εἶπεν δὲ παραβολὴν πρὸς αὐτοὺς λέγων·
ἀνθρώπου τινὸς πλουσίου εὐφόρησεν ἡ χώρα. 17
καὶ διελογίζετο ἐν ἑαυτῷ λέγων· τί ποιήσω, ὅτι
οὐκ ἔχω ποῦ συνάξω τοὺς καρπούς μου; ";
let s2 = "ειπενδεπαραβοληνπροϲαυτουϲλεγωνανθρωπουτ\
ινοϲπλουϲιουευφορηϲενηχωρακαιδιελογιζετοενεαυτω\
λεγωντιποιηϲωοτιουκεχωπουϲυναξωτουϲκαρπουϲμου";
assert_eq!(core_text(String::from(s)), String::from(s2));
Functions§
- The function gives the core text of a greek new testament critical edition.
It might be useful for comparing greek new testament critical editions by gettig their “core” differences/concordances.