Browse Source

Fix english documentation format

Serj Kalichev 2 months ago
parent
commit
8d2cb1517b
1 changed files with 273 additions and 273 deletions
  1. 273 273
      docs/klish3.en.md

+ 273 - 273
docs/klish3.en.md

@@ -292,38 +292,38 @@ first parameter header, first parameter data, second parameter header
 parameter, data of the second parameter, etc. All fields in the headers are passed with
 parameter, data of the second parameter, etc. All fields in the headers are passed with
 using network (big-endian) byte order.
 using network (big-endian) byte order.
 
 
-KTP headline:
+KTP header:
-
+
-|Size, bytes|Field name |Field value|
+|Size, bytes |Field name                                   |Field value|
-|------------|---------------------------------|-------------|
+|------------|---------------------------------------------|-----------|
-|4 |Magic number |0x4b545020 |
+|4           |Magic number                                 |0x4b545020 |
-|1 | Protocol version (major) |0x01 |
+|1           |Protocol version (major)                     |0x01       |
-|1 | Protocol version (minor) |0x00 |
+|1           |Protocol version (minor)                     |0x00       |
-|2 | | Command code | |
+|2           |Command code                                 |           |
-|4 |4 | | | |
+|4           |Status                                       |           |
-|4 | Not used |
+|4           |Not used                                     |           |
-|4 |4 | Number of parameters | |
+|4           |Number of parameters                         |           |
-|4 |The length of the entire packet (with header)| |
+|4           |The length of the entire packet (with header)|           |
-
+
-Team Codes:
+Command codes:
-
+
-| Code| Name | Direction| Description |
+|Code|Name          |Direction|Description                                  |
-|---|--------------|-----------|-----------------------------------------------|
+|----|--------------|---------|---------------------------------------------|
-|'i'|STDIN |-> |stdin user input (PARAM_LINE) |
+|'i' |STDIN         |->       |stdin user input (PARAM_LINE)                |
-|'o'|STDOUT |<- |stdout command output (PARAM_LINE) |
+|'o' |STDOUT        |<-       |stdout command output (PARAM_LINE)           |
-|'e'|STDERR |<- |stderr command output (PARAM_LINE) |
+|'e' |STDERR        |<-       |stderr command output (PARAM_LINE)           |
-|'c'|CMD |-> | Execute command (PARAM_LINE) |
+|'c' |CMD           |->       |Execute command (PARAM_LINE)                 |
-|'C'|CMD_ACK |<- | The result of the command |
+|'C' |CMD_ACK       |<-       |The result of the command                    |
-|'v'|COMPLETION |-> | Request for autocompletion (PARAM_LINE) |
+|'v' |COMPLETION    |->       |Request for autocompletion (PARAM_LINE)      |
-|'V'|COMPLETION_ACK|<- |Possible additions (PARAM_PREFIX, PARAM_LINE)|
+|'V' |COMPLETION_ACK|<-       |Possible additions (PARAM_PREFIX, PARAM_LINE)|
-|'h'|HELP |-> | Prompt (PARAM_LINE) |
+|'h' |HELP          |->       |Prompt (PARAM_LINE)                          |
-|'H'|HELP_ACK |<- | Hint (PARAM_PREFIX, PARAM_LINE) |
+|'H' |HELP_ACK      |<-       |Hint (PARAM_PREFIX, PARAM_LINE)              |
-|'n'|NOTIFICATION |<-> |Asynchronous message (PARAM_LINE) |
+|'n' |NOTIFICATION  |<->      |Asynchronous message (PARAM_LINE)            |
-|'a'|AUTH |-> | | Authentication Request |
+|'a' |AUTH          |->       |Authentication Request                       |
-|'A'|AUTH_ACK |<- |AUTH_ACK |<- |Authentication Confirmation |
+|'A' |AUTH_ACK      |<-       |Authentication Confirmation                  |
-|'I'|STDIN_CLOSE |-> |stdin was closed |
+|'I' |STDIN_CLOSE   |->       |stdin was closed                             |
-|'O'|STDOUT_CLOSE |-> |stdout was closed |
+|'O' |STDOUT_CLOSE  |->       |stdout was closed                            |
-|'E'|STDERR_CLOSE |-> |stderr was closed |
+|'E' |STDERR_CLOSE  |->       |stderr was closed                            |
 
 
 The "Direction" column shows in which direction the command is transmitted. Arrow
 The "Direction" column shows in which direction the command is transmitted. Arrow
 right arrow means transfer from client to server, left arrow means transfer from server
 right arrow means transfer from client to server, left arrow means transfer from server
