From e864999c34061abf4c8ba6bc393deeb88afd0d97 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 25 Feb 2021 15:26:09 -0500 Subject: q and m: blockquote and resume paragraph --- usfm2gmi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'usfm2gmi.py') diff --git a/usfm2gmi.py b/usfm2gmi.py index 4edf6b8..806b94f 100755 --- a/usfm2gmi.py +++ b/usfm2gmi.py @@ -29,8 +29,10 @@ def convert(line): continue if word in ['\\v', '\\c']: skip = 1 - elif word == '\\p': + elif word in ['\\p','\\m']: out += '\n' + elif word in ['\\q']: + out += '\n> ' elif word in ['\\wj','\\wj*']: continue else: -- cgit 1.4.1