diff options
| author | Zach DeCook <zachdecook@librem.one> | 2021-02-25 14:43:25 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2021-02-25 14:43:25 -0500 |
| commit | 5f5748475d1dc1789a457819b94d0c4c4e443cb7 (patch) | |
| tree | 75809084508f6829acee2ca361dac1975e0b5ce9 /usfm2gmi.py | |
| parent | df37f6904b8d3c74d1d72edd0828a9fcfc2a94dd (diff) | |
| download | usfm2gmi-5f5748475d1dc1789a457819b94d0c4c4e443cb7.tar.gz | |
b: add break, according to spec
Diffstat (limited to 'usfm2gmi.py')
| -rwxr-xr-x | usfm2gmi.py | 2 |
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 |