@@ -333,37 +333,37 @@ data is being transmitted.
 The status field in the KTP header is a 32-bit field. Bit values
 The status field in the KTP header is a 32-bit field. Bit values
 status fields:
 status fields:
 
 
-|Bit Mask|Bit Name |Value |
+|Bit Mask  |Bit Name          |Value                                        |
-|----------|------------------|-----------------------------------------------|
+|----------|------------------|---------------------------------------------|
-|0x00000001|STATUS_ERROR | Error |
+|0x00000001|STATUS_ERROR      |Error                                        |
-|0x00000002|STATUS_INCOMPLETED|Command execution not completed |
+|0x00000002|STATUS_INCOMPLETED|Command execution not completed              |
-|0x00000100|STATUS_TTY_STDIN |stdin client is terminal |
+|0x00000100|STATUS_TTY_STDIN  |stdin client is terminal                     |
-|0x00000200|STATUS_TTY_STDOUT |stdout client is terminal |
+|0x00000200|STATUS_TTY_STDOUT |stdout client is terminal                    |
-|0x00000400|STATUS_TTY_STDERR |stderr client is a terminal |
+|0x00000400|STATUS_TTY_STDERR |stderr client is a terminal                  |
-|0x00001000|STATUS_NEED_STDIN |Command accepts user input |
+|0x00001000|STATUS_NEED_STDIN |Command accepts user input                   |
-|0x00002000|STATUS_INTERACTIVE|The output of the command is for the terminal |
+|0x00002000|STATUS_INTERACTIVE|The output of the command is for the terminal|
-|0x00010000|STATUS_DRY_RUN | Idle start. The command does not need to be executed|
+|0x00010000|STATUS_DRY_RUN    |Idle start. Don't execute the command        |
-|0x80000000|STATUS_EXIT | Ending session |
+|0x80000000|STATUS_EXIT       |Ending session                               |
-
+
-Parameter Title:
+Parameter header:
-
+
-|Size, bytes|Field name |
+|Size, bytes|Field name                            |
-|------------|--------------------------------------|
+|-----------|--------------------------------------|
-|2 |2 | Parameter type |
+|2          |Parameter type                        |
-|2 | Not used |
+|2          |Not used                              |
-|1 |Parameter data length (without header)|
+|1          |Parameter data length (without header)|
-
+
-Parameter Types:
+Parameter types:
-
+
-| Code| Name | Direction| Description |
+|Code|Name         |Direction|Description                               |
-|---|-------------|-----------|---------------------------------------------|
+|----|-------------|---------|------------------------------------------|
-|'L'|PARAM_LINE |<-> | String. Multifunctional |
+|'L' |PARAM_LINE   |<->      |String. Multifunctional                   |
-|'P'|PARAM_PREFIX |<- |String. For autocomplete and hint |
+|'P' |PARAM_PREFIX |<-       |String. For autocomplete and hint         |
-|'$'|PARAM_PROMPT |<- |String. User prompt |
+|'$' |PARAM_PROMPT |<-       |String. User prompt                       |
-|'H'|PARAM_HOTKEY |<- | Function key and its meaning |
+|'H' |PARAM_HOTKEY |<-       |Function key and its meaning              |
-|'W'|PARAM_WINCH |-> | The size of the user window. When changing|
+|'W' |PARAM_WINCH  |->       |The size of the user window. When changing|
-|'E'|PARAM_ERROR |<- |String. Error message |
+|'E' |PARAM_ERROR  |<-       |String. Error message                     |
-|'R'|PARAM_RETCODE|<- | Return code of the executed command |
+|'R' |PARAM_RETCODE|<-       |Return code of the executed command       |
 
 
 From the server to the client, along with the command and the parameters corresponding to the command,
 From the server to the client, along with the command and the parameters corresponding to the command,
 can be passed additional parameters. For example, with the CMD_ACK command,
 can be passed additional parameters. For example, with the CMD_ACK command,
