diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-22 14:23:35 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-23 11:00:55 -0500 |
commit | 614e44ad155e693f82a8228897bba2f4869167dd (patch) | |
tree | 4ba674ba60fb3b00460c37bf7b3f30d3cc9da49d /src/doc_reform/meta/metadoc_curate_authors.d | |
parent | pod org file, minor (diff) |
rethink verbose & debug flags, introduce show
Diffstat (limited to 'src/doc_reform/meta/metadoc_curate_authors.d')
-rw-r--r-- | src/doc_reform/meta/metadoc_curate_authors.d | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/doc_reform/meta/metadoc_curate_authors.d b/src/doc_reform/meta/metadoc_curate_authors.d index f3c1138..16669b2 100644 --- a/src/doc_reform/meta/metadoc_curate_authors.d +++ b/src/doc_reform/meta/metadoc_curate_authors.d @@ -454,7 +454,7 @@ string theme_light_1 = format(q"┃ doc_curate.title, doc_curate.path_html_metadata, doc_curate.language, - (_opt_action.very_verbose) ? "\n " ~ doc_curate.path_abs_html_scroll : "", + (_opt_action.show_curate_authors) ? "\n " ~ doc_curate.path_abs_html_scroll : "", ); } foreach (k; _au.keys.sort) { @@ -489,9 +489,7 @@ string theme_light_1 = format(q"┃ } catch (ErrnoException ex) { // Handle error } - if (_opt_action.verbose - || _opt_action.very_verbose - ) { + if (_opt_action.show_curate_authors) { foreach(_adt; _author_date_title.sort) { writeln(_adt); } |