mattcone/markdown-guide

Escaping other special characters like ```

iamjonny opened this issue · 1 comments

I'm trying to wrap markdown in code

image

```[tasklist]
### Tasks
- [ ] https://github.com/octo-org/octo-repo/issues/45
- [ ] Draft issue title

tried to escape the sequence

```[tasklist]
### Tasks
- [ ] https://github.com/octo-org/octo-repo/issues/45
- [ ] Draft issue title
\```

is it possible to wrap the code element "in a code element"?

You could wrap the whole code element in three tildes
(~~~) to include the bacticks in the output. Like this:

~~~
```[tasklist]
### Tasks
- [ ] https://github.com/octo-org/octo-repo/issues/45
- [ ] Draft issue title
 ```
~~~

Refer this