@@ -584,29 +584,29 @@ also starts with the `/` character, indicating the root element.
 > Relative paths are not supported at this time
 > Relative paths are not supported at this time
 
 
 ```
 ```
-<KLISH>.
+<KLISH>
 
 
 <PTYPE name="PTYPE1">
 <PTYPE name="PTYPE1">
-<ACTION sym="sym1"\>
+    <ACTION sym="sym1"\>
-</PTYPE>.
+</PTYPE>
 
 
 <VIEW name="view1">
 <VIEW name="view1">
 
 
-<VIEW name="view1_2">
+    <VIEW name="view1_2">
-<COMMAND name="cmd1">
+        <COMMAND name="cmd1">
-<PARAM name="par1" ptype="/PTYPE1"/>
+            <PARAM name="par1" ptype="/PTYPE1"/>
-</COMMAND>.
+        </COMMAND>
-</VIEW>.
+    </VIEW>
 
 
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view2">
 <VIEW name="view2">
 
 
-<VIEW ref="/view1/view1_2"/>
+    <VIEW ref="/view1/view1_2"/>
 
 
-</VIEW>.
+</VIEW>
 
 
-</KLISH>.
+</KLISH>
 ```
 ```
 
 
 The "par1" parameter references `PTYPE` using the path `/PTYPE1`. Type names
 The "par1" parameter references `PTYPE` using the path `/PTYPE1`. Type names
@@ -657,15 +657,15 @@ Any klish configuration XML file must begin with an opening `KLISH` tag
 and end with a closing tag `KLISH`.
 and end with a closing tag `KLISH`.
 
 
 ```
 ```
-<?xml version="1.0" encoding="UTF-8"?
+<?xml version="1.0" encoding="UTF-8"?>
 <KLISH
 <KLISH
-xmlns="https://klish.libcode.org/klish3"
+    xmlns="https://klish.libcode.org/klish3"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xsi:schemaLocation="https://src.libcode.org/pkun/klish/src/master/klish.xsd">
+    xsi:schemaLocation="https://src.libcode.org/pkun/klish/src/master/klish.xsd">
 
 
 <!-- There's any configuration for klish -->
 <!-- There's any configuration for klish -->
 
 
-</KLISH>.
+</KLISH>
 ```
 ```
 
 
 The header introduces its default XML namespace
 The header introduces its default XML namespace
@@ -756,11 +756,11 @@ settings for the plug-in can be specified as data.
 
 
 ```
 ```
 <PLUGIN name="sysrepo">
 <PLUGIN name="sysrepo">
-JuniperLikeShow = y
+    JuniperLikeShow = y
-FirstKeyWithStatement = n
+    FirstKeyWithStatement = n
-MultiKeysWithStatement = y
+    MultiKeysWithStatement = y
-Colorize = y
+    Colorize = y
-</PLUGIN>.
+</PLUGIN>
 ```
 ```
 
 
 
 
@@ -796,8 +796,8 @@ any other command manually entered by the operator.
 
 
 ```
 ```
 <COMMAND name="exit" help="Exit view or shell">
 <COMMAND name="exit" help="Exit view or shell">
-<ACTION sym="nav">pop</ACTION>
+    <ACTION sym="nav">pop</ACTION>
-</COMMAND>.
+</COMMAND>
 
 
 <HOTKEY key="^Z" cmd="exit"\>
 <HOTKEY key="^Z" cmd="exit"\>
 ```
 ```
@@ -839,17 +839,17 @@ Only one block of actions is always performed.
 
 
 ```
 ```
 <COMMAND name="cmd1">
 <COMMAND name="cmd1">
