diff options
Diffstat (limited to 'bible.cc')
-rw-r--r-- | bible.cc | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -244,6 +244,9 @@ int main(int argc, char* argv[]) { bool isIndent = false; bool isDivineName = false; bool isJesus = false; + bool isFootnote = false; + bool isTitle = false; + bool isParallel = false; for(string modifier : tex.modifiers) { if(modifier == "paragraph") { isParagraph = true; @@ -253,8 +256,26 @@ int main(int argc, char* argv[]) { isDivineName = true; } else if (modifier == "wordsOfJesus") { isJesus = true; + } else if (modifier == "n") { + isFootnote = true; + } else if (modifier == "title") { + isTitle = true; + } else if (modifier == "parallel") { + isParallel = true; } } + if(isFootnote) { + // Someday maybe we add this, but for now, omit + tex.text = ""; + } + if(isTitle) { + // Someday maybe we add this, but for now, omit + tex.text = ""; + } + if(isParallel) { + // Someday maybe we add this, but for now, omit + tex.text = ""; + } if(isIndent) { isParagraph = false; if(isNewline) { |