diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-07-09 18:25:00 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-10-17 19:07:20 -0400 |
commit | 703ddafbb14127db4b7b52bfada3d3d96e22754d (patch) | |
tree | 6ea5c66293da1e8e9579325e42411df820ad10be /src/doc_reform/output/html.d | |
parent | 0.7.4 sqlite related, also some xml paths (diff) |
cosmetic
Diffstat (limited to 'src/doc_reform/output/html.d')
-rw-r--r-- | src/doc_reform/output/html.d | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doc_reform/output/html.d b/src/doc_reform/output/html.d index 396f4a0..820b9a7 100644 --- a/src/doc_reform/output/html.d +++ b/src/doc_reform/output/html.d @@ -532,7 +532,9 @@ template outputHTML() { if (exists(fn_src_in)) { fn_src_in.copy(fn_src_out); } else { - writeln("WARNING image not found: ", fn_src_in); + if (!(doc_matters.opt.action.quiet)) { + writeln("WARNING image not found: ", fn_src_in); + } } } } |