Convert usfm bibles into gemtext (python library/utility)
header: add copright info
| -rwxr-xr-x | usfm2gmi.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usfm2gmi.py b/usfm2gmi.py index 2f0f376..fe188e7 100755 --- a/usfm2gmi.py +++ b/usfm2gmi.py @@ -1,4 +1,10 @@ #!/usr/bin/env python3 +"""Convert usfm line-by-line into gemtext""" +__author__ = "Zach DeCook" +__email__ = "zachdecook@librem.one" +__copyright__ = "Copyright (C) 2021 Zach DeCook" +__license__ = "AGPL" +__version__ = "3" import fileinput def printf(string): |