summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenyon Ralph <kralph@codeaurora.org>2021-11-17 19:59:06 -0800
committerAdithya Chakilam <adithya.chakilam@linaro.org>2022-08-18 09:03:39 -0700
commitceeed2235daed984c291e799679d58cbe2fbabb6 (patch)
treec5d247d95b2217fa0cdb8aebbaf852d49c0ebbd4
parente650d00684c9c59a4a2522493908a3f1839b76b4 (diff)
docs/cmd-list: add languages to code blocks
-rw-r--r--src/main/resources/Documentation/cmd-list.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/resources/Documentation/cmd-list.md b/src/main/resources/Documentation/cmd-list.md
index e815e08..b0a8254 100644
--- a/src/main/resources/Documentation/cmd-list.md
+++ b/src/main/resources/Documentation/cmd-list.md
@@ -7,7 +7,7 @@ NAME
SYNOPSIS
--------
-```
+```console
ssh -p @SSH_PORT@ @SSH_HOST@ @PLUGIN@ list
[--remote <PATTERN>]
[--detail]
@@ -44,25 +44,25 @@ EXAMPLES
--------
List all destinations:
-```
+```console
$ ssh -p @SSH_PORT@ @SSH_HOST@ @PLUGIN@ list
```
List all destinations detail information:
-```
+```console
$ ssh -p @SSH_PORT@ @SSH_HOST@ @PLUGIN@ list --detail
```
List all destinations detail information in json format:
-```
+```console
$ ssh -p @SSH_PORT@ @SSH_HOST@ @PLUGIN@ list --detail --json
```
List destinations whose name contains mirror:
-```
+```console
$ ssh -p @SSH_PORT@ @SSH_HOST@ @PLUGIN@ list --remote mirror
$ ssh -p @SSH_PORT@ @SSH_HOST@ @PLUGIN@ list --remote ^.*mirror.*
```