about summary refs log tree commit diff
path: root/usfm2gmi.py
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2021-02-25 14:43:25 -0500
committerZach DeCook <zachdecook@librem.one>2021-02-25 14:43:25 -0500
commit5f5748475d1dc1789a457819b94d0c4c4e443cb7 (patch)
tree75809084508f6829acee2ca361dac1975e0b5ce9 /usfm2gmi.py
parentdf37f6904b8d3c74d1d72edd0828a9fcfc2a94dd (diff)
downloadusfm2gmi-5f5748475d1dc1789a457819b94d0c4c4e443cb7.tar.gz
b: add break, according to spec
Diffstat (limited to 'usfm2gmi.py')
-rwxr-xr-xusfm2gmi.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/usfm2gmi.py b/usfm2gmi.py
index 78800ee..7cc2f24 100755
--- a/usfm2gmi.py
+++ b/usfm2gmi.py
@@ -12,6 +12,8 @@ def convert(line):
     return out
   elif split[0] == '\\s':
     return '\n## ' + ' '.join(split[1:])
+  elif split[0] == '\\b':
+    return '\n'
   elif split[0] == '\\rem':
     return out
   skip = 0