-<ACTION sym="sym1"\>
+    <ACTION sym="sym1"\>
-<SWITCH min="0">
+    <SWITCH min="0">
-<COMMAND name="opt1">
+        <COMMAND name="opt1">
-<ACTION sym="sym2"\>
+            <ACTION sym="sym2"\>
-</COMMAND>.
+        </COMMAND>
-<COMMAND name="opt2"\>
+       <COMMAND name="opt2"\>
-<PARAM name="opt3" ptype="/STRING">
+       <PARAM name="opt3" ptype="/STRING">
-<ACTION sym="sym3"\>
+           <ACTION sym="sym3"\>
-</PARAM>
+       </PARAM>
-</SWITCH>.
+    </SWITCH>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 The example declares the command "cmd1", which has three alternatives (specified can be
 The example declares the command "cmd1", which has three alternatives (specified can be
@@ -1133,17 +1133,17 @@ he must fulfill.
 
 
 ```
 ```
 <COMMAND name="ls" help="List root dir">
 <COMMAND name="ls" help="List root dir">
-<ACTION sym="script">
+    <ACTION sym="script">
-ls /
+    ls /
-</ACTION>.
+    </ACTION>
-</COMMAND>.
+</COMMAND>
 
 
 <COMMAND name="pytest" help="Test for Python script">
 <COMMAND name="pytest" help="Test for Python script">
-<ACTION sym="script">#!/usr/bin/python
+    <ACTION sym="script">#!/usr/bin/python
-import os
+    import os
-print('ENV', os.getenv('KLISH_COMMAND')))
+    print('ENV', os.getenv('KLISH_COMMAND')))
-</ACTION>.
+    </ACTION>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 Note that the shebang `#!/usr/bin/python` is specified in the "pytest" command,
 Note that the shebang `#!/usr/bin/python` is specified in the "pytest" command,
@@ -1239,12 +1239,12 @@ The `HELP` element generates the hint text dynamically.
 <COMMAND name="simple" help="Command with static help"/>
 <COMMAND name="simple" help="Command with static help"/>
 
 
 <COMMAND name="dyn">
 <COMMAND name="dyn">
-<HELP>.
+    <HELP>
-<ACTION sym="script">
+        <ACTION sym="script">
-ls -la "/etc/passwd"
+        ls -la "/etc/passwd"
-</ACTION>.
+        </ACTION>
-<HELP>.
+     <HELP>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 If both the `help` attribute and the nested element are specified for an element at the same time
 If both the `help` attribute and the nested element are specified for an element at the same time
@@ -1311,9 +1311,9 @@ The following are examples of branching within a command:
 ```
 ```
 <!-- Example 1 -->
 <!-- Example 1 -->
 <COMMAND name="cmd1">
 <COMMAND name="cmd1">
-<PARAM name="param1" ptype="/INT"/>
+    <PARAM name="param1" ptype="/INT"/>
-<PARAM name="param2" ptype="/STRING"/>
+    <PARAM name="param2" ptype="/STRING"/>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 The command defaults to `mod="sequence"`, so the operator would have to enter
 The command defaults to `mod="sequence"`, so the operator would have to enter
@@ -1322,9 +1322,9 @@ both parameters, one after the other.
 ```
 ```
 <!-- Example 2 -->
 <!-- Example 2 -->
 <COMMAND name="cmd2" mode="switch">
 <COMMAND name="cmd2" mode="switch">
-<PARAM name="param1" ptype="/INT"/>
+    <PARAM name="param1" ptype="/INT"/>
-<PARAM name="param2" ptype="/STRING"/>
+    <PARAM name="param2" ptype="/STRING"/>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 The value of the `mode` attribute is overridden, so the operator would have to enter
 The value of the `mode` attribute is overridden, so the operator would have to enter
@@ -1339,11 +1339,11 @@ parameters are important.
 ```
 ```
 <!-- Example 3 -->
 <!-- Example 3 -->
 <COMMAND name="cmd3">
 <COMMAND name="cmd3">
-<SWITCH>.
+    <SWITCH>
-<PARAM name="param1" ptype="/INT"/>
+        <PARAM name="param1" ptype="/INT"/>
-<PARAM name="param2" ptype="/STRING"/>
+        <PARAM name="param2" ptype="/STRING"/>
-</SWITCH>.
+    </SWITCH>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 This example is identical to example "2". Only instead of the `mode` attribute the following is used
 This example is identical to example "2". Only instead of the `mode` attribute the following is used
@@ -1352,15 +1352,15 @@ nested tag `SWITCH`. The entry in example "2" is shorter, in example "3" it is c
 ```
 ```
 <!-- Example 4 -->
 <!-- Example 4 -->
 <COMMAND name="cmd4">
 <COMMAND name="cmd4">
