From c605fd366143d8d342b868dadc1314f9e5d9ece5 Mon Sep 17 00:00:00 2001 From: Harishankar Date: Fri, 22 May 2020 21:01:28 +0530 Subject: [PATCH] Minor change - fixed program args string Fixed the program args string to include the -q option which was missed out earlier --- biawebstrings.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/biawebstrings.hpp b/biawebstrings.hpp index fb79a6a..cf9c879 100644 --- a/biawebstrings.hpp +++ b/biawebstrings.hpp @@ -8,13 +8,14 @@ namespace biaweb { const char* DATE_IN_FORMAT = "%Y-%m-%d %H:%M %Z"; const char* GENERATED_IN = "Generated in (s): "; const char* VISUALIZE_TREE = "Document tree: "; - const char* PROGRAM_ARGS = " -i -o -t "; + const char* PROGRAM_ARGS = " -i -o -t [-q]"; const char* OUTPUT_IN = "Output in: "; const char* PROGRAM_USAGE = "Usage: "; const char* PROGRAM_EXPLANATION = "Where \n \ -\t - source directory tree with markdown sources\n \ -\t - destination in which to create the HTML output\n \ -\t - directory containing the templates\n \ +\t-i - source directory tree with markdown sources\n \ +\t-o - destination in which to create the HTML output\n \ +\t-t - directory containing the templates\n \ +\t-q - quiet mode (don't display messages\n \ NOTE: directory argument need not terminate with the separator (/)"; // MAXIMUM SIZE OF RSS FEED -- 2.20.1