diff options
| author | Zach DeCook <zachdecook@librem.one> | 2021-02-25 07:39:26 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2021-02-25 07:39:26 -0500 |
| commit | a26dfe5edcb02eaf801d0e629eaee8a49a764e6e (patch) | |
| tree | 84b7a9a1aef17f2cba9bc498eb872e7f35138348 /zachusfm.py | |
| download | usfm2gmi-a26dfe5edcb02eaf801d0e629eaee8a49a764e6e.tar.gz | |
make entry script
Diffstat (limited to 'zachusfm.py')
| -rwxr-xr-x | zachusfm.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/zachusfm.py b/zachusfm.py new file mode 100755 index 0000000..b3f942e --- /dev/null +++ b/zachusfm.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 +import sys + +def main(argv): + """Read usfm from stdin, output to stdout in specified format + ./zachusfm md <in.usfm >out.md + """ + print('') + +if __name__ == '__main__': + main(sys.argv) |
