From 09fe1b8bdaf8271ea200dd86742c3a6b4da4ad06 Mon Sep 17 00:00:00 2001 From: gardenapple Date: Sun, 11 Apr 2021 18:14:02 +0300 Subject: [PATCH] Limit --help to 100 cols instead of 120 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7258a3f..6086bd7 100755 --- a/index.js +++ b/index.js @@ -275,7 +275,7 @@ __` text-content Output the article's main content as plain text.\n` + __` html-content Output the article's main content as an HTML body.\n` + '\n' + __`Properties are printed line by line, in the order specified by the user. Only "text-content" and "html-content" is printed as multiple lines.\n`) - .wrap(Math.min(yargs.terminalWidth(), 120)) + .wrap(Math.min(yargs.terminalWidth(), 100)) .strict() .parse();