aboutsummaryrefslogtreecommitdiff
path: root/bible.cc
diff options
context:
space:
mode:
Diffstat (limited to 'bible.cc')
-rw-r--r--bible.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/bible.cc b/bible.cc
index d50d7e9..ef9c1e4 100644
--- a/bible.cc
+++ b/bible.cc
@@ -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) {