From a1497baf3e3b68839246fc072f3bd13b3a9709fd Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 25 Feb 2021 20:01:25 -0500 Subject: d: render hebrew descriptive subtitle as h3 --- usfm2gmi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usfm2gmi.py') diff --git a/usfm2gmi.py b/usfm2gmi.py index ac19681..0d7d0e6 100755 --- a/usfm2gmi.py +++ b/usfm2gmi.py @@ -28,7 +28,7 @@ def convert(line): # TODO: parse as word for title tags in title line elif split[0] in ['\\mt2','\\s']: return '\n## ' + ' '.join(split[1:]) - elif split[0] in ['\\mt3']: + elif split[0] in ['\\mt3','\\d']: return '\n### ' + ' '.join(split[1:]) elif split[0] == '\\b': return '\n' -- cgit 1.4.1