markdown.bash icon indicating copy to clipboard operation
markdown.bash copied to clipboard

Multi-line code block enclosed in backticks doesn't work

Open adnan360 opened this issue 5 years ago • 0 comments

Just found this project. Thanks a lot for creating this.

I was trying to use code block with 3 backticks (``` ... ```) but it doesn't work.

Input:

```
echo "test code"
```

Output:

`<code></code>
echo "test code"
`<code></code>

Should output:

<code>
echo "test code"
</code>

adnan360 avatar Jan 02 '21 19:01 adnan360