-<SWITCH>.
+    <SWITCH>
-<PARAM name="param1" ptype="/INT">
+        <PARAM name="param1" ptype="/INT">
-<PARAM name="param3" ptype="/STRING">
+            <PARAM name="param3" ptype="/STRING">
-<PARAM name="param4" ptype="/STRING">
+            <PARAM name="param4" ptype="/STRING">
-</PARAM>
+        </PARAM>
-<PARAM name="param2" ptype="/STRING"/>
+        <PARAM name="param2" ptype="/STRING"/>
-</SWITCH>.
+    </SWITCH>
-<PARAM name="param5" ptype="/STRING"/>
+    <PARAM name="param5" ptype="/STRING"/>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 This demonstrates how command line arguments are parsed. When selected
 This demonstrates how command line arguments are parsed. When selected
@@ -1374,16 +1374,16 @@ the process is complete.
 ```
 ```
 <!-- Example 5 -->
 <!-- Example 5 -->
 <COMMAND name="cmd5">
 <COMMAND name="cmd5">
-<SWITCH>.
+    <SWITCH>
-<SEQ>.
+        <SEQ>
-<PARAM name="param1" ptype="/INT">
+            <PARAM name="param1" ptype="/INT">
-<PARAM name="param3" ptype="/STRING">
+            <PARAM name="param3" ptype="/STRING">
-<PARAM name="param4" ptype="/STRING">
+            <PARAM name="param4" ptype="/STRING">
-</SEQ>.
+        </SEQ>
-<PARAM name="param2" ptype="/STRING"/>
+        <PARAM name="param2" ptype="/STRING"/>
-</SWITCH>.
+    </SWITCH>
-<PARAM name="param5" ptype="/STRING"/>
+    <PARAM name="param5" ptype="/STRING"/>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 The example is completely similar to the behavior of example "4". Only instead of nesting
 The example is completely similar to the behavior of example "4". Only instead of nesting
@@ -1394,12 +1394,12 @@ one after another.
 ```
 ```
 <!-- Example 6 -->
 <!-- Example 6 -->
 <COMMAND name="cmd6">
 <COMMAND name="cmd6">
-<COMMAND name="cmd6_1">
+    <COMMAND name="cmd6_1">
-<PARAM name="param3" ptype="/STRING">
+        <PARAM name="param3" ptype="/STRING">
-</COMMAND>.
+    </COMMAND>
-<PARAM name="param1" ptype="/INT"/>
+    <PARAM name="param1" ptype="/INT"/>
-<PARAM name="param2" ptype="/STRING"/>
+    <PARAM name="param2" ptype="/STRING"/>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 The example shows a nested "subcommand" named "cmd1_6". Here the subcommand
 The example shows a nested "subcommand" named "cmd1_6". Here the subcommand
@@ -1448,37 +1448,37 @@ If the element is a reference, the `ref` attribute is defined in the element. Th
 - reference to the target schema element.
 - reference to the target schema element.
 
 
 ```
 ```
-<KLISH>.
+<KLISH>
 
 
 <PTYPE name="ptype1">
 <PTYPE name="ptype1">
-<ACTION sym="INT"/>
+    <ACTION sym="INT"/>
-</PTYPE>.
+</PTYPE>
 
 
 <VIEW name="view1">
 <VIEW name="view1">
-<COMMAND name="cmd1"/>
+    <COMMAND name="cmd1"/>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view2">
 <VIEW name="view2">
-<VIEW ref="/view1"/>.
+    <VIEW ref="/view1"/>
-<COMMAND name="cmd2">
+    <COMMAND name="cmd2">
-<PARAM name="param1" ptype="/ptype1"/>
+        <PARAM name="param1" ptype="/ptype1"/>
-<PARAM name="param2">
+        <PARAM name="param2">
-<PTYPE ref="/ptype1"/>
+            <PTYPE ref="/ptype1"/>
-</PARAM>
+        </PARAM>
-</COMMAND>.
+    </COMMAND>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view3">
 <VIEW name="view3">
-<COMMAND ref="/view2/cmd2"/>
+    <COMMAND ref="/view2/cmd2"/>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view4">
 <VIEW name="view4">
