markdown-guide
markdown-guide copied to clipboard
Escaping other special characters like ```
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"?
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
```
~~~