How to show triple backticks inside a code block in markdown discourse?

I’m trying to include code blocks within other code blocks in Markdown on Discourse, but when I use triple backticks inside another set of triple backticks, it creates two separate code blocks instead of nesting them. How can I include triple backticks inside another set of triple backticks in a single code block in Discourse Markdown?

To use code blocks inside code blocks, you need more backticks for the outer code block than the inner one. For example, you can use four backticks for the outer code block to show triple backticks.

Here is an example:

````
```
Look! You can see backticks.
```
````

It will look like this.

```
Look! You can see backticks.
```