diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2025-09-24 23:55:49 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2025-09-25 11:58:17 -0400 | 
| commit | 710bb22a76d6dcd33395984726cf0cc08f894122 (patch) | |
| tree | c2d3969cf48a2facf55b4be5c7f1b5dffd27e088 /org/out_xmls.org | |
| parent | spine.d tidy (diff) | |
terminal output verbosity levels, minor rework
Diffstat (limited to 'org/out_xmls.org')
| -rw-r--r-- | org/out_xmls.org | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/org/out_xmls.org b/org/out_xmls.org index 311828b..0e6707e 100644 --- a/org/out_xmls.org +++ b/org/out_xmls.org @@ -725,7 +725,7 @@ string inline_links(O,M)(              );            }          } else { -          if (doc_matters.opt.action.vox_gt0) { +          if (doc_matters.opt.action.vox_gt_1) {              writeln(                "WARNING on internal document links, anchor to link <<"                 ~ m.captures["hash"] @@ -2026,7 +2026,7 @@ scroll_write_output(doc_out, doc.matters);    } catch (ErrnoException ex) {      // Handle error    } -  if (doc_matters.opt.action.vox_gt0) { +  if (doc_matters.opt.action.vox_gt_1) {      writeln(" ", pth_html.fn_scroll(doc_matters.src.filename));    }  } @@ -2362,7 +2362,7 @@ seg_write_output(doc_html, doc_html_endnotes, doc.matters);    } catch (ErrnoException ex) {      // handle error    } -  if (doc_matters.opt.action.vox_gt0) { +  if (doc_matters.opt.action.vox_gt_1) {      writeln(" ", pth_html.fn_seg(doc_matters.src.filename, "toc"));    }  } @@ -2422,7 +2422,7 @@ void css(M)(M doc_matters) {        if (exists(fn_src_in)) {          fn_src_in.copy(fn_src_out);        } else { -        if (doc_matters.opt.action.vox_gt0) { +        if (doc_matters.opt.action.vox_gt_1) {            writeln("WARNING image not found: ", fn_src_in);          }        } @@ -3271,7 +3271,7 @@ zip -0 file.epub mimetype && zip -r -9 file.epub META-INF OEBPS        foreach (image; doc_matters.srcs.image_list) {          { /+ debug +/            if (doc_matters.opt.action.debug_do_epub) { -            if (doc_matters.opt.action.vox_gt2) { +            if (doc_matters.opt.action.vox_gt_3) {                writeln(                  doc_matters.src.image_dir_path, "/", image, " -> ",                  pth_epub3.dbg_doc_oebps_image(doc_matters.src.filename), "/", image @@ -3318,7 +3318,7 @@ zip -0 file.epub mimetype && zip -r -9 file.epub META-INF OEBPS    } catch (ErrnoException ex) {      // Handle error    } -  if (doc_matters.opt.action.vox_gt0) { +  if (doc_matters.opt.action.vox_gt_1) {      writeln(" ", fn_epub);    }  #+END_SRC  | 
