Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: test rendering of console options on website #7268

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
97 changes: 97 additions & 0 deletions Documentation/testing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
---
title: Test Rendering
weight: 999999999
indent: true
---

## Test how some console line things get displayed on the website

We have lots of options for how to do this, and I think it makes sense to focus on what the rendered
output looks like.

### Option 1
```console
ceph config set
```
```
output
of
the
command
```

### Option 2
```console
ceph config set
```
> ```
> output
> of
> the
> command
> ```

### Option 3
> ```console
> ceph config set
> ```
> ```
> output
> of
> the
> command
> ```

### Option 4
`ceph config set`
```
output
of
the
command
```

### Option 5
`ceph config set`
> ```
> output
> of
> the
> command
> ```

### Option 6
> `ceph config set`
> ```
> output
> of
> the
> command
> ```

### Option 7
```console
$ ceph config set
output
of
the
command
```

### Option 8
```console
# ceph config set
output
of
the
command
```

### Option 9
```console
> ceph config set
output
of
the
command
```