-<COMMAND name="do">
+    <COMMAND name="do">
-<VIEW ref="/view1"/>.
+        <VIEW ref="/view1"/>
-</COMMAND>.
+    </COMMAND>
-</VIEW>.
+</VIEW>
 
 
-</KLISH>.
+</KLISH>
 ```
 ```
 
 
 In the example, "view2" contains a reference to "view1", which is equivalent to declaring a copy of the
 In the example, "view2" contains a reference to "view1", which is equivalent to declaring a copy of the
@@ -1631,25 +1631,25 @@ to add their contents to the place in the schema where the link is created.
 
 
 ```
 ```
 <VIEW name="view1">
 <VIEW name="view1">
-<COMMAND name="cmd1"/>
+    <COMMAND name="cmd1"/>
-<VIEW name="view1_2">
+    <VIEW name="view1_2">
-<COMMAND name="cmd2"/>
+        <COMMAND name="cmd2"/>
-</VIEW>.
+   </VIEW>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view2">
 <VIEW name="view2">
-<COMMAND name="cmd3"/>
+    <COMMAND name="cmd3"/>
-<VIEW ref="/view1"/>.
+    <VIEW ref="/view1"/>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view3">
 <VIEW name="view3">
-<COMMAND name="cmd4"/>
+    <COMMAND name="cmd4"/>
-<VIEW ref="/view1/view1_2"/>
+    <VIEW ref="/view1/view1_2"/>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view4">
 <VIEW name="view4">
-<COMMAND name="cmd5"/>
+    <COMMAND name="cmd5"/>
-</VIEW>.
+</VIEW>
 ```
 ```
 
 
 The example demonstrates how scopes work in relation to available scopes
 The example demonstrates how scopes work in relation to available scopes
@@ -1716,31 +1716,31 @@ level in the current session path.
 
 
 ```
 ```
 <PTYPE name="ptype1">
 <PTYPE name="ptype1">
-<ACTION sym="INT"/>
+    <ACTION sym="INT"/>
-</PTYPE>.
+</PTYPE>
 
 
 <VIEW name="view1">
 <VIEW name="view1">
 
 
-<COMMAND name="cmd1" help="First command">
+    <COMMAND name="cmd1" help="First command">
-<PARAM name="param1" ptype="/ptype1"/>
+        <PARAM name="param1" ptype="/ptype1"/>
-<ACTION sym="sym1"/>
+        <ACTION sym="sym1"/>
-</COMMAND>.
+    </COMMAND>
-
+
-<COMMAND name="cmd2">
+    <COMMAND name="cmd2">
-<HELP>.
+        <HELP>
-<ACTION sym="script">
+            <ACTION sym="script">
-echo "Second command"
+            echo "Second command"
-</ACTION>.
+            </ACTION>
-</HELP>.
+        </HELP>
-<COMMAND name="cmd2_1" value="sub2" min="0" help="Subcommand">
+        <COMMAND name="cmd2_1" value="sub2" min="0" help="Subcommand">
-<PARAM name="param1" ptype="ptype1" help="Par 1"/>
+            <PARAM name="param1" ptype="ptype1" help="Par 1"/>
-</COMMAND>.
+        </COMMAND>
-<COMMAND ref="/view1/cmd1"/>
+        <COMMAND ref="/view1/cmd1"/>
-<PARAM name="param2" ptype="ptype1" help="Par 2"/>
+        <PARAM name="param2" ptype="ptype1" help="Par 2"/>
-<ACTION sym="sym2"/>
+        <ACTION sym="sym2"/>
-</COMMAND>.
+     </COMMAND>
-
+
-</VIEW>.
+</VIEW>
 ```
 ```
 
 
 The command "cmd1" is the simplest version of the command with a hint, one mandatory
 The command "cmd1" is the simplest version of the command with a hint, one mandatory
@@ -1803,33 +1803,33 @@ strings matched to the parameter.
 
 
 ```
 ```
 <PTYPE name="ptype1">
 <PTYPE name="ptype1">
-<ACTION sym="INT"/>
+    <ACTION sym="INT"/>
-</PTYPE>.
+</PTYPE>
 
 
 <VIEW name="view1">
 <VIEW name="view1">
 
 
