Convert usfm bibles into gemtext (python library/utility)
punctuation: add more to closing punct list
| -rwxr-xr-x | usfm2gmi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usfm2gmi.py b/usfm2gmi.py index d47546a..7d29e43 100755 --- a/usfm2gmi.py +++ b/usfm2gmi.py @@ -100,7 +100,7 @@ def convert(line): spl = word.split('|') out += spl[0] + ' ' #superscript(spl[1][8:-1]) + ' ' # Remove those extra spaces that sneak in. - elif word in [',', '.', ';', '”', ',”', ')']: + elif word in [',', '.', ';', '”', ',”', '.”', '?”', ')', ':', '!', '?']: if out[-1] == ' ': out = out[:-1] + word + ' ' else: |