diff options
author | kotfu <kotfu@kotfu.net> | 2019-07-06 13:53:45 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2019-07-06 13:53:45 -0600 |
commit | 9fe8e36a1e26569bdb47b8c361d077675a876af9 (patch) | |
tree | 8e72372456ab4f50b61df443fdc1504afb6c1268 /docs/features/multiline_commands.rst | |
parent | 6a5b9f8e13c9aed75ea23a23bad8ea0c64e90ff7 (diff) | |
download | cmd2-git-9fe8e36a1e26569bdb47b8c361d077675a876af9.tar.gz |
Add doc8 documentation style checking
- add dev dependency
- add doc8 to tasks.py
- fix all doc8 errors
Diffstat (limited to 'docs/features/multiline_commands.rst')
-rw-r--r-- | docs/features/multiline_commands.rst | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/docs/features/multiline_commands.rst b/docs/features/multiline_commands.rst index 85a92bb2..d6502058 100644 --- a/docs/features/multiline_commands.rst +++ b/docs/features/multiline_commands.rst @@ -1,17 +1,12 @@ Multiline Commands ================== -Command input may span multiple lines for the -commands whose names are listed in the -``multiline_commands`` argument to ``cmd2.Cmd.__init__()``. These -commands will be executed only -after the user has entered a *terminator*. -By default, the command terminator is -``;``; specifying the ``terminators`` optional argument to ``cmd2.Cmd.__init__()`` allows different -terminators. A blank line -is *always* considered a command terminator -(cannot be overridden). +Command input may span multiple lines for the commands whose names are listed +in the ``multiline_commands`` argument to ``cmd2.Cmd.__init__()``. These +commands will be executed only after the user has entered a *terminator*. By +default, the command terminator is ``;``; specifying the ``terminators`` +optional argument to ``cmd2.Cmd.__init__()`` allows different terminators. A +blank line is *always* considered a command terminator (cannot be overridden). -In multiline commands, output redirection characters -like ``>`` and ``|`` are part of the command -arguments unless they appear after the terminator. +In multiline commands, output redirection characters like ``>`` and ``|`` are +part of the command arguments unless they appear after the terminator. |