markdown-guide icon indicating copy to clipboard operation
markdown-guide copied to clipboard

Escaping other special characters like ```

Open iamjonny opened this issue 2 years ago • 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"?

iamjonny avatar Mar 01 '23 20:03 iamjonny

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

0xharshilshah avatar Mar 25 '23 08:03 0xharshilshah