docs: fix talosctl dashboard cli docs

Fixes the shortcuts for the dashboard command by encoding < and >

Signed-off-by: Oscar Utbult <oscar.utbult@gmail.com>
Signed-off-by: Noel Georgi <git@frezbo.dev>
This commit is contained in:
Oscar Utbult 2023-11-23 10:33:21 +01:00 committed by Noel Georgi
parent 70d53ee13c
commit fbcf4264ff
No known key found for this signature in database
GPG Key ID: 21A9F444075C9E36
2 changed files with 16 additions and 16 deletions

View File

@ -26,14 +26,14 @@ var dashboardCmd = &cobra.Command{
Keyboard shortcuts:
- h, <Left>: switch one node to the left
- l, <Right>: switch one node to the right
- j, <Down>: scroll logs/process list down
- k, <Up>: scroll logs/process list up
- <C-d>: scroll logs/process list half page down
- <C-u>: scroll logs/process list half page up
- <C-f>: scroll logs/process list one page down
- <C-b>: scroll logs/process list one page up
- h, &lt;Left&gt; - switch one node to the left
- l, &lt;Right&gt; - switch one node to the right
- j, &lt;Down&gt; - scroll logs/process list down
- k, &lt;Up&gt; - scroll logs/process list up
- &lt;C-d&gt; - scroll logs/process list half page down
- &lt;C-u&gt; - scroll logs/process list half page up
- &lt;C-f&gt; - scroll logs/process list one page down
- &lt;C-b&gt; - scroll logs/process list one page up
`,
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {

View File

@ -778,14 +778,14 @@ Provide a text-based UI to navigate node overview, logs and real-time metrics.
Keyboard shortcuts:
- h, <Left>: switch one node to the left
- l, <Right>: switch one node to the right
- j, <Down>: scroll logs/process list down
- k, <Up>: scroll logs/process list up
- <C-d>: scroll logs/process list half page down
- <C-u>: scroll logs/process list half page up
- <C-f>: scroll logs/process list one page down
- <C-b>: scroll logs/process list one page up
- h, &lt;Left&gt; - switch one node to the left
- l, &lt;Right&gt; - switch one node to the right
- j, &lt;Down&gt; - scroll logs/process list down
- k, &lt;Up&gt; - scroll logs/process list up
- &lt;C-d&gt; - scroll logs/process list half page down
- &lt;C-u&gt; - scroll logs/process list half page up
- &lt;C-f&gt; - scroll logs/process list one page down
- &lt;C-b&gt; - scroll logs/process list one page up
```