I can create a code block like this:
```bash
cd .. && ls
```
It will end up like this:
cd .. && ls
What if I wanted to put plain text before the code block? When showing shell commands, sometimes you need to run them as the root user and sometimes as the regular user. The "#" sign is used for root users and the "$" sign is used for regular users. I tried this:
```bash
$ cd .. && ls
```
But it did not work. This is a weird thing to do, but there is probably no direct solution, just a workaround will be fine.