Skip to content

Commit

Permalink
Add TAHOT/TAGNT import
Browse files Browse the repository at this point in the history
This import is very basic, and to complete it depends on
<STEPBible/STEPBible-Data#54> to be applied (or
the files are downloaded from
<https://github.com/STEPBible/STEPBible-Data/tree/f4b831f620b8362ec175af893bcfef492d0ce544>).
  • Loading branch information
schierlm committed Mar 27, 2024
1 parent 634e4f2 commit dfd9f39
Show file tree
Hide file tree
Showing 3 changed files with 399 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ In addition, the following other formats are supported, with varying accuracy:
- **Original Languages with tagging**: import only
- [MorphGNT](https://github.com/morphgnt/sblgnt)
- [OpenScriptures Hebrew Bible (OSHB) MorphBB](https://github.com/openscriptures/morphhb)
- [Translators Amalgamated Hebrew Old Testament / Greek New Testament](https://github.com/schierlm/STEPBible-Data) (basic features only)
- **[MyBible.Zone](https://mybible.zone/index-eng.php)** ([more bibles](http://www.ph4.org/b4_index.php)): import and export (in a special SQLite edition)
- **[Bible Analyzer](http://www.bibleanalyzer.com/)**: export only (text export for
bibles and dictionaries, SQLite export for bibles)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public Collection<Module<ImportFormat>> getImportFormats() {
result.add(new Module<ImportFormat>("StrongDictionary", "Importer for creating a Strong's dictionary from public domain resources.", StrongDictionary.HELP_TEXT, StrongDictionary.class));
result.add(new Module<ImportFormat>("MorphGNT", "Importer for MorphGNT", MorphGNT.HELP_TEXT, MorphGNT.class));
result.add(new Module<ImportFormat>("OSHB", "Importer for OpenScriptures Hebrew Bible MorphBB", OSHB.HELP_TEXT, OSHB.class));
result.add(new Module<ImportFormat>("TranslatorsAmalgamated", "Importer for Translators Amalgamated Hebrew OT / Greek NT", TranslatorsAmalgamated.HELP_TEXT, TranslatorsAmalgamated.class));
return result;
}

Expand Down

0 comments on commit dfd9f39

Please sign in to comment.