aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_sqlite.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2018-11-07 11:47:37 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2019-04-10 15:14:15 -0400
commitaba135a5ce2c8a58551a478d064262bda19c9770 (patch)
treee90d87693f4af27bbf8fa95287d3792ddf9724a7 /org/output_sqlite.org
parent0.3.0 internal links, anchor tags & segment associations (diff)
0.3.1 internal links, anchor tags & segment associations, toc
Diffstat (limited to 'org/output_sqlite.org')
-rw-r--r--org/output_sqlite.org14
1 files changed, 9 insertions, 5 deletions
diff --git a/org/output_sqlite.org b/org/output_sqlite.org
index c1f5ecb..3e7938a 100644
--- a/org/output_sqlite.org
+++ b/org/output_sqlite.org
@@ -565,11 +565,15 @@ auto inline_links(M,O)(
);
}
} else {
- writeln(
- "WARNING on internal document links, anchor to link not found in document, "
- ~ "anchor: " ~ m.captures[3]
- ~ " document: " ~ doc_matters.src.filename
- );
+ if (!(doc_matters.opt.action.quiet)) {
+ writeln(
+ "WARNING on internal document links, anchor to link <<"
+ ~ m.captures[3]
+ ~ ">> not found in document, "
+ ~ "anchor: " ~ m.captures[3]
+ ~ " document: " ~ doc_matters.src.filename
+ );
+ }
}
}
} else {