-<COMMAND name="cmd1" help="First command">
+    <COMMAND name="cmd1" help="First command">
 
 
-<PARAM name="param1" ptype="/ptype1" help="Param 1"/>
+        <PARAM name="param1" ptype="/ptype1" help="Param 1"/>
 
 
-<PARAM name="param2" help="Param 2">
+        <PARAM name="param2" help="Param 2">
-<PTYPE ref="/ptype1"/>
+            <PTYPE ref="/ptype1"/>
-</PARAM>
+        </PARAM>
 
 
-<PARAM name="param3" help="Param 3">
+        <PARAM name="param3" help="Param 3">
-<PTYPE>.
+            <PTYPE>
-<ACTION sym="INT"/>
+                <ACTION sym="INT"/>
-</PTYPE>.
+            </PTYPE>
-</PARAM>
+        </PARAM>
 
 
-<PARAM name="param4" ptype="/ptype1" help="Param 4">
+        <PARAM name="param4" ptype="/ptype1" help="Param 4">
-<PARAM name="param5" ptype="/ptype1" help="Param 5"/>
+            <PARAM name="param5" ptype="/ptype1" help="Param 5"/>
-</PARAM>
+        </PARAM>
 
 
-<ACTION sym="sym1"/>
+        <ACTION sym="sym1"/>
-</COMMAND>.
+    </COMMAND>
 
 
-</VIEW>.
+</VIEW>
 ```
 ```
 
 
 Parameters "param1", "param2", "param3" are identical. In the first case the type is set
 Parameters "param1", "param2", "param3" are identical. In the first case the type is set
@@ -1870,12 +1870,12 @@ Normally, the `SWITCH` element is used without attributes.
 
 
 ```
 ```
 <COMMAND name="cmd1" help="First command">
 <COMMAND name="cmd1" help="First command">
-<SWITCH>.
+    <SWITCH>
-<COMMAND name="sub1"/>
+        <COMMAND name="sub1"/>
-<COMMAND name="sub2"/>
+        <COMMAND name="sub2"/>
-<COMMAND name="sub3"/>
+        <COMMAND name="sub3"/>
-</SWITCH>.
+     </SWITCH>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 By default, the `COMMAND` element has the `mode="sequence"` attribute. If the
 By default, the `COMMAND` element has the `mode="sequence"` attribute. If the
@@ -1911,18 +1911,18 @@ Normally, the `SEQ` element is used without attributes.
 
 
 ```
 ```
 <VIEW name="view1">
 <VIEW name="view1">
-<SEQ>.
+    <SEQ>
-<PARAM name="param1" ptype="/ptype1"/>
+        <PARAM name="param1" ptype="/ptype1"/>
-<PARAM name="param2" ptype="/ptype1"/>
+        <PARAM name="param2" ptype="/ptype1"/>
-<PARAM name="param3" ptype="/ptype1"/>
+        <PARAM name="param3" ptype="/ptype1"/>
-</SEQ>.
+    </SEQ>
-</VIEW>.
+</VIEW>
 
 
 <VIEW name="view2">
 <VIEW name="view2">
-<COMMAND name="cmd1" help="First command">
+    <COMMAND name="cmd1" help="First command">
-<VIEW ref="/view1">
+        <VIEW ref="/view1">
-</COMMAND>.
+    </COMMAND>
-</VIEW>.
+</VIEW>
 ```
 ```
 
 
 Suppose we have created an auxiliary `VIEW` containing a list of frequently
 Suppose we have created an auxiliary `VIEW` containing a list of frequently
@@ -1963,8 +1963,8 @@ of the declared data type.
 
 
 ```
 ```
 <PTYPE name="ptype1" help="Integer">
 <PTYPE name="ptype1" help="Integer">
-<ACTION sym="INT"/>
+    <ACTION sym="INT"/>
-</PTYPE>.
+</PTYPE>
 
 
 <PARAM name="param1" ptype="/ptype1" help="Param 1"/>
 <PARAM name="param1" ptype="/ptype1" help="Param 1"/>
 ```
 ```
@@ -2009,11 +2009,11 @@ Normally, `PROMPT` is used without attributes.
 ```
 ```
 <VIEW name="main">
 <VIEW name="main">
 
 
-<PROMPT>.
+    <PROMPT>
-<ACTION sym="prompt">%u@%h&gt; </ACTION>
+        <ACTION sym="prompt">%u@%h&gt; </ACTION>
-</PROMPT>.
+    </PROMPT>
 
 
-</VIEW>.
+</VIEW>
 ```
 ```
 
 
 In the example for `VIEW` named "main", which is the current path on the
 In the example for `VIEW` named "main", which is the current path on the
