diff options
| author | Zach DeCook <zachdecook@librem.one> | 2026-06-03 06:43:09 -0400 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2026-06-03 06:43:09 -0400 |
| commit | 735d1f265e7788a02bff03b008943bb4ce15e025 (patch) | |
| tree | 8a136e4d9e298e543be60a5026914a75811db542 | |
| parent | f82b41b820f559890c7f5132e21e8d746a8d1b1d (diff) | |
| download | usfm2gmi-735d1f265e7788a02bff03b008943bb4ce15e025.tar.gz | |
handle fqa
| -rwxr-xr-x | usfm2gmi.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usfm2gmi.py b/usfm2gmi.py index ce283fe..32c5644 100755 --- a/usfm2gmi.py +++ b/usfm2gmi.py @@ -96,6 +96,8 @@ def convert(line, printStrongs=False): skip = 1 # the next character is the footnote caller elif word == '\\fr': skip = 1 # verse reference not necessary for inline fn + elif word == '\\fqa': + pass # indicates that the following part of the footnote is an alternate translation elif word == '\\f*': out += ']' # Cross-references (https://ubsicap.github.io/usfm/notes_basic/xrefs.html) |
