Skip to content

Commit

Permalink
Merge branch 'fix-strongs'
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-klein committed Dec 2, 2023
2 parents 2f184c2 + 355d21c commit 5cf0676
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/node_sword_cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ void test_unlock_key(ModuleInstaller& module_installer, ModuleStore& module_stor

void get_strongs_entry(TextProcessor& text_processor)
{
StrongsEntry* entry = text_processor.getStrongsEntry("G2766");
//StrongsEntry* entry = text_processor.getStrongsEntry("G2443");
//StrongsEntry* entry = text_processor.getStrongsEntry("G3762");
StrongsEntry* entry = text_processor.getStrongsEntry("G4572");
if (entry != 0) {
cout << entry->key << endl;
cout << entry->transcription << endl;
Expand Down Expand Up @@ -215,7 +217,7 @@ int main(int argc, char** argv)
/*sword_facade.installModule("StrongsHebrew");
sword_facade.installModule("StrongsGreek");*/

//get_strongs_entry(textProcessor);
get_strongs_entry(textProcessor);

//get_module_text(textProcessor);

Expand All @@ -232,7 +234,7 @@ int main(int argc, char** argv)
cout << searchResults[i].reference << endl;
}*/

get_updated_repo_modules(repoInterface);
//get_updated_repo_modules(repoInterface);

/*get_book_headers(textProcessor);*/

Expand Down

0 comments on commit 5cf0676

Please sign in to comment.