@@ -2049,9 +2049,9 @@ Normally, `HELP` is used without attributes.
 
 
 ```
 ```
 <PARAM name="param1" ptype="/ptype1">
 <PARAM name="param1" ptype="/ptype1">
-<HELP>.
+    <HELP>
-<ACTION sym="sym1"/>
+        <ACTION sym="sym1"/>
-</HELP>.
+    </HELP>
 </PARAM>
 </PARAM>
 ```
 ```
 
 
@@ -2081,11 +2081,11 @@ The klish client shows autocomplete options when the `Tab` key is pressed.
 
 
 ```
 ```
 <PARAM name="proto" ptype="/STRING" help="Protocol">
 <PARAM name="proto" ptype="/STRING" help="Protocol">
-<COMPL>.
+    <COMPL>
-<ACTION sym="printl">tcp</ACTION>
+        <ACTION sym="printl">tcp</ACTION>
-<ACTION sym="printl">udp</ACTION>
+        <ACTION sym="printl">udp</ACTION>
-<ACTION sym="printl">icmp</ACTION>
+        <ACTION sym="printl">icmp</ACTION>
-</COMPL>.
+    </COMPL>
 </PARAM>
 </PARAM>
 ```
 ```
 
 
@@ -2118,12 +2118,12 @@ The `COND` element is forcibly assigned the value of the attribute
 
 
 ```
 ```
 <COMMAND name="cmd1" help="Command 1">
 <COMMAND name="cmd1" help="Command 1">
-<COND>
+    <COND>
-<ACTION sym="script">
+        <ACTION sym="script">
-test -e /tmp/cond_file
+        test -e /tmp/cond_file
-</ACTION>.
+        </ACTION>
-</COND>.
+    </COND>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 If the `/tmp/cond_file` file exists, the "cmd1" command is available to the operator,
 If the `/tmp/cond_file` file exists, the "cmd1" command is available to the operator,
@@ -2254,7 +2254,7 @@ only the very last component of the path.
 <ACTION sym="nav">
 <ACTION sym="nav">
 pop
 pop
 push /view_name1
 push /view_name1
-</ACTION>.
+</ACTION>
 ```
 ```
 
 
 The example shows how you can repeat the `replace` subcommand using other
 The example shows how you can repeat the `replace` subcommand using other
@@ -2341,19 +2341,19 @@ Examples:
 
 
 ```
 ```
 <COMMAND name="ls" help="List path">
 <COMMAND name="ls" help="List path">
-<PARAM name="path" ptype="/STRING" help="Path"/>
+    <PARAM name="path" ptype="/STRING" help="Path"/>
-<ACTION sym="script">
+    <ACTION sym="script">
-echo "$KLISH_COMMAND"
+    echo "$KLISH_COMMAND"
-ls "$KLISH_PARAM_path"
+    ls "$KLISH_PARAM_path"
-</ACTION>.
+    </ACTION>
-</COMMAND>.
+</COMMAND>
 
 
 <COMMAND name="pytest" help="Test for Python script">
 <COMMAND name="pytest" help="Test for Python script">
-<ACTION sym="script">#!/usr/bin/python
+    <ACTION sym="script">#!/usr/bin/python
-import os
+    import os
-print('ENV', os.getenv('KLISH_COMMAND')))
+    print('ENV', os.getenv('KLISH_COMMAND')))
-</ACTION>.
+    </ACTION>
-</COMMAND>.
+</COMMAND>
 ```
 ```
 
 
 The "ls" command uses the shell interpreter and displays a list of files by
 The "ls" command uses the shell interpreter and displays a list of files by
@@ -2431,9 +2431,9 @@ functions.
 ```
 ```
 local pars = klish.pars()
 local pars = klish.pars()
 for k, v in ipairs(pars) do
 for k, v in ipairs(pars) do
-for i, p in ipairs(pars[v]) do
+  for i, p in ipairs(pars[v]) do
-print(string.format("%s[%d] = %s", v, i, p))
+    print(string.format("%s[%d] = %s", v, i, p))
-end
+  end
 end
 end
 ```
 ```