summaryrefslogtreecommitdiff
path: root/docs/modules/cli
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2021-06-20 23:45:40 -0600
committerDan Allen <dan.j.allen@gmail.com>2021-06-21 00:29:59 -0600
commit8319e5dd397b8a3dc0b7d74b42f3d7a75c371415 (patch)
treeb5359947e54a9bd6b23614107a7c1e49d830ca4e /docs/modules/cli
parent5497605fb5c0e7129f3db0e7714eb762d469b573 (diff)
use the -e flag in place of the -s flag in the documentation (related to #1444) [skip ci]
Diffstat (limited to 'docs/modules/cli')
-rw-r--r--docs/modules/cli/pages/io-piping.adoc6
-rw-r--r--docs/modules/cli/pages/options.adoc2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/modules/cli/pages/io-piping.adoc b/docs/modules/cli/pages/io-piping.adoc
index 9b9eb5ce..ead1ff4d 100644
--- a/docs/modules/cli/pages/io-piping.adoc
+++ b/docs/modules/cli/pages/io-piping.adoc
@@ -36,10 +36,10 @@ Alternately, you can set an artificial document directory by passing an absolute
Try both approaches to determine which one suits your needs better.
When piping source from STDIN to STDOUT through the `asciidoctor` command, you often just want the converted body (i.e., embeddable HTML).
-To produce that variant, add the `-s` flag:
+To produce that variant, add the `-e` flag, short for `--embedded` (previously the `-s` flag):
- $ echo 'content' | asciidoctor -s -
+ $ echo 'content' | asciidoctor -e -
Or perhaps you want to include the doctitle as well:
- $ echo -e '= Document Title\n\ncontent' | asciidoctor -s -a showtitle -
+ $ echo -e '= Document Title\n\ncontent' | asciidoctor -e -a showtitle -
diff --git a/docs/modules/cli/pages/options.adoc b/docs/modules/cli/pages/options.adoc
index 02095759..6712b710 100644
--- a/docs/modules/cli/pages/options.adoc
+++ b/docs/modules/cli/pages/options.adoc
@@ -116,7 +116,7 @@ Matching templates found in subsequent directories override ones previously disc
Include backtrace information when reporting errors.
*-v, --verbose*::
- Verbosely print processing information to stderr, including debug-level log messages.
+ Sets log level to DEBUG so application messages logged at INFO or DEBUG level are printed to stderr.
*-w, --warnings*::
Turn on script warnings (applies to executed code).