From 739609af8d633d29e172522487b42c8206cb584e Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 8 Jul 2021 21:31:10 -0400 Subject: paragraphs: Ignore no-break tag --- usfm2gmi.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'usfm2gmi.py') diff --git a/usfm2gmi.py b/usfm2gmi.py index 65a0f95..b8c54f6 100755 --- a/usfm2gmi.py +++ b/usfm2gmi.py @@ -107,6 +107,8 @@ def convert(line): # Words which appear in the glossary. elif word in ['\\w','\\w*', '\\+w', '\\+w*']: continue + elif word in ['\\nb']: + continue elif '|strong="' in word: spl = word.split('|') out += spl[0] + ' ' #superscript(spl[1][8:-1]) + ' ' -- cgit 1.4.1