Escaping other special characters like ```
iamjonny opened this issue · 1 comments
iamjonny commented
I'm trying to wrap markdown in code
```[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"?
0xharshilshah commented
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
```
~~~
