about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xzachusfm.py11
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)