about summary refs log tree commit diff
path: root/usfm2gmi.py
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2021-02-25 20:01:25 -0500
committerZach DeCook <zachdecook@librem.one>2021-02-25 20:01:25 -0500
commita1497baf3e3b68839246fc072f3bd13b3a9709fd (patch)
treef19a6c3c5a2ebda615e6b20c0a5f0c4b802c8d9b /usfm2gmi.py
parentbacccf1b3490e36b8792e74514ef8dea873ff799 (diff)
downloadusfm2gmi-a1497baf3e3b68839246fc072f3bd13b3a9709fd.tar.gz
d: render hebrew descriptive subtitle as h3
Diffstat (limited to 'usfm2gmi.py')
-rwxr-xr-xusfm2gmi.py2
1 files changed, 1 insertions, 1 deletions
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'