scripts for my gemini capsule
Diffstat (limited to 'biblestudy.py')
| -rwxr-xr-x | biblestudy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/biblestudy.py b/biblestudy.py index d1061b1..b3c8a54 100755 --- a/biblestudy.py +++ b/biblestudy.py @@ -8,6 +8,7 @@ from lsv import printlsv from oeb import printoeb from webp import printwebp from bsb import printbsb +from tcgnt import printtcgnt def main(qs): if not qs: @@ -25,6 +26,8 @@ def main(qs): printoeb([passages[0]], False, False) printwebp([passages[0]], False, False) printwebp([passages[0]], False, False, printStrongs=True) + printtcgnt([passages[0]], False, False) + printtcgnt([passages[0]], False, False, printStrongs=True) |