aboutsummaryrefslogtreecommitdiff
path: root/bible.cc
diff options
context:
space:
mode:
Diffstat (limited to 'bible.cc')
-rw-r--r--bible.cc16
1 files changed, 4 insertions, 12 deletions
diff --git a/bible.cc b/bible.cc
index ef9c1e4..943d6d0 100644
--- a/bible.cc
+++ b/bible.cc
@@ -244,9 +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;
+ bool isPreverse = false;
for(string modifier : tex.modifiers) {
if(modifier == "paragraph") {
isParagraph = true;
@@ -256,23 +256,15 @@ 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;
+ } else if (modifier == "preverse") {
+ isPreverse = 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) {
+ if(isPreverse or isTitle or isParallel) {
// Someday maybe we add this, but for now, omit
tex.text = "";
}